mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 03:48:57 +00:00
Merge remote-tracking branch 'origin/asyncio' into asyncio
Conflicts: gns3server/modules/project.py tests/modules/test_project.py
This commit is contained in:
commit
b680138073
@ -65,6 +65,7 @@ class ProjectHandler:
|
|||||||
},
|
},
|
||||||
status_codes={
|
status_codes={
|
||||||
200: "The project has been updated",
|
200: "The project has been updated",
|
||||||
|
403: "You are not allowed to modify this property",
|
||||||
404: "The project doesn't exist"
|
404: "The project doesn't exist"
|
||||||
},
|
},
|
||||||
output=PROJECT_OBJECT_SCHEMA,
|
output=PROJECT_OBJECT_SCHEMA,
|
||||||
@ -74,6 +75,7 @@ class ProjectHandler:
|
|||||||
pm = ProjectManager.instance()
|
pm = ProjectManager.instance()
|
||||||
project = pm.get_project(request.match_info["project_id"])
|
project = pm.get_project(request.match_info["project_id"])
|
||||||
project.temporary = request.json.get("temporary", project.temporary)
|
project.temporary = request.json.get("temporary", project.temporary)
|
||||||
|
project.path = request.json.get("path", project.path)
|
||||||
response.json(project)
|
response.json(project)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
@ -50,24 +50,26 @@ class Project:
|
|||||||
raise aiohttp.web.HTTPBadRequest(text="{} is not a valid UUID".format(project_id))
|
raise aiohttp.web.HTTPBadRequest(text="{} is not a valid UUID".format(project_id))
|
||||||
self._id = project_id
|
self._id = project_id
|
||||||
|
|
||||||
config = Config.instance().get_section_config("Server")
|
self._location = None
|
||||||
self._location = location
|
|
||||||
if location is None:
|
if location is None:
|
||||||
self._location = config.get("project_directory", self._get_default_project_directory())
|
self._location = self._config().get("project_directory", self._get_default_project_directory())
|
||||||
else:
|
else:
|
||||||
if config.get("local", False) is False:
|
self.location = location
|
||||||
raise aiohttp.web.HTTPForbidden(text="You are not allowed to modifiy the project directory location")
|
|
||||||
|
|
||||||
self._vms = set()
|
self._vms = set()
|
||||||
self._vms_to_destroy = set()
|
self._vms_to_destroy = set()
|
||||||
self._path = os.path.join(self._location, self._id)
|
self._path = os.path.join(self._location, self._id)
|
||||||
try:
|
try:
|
||||||
os.makedirs(os.path.join(self._path, "vms"), exist_ok=True)
|
os.makedirs(self._path, exist_ok=True)
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
raise aiohttp.web.HTTPInternalServerError(text="Could not create project directory: {}".format(e))
|
raise aiohttp.web.HTTPInternalServerError(text="Could not create project directory: {}".format(e))
|
||||||
self.temporary = temporary
|
self.temporary = temporary
|
||||||
log.debug("Create project {id} in directory {path}".format(path=self._path, id=self._id))
|
log.debug("Create project {id} in directory {path}".format(path=self._path, id=self._id))
|
||||||
|
|
||||||
|
def _config(self):
|
||||||
|
|
||||||
|
return Config.instance().get_section_config("Server")
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _get_default_project_directory(cls):
|
def _get_default_project_directory(cls):
|
||||||
"""
|
"""
|
||||||
@ -92,11 +94,27 @@ class Project:
|
|||||||
|
|
||||||
return self._location
|
return self._location
|
||||||
|
|
||||||
|
@location.setter
|
||||||
|
def location(self, location):
|
||||||
|
|
||||||
|
if location != self._location and self._config().get("local", False) is False:
|
||||||
|
raise aiohttp.web.HTTPForbidden(text="You are not allowed to modifiy the project directory location")
|
||||||
|
|
||||||
|
self._location = location
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def path(self):
|
def path(self):
|
||||||
|
|
||||||
return self._path
|
return self._path
|
||||||
|
|
||||||
|
@path.setter
|
||||||
|
def path(self, path):
|
||||||
|
|
||||||
|
if path != self._path and self._config().get("local", False) is False:
|
||||||
|
raise aiohttp.web.HTTPForbidden(text="You are not allowed to modifiy the project directory location")
|
||||||
|
|
||||||
|
self._path = path
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def vms(self):
|
def vms(self):
|
||||||
|
|
||||||
@ -168,7 +186,8 @@ class Project:
|
|||||||
return {
|
return {
|
||||||
"project_id": self._id,
|
"project_id": self._id,
|
||||||
"location": self._location,
|
"location": self._location,
|
||||||
"temporary": self._temporary
|
"temporary": self._temporary,
|
||||||
|
"path": self._path,
|
||||||
}
|
}
|
||||||
|
|
||||||
def add_vm(self, vm):
|
def add_vm(self, vm):
|
||||||
|
@ -50,6 +50,10 @@ PROJECT_UPDATE_SCHEMA = {
|
|||||||
"description": "If project is a temporary project",
|
"description": "If project is a temporary project",
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
"path": {
|
||||||
|
"description": "Path of the project on the server (work only with --local)",
|
||||||
|
"type": ["string", "null"]
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"additionalProperties": False,
|
"additionalProperties": False,
|
||||||
}
|
}
|
||||||
@ -64,6 +68,11 @@ PROJECT_OBJECT_SCHEMA = {
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"minLength": 1
|
"minLength": 1
|
||||||
},
|
},
|
||||||
|
"path": {
|
||||||
|
"description": "Directory of the project on the server",
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
"project_id": {
|
"project_id": {
|
||||||
"description": "Project UUID",
|
"description": "Project UUID",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -60,6 +60,7 @@ def test_show_project(server):
|
|||||||
response = server.post("/projects", query)
|
response = server.post("/projects", query)
|
||||||
assert response.status == 200
|
assert response.status == 200
|
||||||
response = server.get("/projects/00010203-0405-0607-0809-0a0b0c0d0e0f", example=True)
|
response = server.get("/projects/00010203-0405-0607-0809-0a0b0c0d0e0f", example=True)
|
||||||
|
query["path"] = "/tmp/00010203-0405-0607-0809-0a0b0c0d0e0f"
|
||||||
assert response.json == query
|
assert response.json == query
|
||||||
|
|
||||||
|
|
||||||
@ -78,6 +79,27 @@ def test_update_temporary_project(server):
|
|||||||
assert response.json["temporary"] is False
|
assert response.json["temporary"] is False
|
||||||
|
|
||||||
|
|
||||||
|
def test_update_path_project(server, tmpdir):
|
||||||
|
|
||||||
|
with patch("gns3server.config.Config.get_section_config", return_value={"local": True}):
|
||||||
|
response = server.post("/projects", {})
|
||||||
|
assert response.status == 200
|
||||||
|
query = {"path": str(tmpdir)}
|
||||||
|
response = server.put("/projects/{project_id}".format(project_id=response.json["project_id"]), query, example=True)
|
||||||
|
assert response.status == 200
|
||||||
|
assert response.json["path"] == str(tmpdir)
|
||||||
|
|
||||||
|
|
||||||
|
def test_update_path_project_non_local(server, tmpdir):
|
||||||
|
|
||||||
|
with patch("gns3server.config.Config.get_section_config", return_value={"local": False}):
|
||||||
|
response = server.post("/projects", {})
|
||||||
|
assert response.status == 200
|
||||||
|
query = {"path": str(tmpdir)}
|
||||||
|
response = server.put("/projects/{project_id}".format(project_id=response.json["project_id"]), query, example=True)
|
||||||
|
assert response.status == 403
|
||||||
|
|
||||||
|
|
||||||
def test_commit_project(server, project):
|
def test_commit_project(server, project):
|
||||||
with asyncio_patch("gns3server.modules.project.Project.commit", return_value=True) as mock:
|
with asyncio_patch("gns3server.modules.project.Project.commit", return_value=True) as mock:
|
||||||
response = server.post("/projects/{project_id}/commit".format(project_id=project.id), example=True)
|
response = server.post("/projects/{project_id}/commit".format(project_id=project.id), example=True)
|
||||||
|
@ -53,7 +53,6 @@ def test_path(tmpdir):
|
|||||||
p = Project(location=str(tmpdir))
|
p = Project(location=str(tmpdir))
|
||||||
assert p.path == os.path.join(str(tmpdir), p.id)
|
assert p.path == os.path.join(str(tmpdir), p.id)
|
||||||
assert os.path.exists(os.path.join(str(tmpdir), p.id))
|
assert os.path.exists(os.path.join(str(tmpdir), p.id))
|
||||||
assert os.path.exists(os.path.join(str(tmpdir), p.id, 'vms'))
|
|
||||||
assert not os.path.exists(os.path.join(p.path, '.gns3_temporary'))
|
assert not os.path.exists(os.path.join(p.path, '.gns3_temporary'))
|
||||||
|
|
||||||
|
|
||||||
@ -77,9 +76,16 @@ def test_changing_location_not_allowed(tmpdir):
|
|||||||
p = Project(location=str(tmpdir))
|
p = Project(location=str(tmpdir))
|
||||||
|
|
||||||
|
|
||||||
|
def test_changing_path_not_allowed(tmpdir):
|
||||||
|
with patch("gns3server.config.Config.get_section_config", return_value={"local": False}):
|
||||||
|
with pytest.raises(aiohttp.web.HTTPForbidden):
|
||||||
|
p = Project()
|
||||||
|
p.path = str(tmpdir)
|
||||||
|
|
||||||
|
|
||||||
def test_json(tmpdir):
|
def test_json(tmpdir):
|
||||||
p = Project()
|
p = Project()
|
||||||
assert p.__json__() == {"location": p.location, "project_id": p.id, "temporary": False}
|
assert p.__json__() == {"location": p.location, "path": p.path, "project_id": p.id, "temporary": False}
|
||||||
|
|
||||||
|
|
||||||
def test_vm_working_directory(tmpdir, vm):
|
def test_vm_working_directory(tmpdir, vm):
|
||||||
|
Loading…
Reference in New Issue
Block a user