1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-15 12:59:06 +00:00

In the export rename the .gns3 to project.gns3

This commit is contained in:
Julien Duponchelle 2016-03-30 17:56:55 +02:00
parent bd71f0cf4c
commit 3b04f556b3
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D
2 changed files with 12 additions and 1 deletions

View File

@ -534,5 +534,9 @@ class Project:
for file in files:
path = os.path.join(root, file)
z.write(path, os.path.relpath(path, self._path))
# We rename the .gns3 project.gns3 to avoid the task to the client to guess the file name
if file.endswith(".gns3"):
z.write(path, "project.gns3")
else:
z.write(path, os.path.relpath(path, self._path))
return z

View File

@ -265,6 +265,11 @@ def test_export(tmpdir):
project = Project()
path = project.path
os.makedirs(os.path.join(path, "vm-1", "dynamips"))
# The .gns3 should be renamed project.gns3 in order to simplify import
with open(os.path.join(path, "test.gns3"), 'w+') as f:
f.write("{}")
with open(os.path.join(path, "vm-1", "dynamips", "test"), 'w+') as f:
f.write("HELLO")
with open(os.path.join(path, "vm-1", "dynamips", "test_log.txt"), 'w+') as f:
@ -284,5 +289,7 @@ def test_export(tmpdir):
content = myfile.read()
assert content == b"HELLO"
assert 'test.gns3' not in myzip.namelist()
assert 'project.gns3' in myzip.namelist()
assert 'project-files/snapshots/test' not in myzip.namelist()
assert 'vm-1/dynamips/test_log.txt' not in myzip.namelist()