1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

"Local" command line parameter is only for stopping

a server that has been started by the desktop GUI
This commit is contained in:
grossmj 2022-03-30 18:38:34 +08:00
parent 8975f63e2f
commit 900d4f79ee
18 changed files with 138 additions and 186 deletions

View File

@ -25,7 +25,7 @@ import psutil
from gns3server.config import Config from gns3server.config import Config
from gns3server.utils.cpu_percent import CpuPercent from gns3server.utils.cpu_percent import CpuPercent
from gns3server.version import __version__ from gns3server.version import __version__
from gns3server.utils.path import get_default_project_directory from gns3server.utils.path import get_default_project_directory, is_safe_path
from gns3server.compute.port_manager import PortManager from gns3server.compute.port_manager import PortManager
from gns3server.compute.project_manager import ProjectManager from gns3server.compute.project_manager import ProjectManager
from gns3server.utils.interfaces import interfaces from gns3server.utils.interfaces import interfaces
@ -81,8 +81,7 @@ def compute_version() -> dict:
Retrieve the server version number. Retrieve the server version number.
""" """
local_server = Config.instance().settings.Server.local return {"version": __version__}
return {"version": __version__, "local": local_server}
@router.get("/statistics") @router.get("/statistics")
@ -155,12 +154,17 @@ async def create_qemu_image(image_data: schemas.QemuImageCreate) -> Response:
Create a Qemu image. Create a Qemu image.
""" """
if os.path.isabs(image_data.path): #FIXME: move to controller
if Config.instance().settings.Server.local is False: raise NotImplementedError()
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
# Raise error if user try to escape
#if not is_safe_path(image_data.path, project.path):
# raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
await Qemu.instance().create_disk( await Qemu.instance().create_disk(
image_data.qemu_img, image_data.path, jsonable_encoder(image_data, exclude_unset=True) image_data.qemu_img,
image_data.path,
jsonable_encoder(image_data, exclude_unset=True, exclude={"qemu_img", "path"})
) )
return Response(status_code=status.HTTP_204_NO_CONTENT) return Response(status_code=status.HTTP_204_NO_CONTENT)
@ -176,9 +180,12 @@ async def update_qemu_image(image_data: schemas.QemuImageUpdate) -> Response:
Update a Qemu image. Update a Qemu image.
""" """
if os.path.isabs(image_data.path): #FIXME: move to controller
if Config.instance().settings.Server.local is False: raise NotImplementedError()
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
# Raise error if user try to escape
#if not is_safe_path(image_data.path, project.path):
# raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
if image_data.extend: if image_data.extend:
await Qemu.instance().resize_disk(image_data.qemu_img, image_data.path, image_data.extend) await Qemu.instance().resize_disk(image_data.qemu_img, image_data.path, image_data.extend)

View File

@ -85,7 +85,6 @@ async def upload_image(
if os.path.commonprefix([base_images_directory, full_path]) != base_images_directory: if os.path.commonprefix([base_images_directory, full_path]) != base_images_directory:
raise ControllerForbiddenError(f"Cannot write image, '{image_path}' is forbidden") raise ControllerForbiddenError(f"Cannot write image, '{image_path}' is forbidden")
print(image_path)
if await images_repo.get_image(image_path): if await images_repo.get_image(image_path):
raise ControllerBadRequestError(f"Image '{image_path}' already exists") raise ControllerBadRequestError(f"Image '{image_path}' already exists")

View File

@ -342,10 +342,10 @@ async def import_project(
Import a project from a portable archive. Import a project from a portable archive.
""" """
controller = Controller.instance() #TODO: import project remotely
if Config.instance().settings.Server.local is False: raise NotImplementedError()
raise ControllerForbiddenError("The server is not local")
controller = Controller.instance()
# We write the content to a temporary location and after we extract it all. # We write the content to a temporary location and after we extract it all.
# It could be more optimal to stream this but it is not implemented in Python. # It could be more optimal to stream this but it is not implemented in Python.
try: try:
@ -385,16 +385,9 @@ async def duplicate_project(
Duplicate a project. Duplicate a project.
""" """
if project_data.path:
if Config.instance().settings.Server.local is False:
raise ControllerForbiddenError("The server is not a local server")
location = project_data.path
else:
location = None
reset_mac_addresses = project_data.reset_mac_addresses reset_mac_addresses = project_data.reset_mac_addresses
new_project = await project.duplicate( new_project = await project.duplicate(
name=project_data.name, location=location, reset_mac_addresses=reset_mac_addresses name=project_data.name, reset_mac_addresses=reset_mac_addresses
) )
await rbac_repo.add_permission_to_user_with_path(current_user.user_id, f"/projects/{new_project.id}/*") await rbac_repo.add_permission_to_user_with_path(current_user.user_id, f"/projects/{new_project.id}/*")
return new_project.asdict() return new_project.asdict()
@ -423,7 +416,7 @@ async def get_file(file_path: str, project: Project = Depends(dep_project)) -> F
@router.post("/{project_id}/files/{file_path:path}", status_code=status.HTTP_204_NO_CONTENT) @router.post("/{project_id}/files/{file_path:path}", status_code=status.HTTP_204_NO_CONTENT)
async def write_file(file_path: str, request: Request, project: Project = Depends(dep_project)) -> Response: async def write_file(file_path: str, request: Request, project: Project = Depends(dep_project)) -> Response:
""" """
Write a file from a project. Write a file to a project.
""" """
file_path = urllib.parse.unquote(file_path) file_path = urllib.parse.unquote(file_path)

View File

@ -85,10 +85,6 @@ class Project:
"variables": self._variables "variables": self._variables
} }
def is_local(self):
return Config.instance().settings.Server.local
@property @property
def id(self): def id(self):
@ -101,12 +97,12 @@ class Project:
@path.setter @path.setter
def path(self, path): def path(self, path):
check_path_allowed(path)
if hasattr(self, "_path"): if hasattr(self, "_path"):
if path != self._path and self.is_local() is False: if path != self._path:
raise ComputeForbiddenError("Changing the project directory path is not allowed") raise ComputeForbiddenError("Changing the project directory path is not allowed")
check_path_allowed(path)
self._path = path self._path = path
@property @property

View File

@ -267,6 +267,7 @@ class Qemu(BaseManager):
command.append(path) command.append(path)
command.append(f"{img_size}M") command.append(f"{img_size}M")
print(command)
process = await asyncio.create_subprocess_exec(*command) process = await asyncio.create_subprocess_exec(*command)
await process.wait() await process.wait()
except (OSError, subprocess.SubprocessError) as e: except (OSError, subprocess.SubprocessError) as e:

View File

@ -1038,7 +1038,7 @@ class Project:
while self._loading: while self._loading:
await asyncio.sleep(0.5) await asyncio.sleep(0.5)
async def duplicate(self, name=None, location=None, reset_mac_addresses=True): async def duplicate(self, name=None, reset_mac_addresses=True):
""" """
Duplicate a project Duplicate a project
@ -1047,7 +1047,6 @@ class Project:
It's a little slower but we have only one implementation to maintain. It's a little slower but we have only one implementation to maintain.
:param name: Name of the new project. A new one will be generated in case of conflicts :param name: Name of the new project. A new one will be generated in case of conflicts
:param location: Parent directory of the new project
:param reset_mac_addresses: Reset MAC addresses for the new project :param reset_mac_addresses: Reset MAC addresses for the new project
""" """
# If the project was not open we open it temporary # If the project was not open we open it temporary
@ -1062,10 +1061,7 @@ class Project:
# use the parent directory of the project we are duplicating as a # use the parent directory of the project we are duplicating as a
# temporary directory to avoid no space left issues when '/tmp' # temporary directory to avoid no space left issues when '/tmp'
# is location on another partition. # is located on another partition.
if location:
working_dir = os.path.abspath(os.path.join(location, os.pardir))
else:
working_dir = os.path.abspath(os.path.join(self.path, os.pardir)) working_dir = os.path.abspath(os.path.join(self.path, os.pardir))
with tempfile.TemporaryDirectory(dir=working_dir) as tmpdir: with tempfile.TemporaryDirectory(dir=working_dir) as tmpdir:
@ -1090,7 +1086,11 @@ class Project:
# import the temporary project # import the temporary project
with open(project_path, "rb") as f: with open(project_path, "rb") as f:
project = await import_project( project = await import_project(
self._controller, str(uuid.uuid4()), f, location=location, name=name, keep_compute_id=True self._controller,
str(uuid.uuid4()),
f,
name=name,
keep_compute_id=True
) )
log.info(f"Project '{project.name}' duplicated in {time.time() - begin:.4f} seconds") log.info(f"Project '{project.name}' duplicated in {time.time() - begin:.4f} seconds")

View File

@ -255,9 +255,6 @@ class Server:
self._set_config_defaults_from_command_line(args) self._set_config_defaults_from_command_line(args)
config = Config.instance().settings config = Config.instance().settings
if config.Server.local:
log.warning("Local mode is enabled. Beware, clients will have full control on your filesystem")
if not config.Server.compute_password.get_secret_value(): if not config.Server.compute_password.get_secret_value():
alphabet = string.ascii_letters + string.digits + string.punctuation alphabet = string.ascii_letters + string.digits + string.punctuation
generated_password = ''.join(secrets.choice(alphabet) for _ in range(16)) generated_password = ''.join(secrets.choice(alphabet) for _ in range(16))

View File

@ -60,8 +60,7 @@ def check_path_allowed(path: str):
if len(os.path.commonprefix([project_directory, path])) == len(project_directory): if len(os.path.commonprefix([project_directory, path])) == len(project_directory):
return return
if Config.instance().settings.Server.local is False: raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=f"The path {path} is not allowed")
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="The path is not allowed")
def get_mountpoint(path: str): def get_mountpoint(path: str):

View File

@ -45,7 +45,7 @@ async def test_version_output(app: FastAPI, compute_client: AsyncClient) -> None
response = await compute_client.get(app.url_path_for("compute:compute_version")) response = await compute_client.get(app.url_path_for("compute:compute_version"))
assert response.status_code == status.HTTP_200_OK assert response.status_code == status.HTTP_200_OK
assert response.json() == {'local': True, 'version': __version__} assert response.json() == {'version': __version__}
async def test_compute_authentication(app: FastAPI, compute_client: AsyncClient) -> None: async def test_compute_authentication(app: FastAPI, compute_client: AsyncClient) -> None:

View File

@ -36,35 +36,13 @@ def base_params(tmpdir) -> dict:
params = { params = {
"name": "test", "name": "test",
"path": str(tmpdir),
"project_id": str(uuid.uuid4()) "project_id": str(uuid.uuid4())
} }
return params return params
async def test_create_project_with_path(app: FastAPI, compute_client: AsyncClient, base_params: dict) -> None:
with patch("gns3server.compute.project.Project.is_local", return_value=True):
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params)
assert response.status_code == status.HTTP_201_CREATED
assert response.json()["project_id"] == base_params["project_id"]
async def test_create_project_with_path_and_empty_variables(app: FastAPI,
compute_client: AsyncClient,
base_params: dict) -> None:
base_params["variables"] = None
with patch("gns3server.compute.project.Project.is_local", return_value=True):
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params)
assert response.status_code == status.HTTP_201_CREATED
assert response.json()["project_id"] == base_params["project_id"]
async def test_create_project_without_dir(app: FastAPI, compute_client: AsyncClient, base_params: dict) -> None: async def test_create_project_without_dir(app: FastAPI, compute_client: AsyncClient, base_params: dict) -> None:
del base_params["path"]
response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params) response = await compute_client.post(app.url_path_for("compute:create_compute_project"), json=base_params)
assert response.status_code == status.HTTP_201_CREATED assert response.status_code == status.HTTP_201_CREATED
assert response.json()["project_id"] == base_params["project_id"] assert response.json()["project_id"] == base_params["project_id"]
@ -158,9 +136,8 @@ async def test_close_project_invalid_uuid(app: FastAPI, compute_client: AsyncCli
assert response.status_code == status.HTTP_404_NOT_FOUND assert response.status_code == status.HTTP_404_NOT_FOUND
async def test_get_file(app: FastAPI, compute_client: AsyncClient, config, tmpdir) -> None: async def test_get_file(app: FastAPI, compute_client: AsyncClient) -> None:
config.settings.Server.projects_path = str(tmpdir)
project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b") project = ProjectManager.instance().create_project(project_id="01010203-0405-0607-0809-0a0b0c0d0e0b")
with open(os.path.join(project.path, "hello"), "w+") as f: with open(os.path.join(project.path, "hello"), "w+") as f:

View File

@ -417,57 +417,57 @@ async def test_upload_image_permission_denied(app: FastAPI, compute_client: Asyn
assert response.status_code == status.HTTP_409_CONFLICT assert response.status_code == status.HTTP_409_CONFLICT
@pytest.mark.asyncio # @pytest.mark.asyncio
async def test_create_img_relative(app: FastAPI, compute_client: AsyncClient): # async def test_create_img_relative(app: FastAPI, compute_client: AsyncClient):
#
params = { # params = {
"qemu_img": "/tmp/qemu-img", # "qemu_img": "/tmp/qemu-img",
"path": "hda.qcow2", # "path": "hda.qcow2",
"format": "qcow2", # "format": "qcow2",
"preallocation": "metadata", # "preallocation": "metadata",
"cluster_size": 64, # "cluster_size": 64,
"refcount_bits": 12, # "refcount_bits": 12,
"lazy_refcounts": "off", # "lazy_refcounts": "off",
"size": 100 # "size": 100
} # }
with asyncio_patch("gns3server.compute.Qemu.create_disk"): # with asyncio_patch("gns3server.compute.Qemu.create_disk"):
response = await compute_client.post(app.url_path_for("compute:create_qemu_image"), json=params) # response = await compute_client.post(app.url_path_for("compute:create_qemu_image"), json=params)
assert response.status_code == status.HTTP_204_NO_CONTENT # assert response.status_code == status.HTTP_204_NO_CONTENT
#
#
async def test_create_img_absolute_non_local(app: FastAPI, compute_client: AsyncClient, config) -> None: # async def test_create_img_absolute_non_local(app: FastAPI, compute_client: AsyncClient, config) -> None:
#
config.settings.Server.local = False # config.settings.Server.local = False
params = { # params = {
"qemu_img": "/tmp/qemu-img", # "qemu_img": "/tmp/qemu-img",
"path": "/tmp/hda.qcow2", # "path": "/tmp/hda.qcow2",
"format": "qcow2", # "format": "qcow2",
"preallocation": "metadata", # "preallocation": "metadata",
"cluster_size": 64, # "cluster_size": 64,
"refcount_bits": 12, # "refcount_bits": 12,
"lazy_refcounts": "off", # "lazy_refcounts": "off",
"size": 100 # "size": 100
} # }
with asyncio_patch("gns3server.compute.Qemu.create_disk"): # with asyncio_patch("gns3server.compute.Qemu.create_disk"):
response = await compute_client.post(app.url_path_for("compute:create_qemu_image"), json=params) # response = await compute_client.post(app.url_path_for("compute:create_qemu_image"), json=params)
assert response.status_code == 403 # assert response.status_code == 403
#
#
async def test_create_img_absolute_local(app: FastAPI, compute_client: AsyncClient, config) -> None: # async def test_create_img_absolute_local(app: FastAPI, compute_client: AsyncClient, config) -> None:
#
params = { # params = {
"qemu_img": "/tmp/qemu-img", # "qemu_img": "/tmp/qemu-img",
"path": "/tmp/hda.qcow2", # "path": "/tmp/hda.qcow2",
"format": "qcow2", # "format": "qcow2",
"preallocation": "metadata", # "preallocation": "metadata",
"cluster_size": 64, # "cluster_size": 64,
"refcount_bits": 12, # "refcount_bits": 12,
"lazy_refcounts": "off", # "lazy_refcounts": "off",
"size": 100 # "size": 100
} # }
with asyncio_patch("gns3server.compute.Qemu.create_disk"): # with asyncio_patch("gns3server.compute.Qemu.create_disk"):
response = await compute_client.post(app.url_path_for("compute:create_qemu_image"), json=params) # response = await compute_client.post(app.url_path_for("compute:create_qemu_image"), json=params)
assert response.status_code == status.HTTP_204_NO_CONTENT # assert response.status_code == status.HTTP_204_NO_CONTENT
async def test_capabilities(app: FastAPI, compute_client: AsyncClient) -> None: async def test_capabilities(app: FastAPI, compute_client: AsyncClient) -> None:

View File

@ -41,9 +41,9 @@ async def project(app: FastAPI, client: AsyncClient, controller: Controller) ->
return controller.get_project(u) return controller.get_project(u)
async def test_create_project_with_path(app: FastAPI, client: AsyncClient, controller: Controller, tmpdir) -> None: async def test_create_project_with_path(app: FastAPI, client: AsyncClient, controller: Controller, config) -> None:
params = {"name": "test", "path": str(tmpdir), "project_id": "00010203-0405-0607-0809-0a0b0c0d0e0f"} params = {"name": "test", "path": str(config.settings.Server.projects_path), "project_id": "00010203-0405-0607-0809-0a0b0c0d0e0f"}
response = await client.post(app.url_path_for("create_project"), json=params) response = await client.post(app.url_path_for("create_project"), json=params)
assert response.status_code == status.HTTP_201_CREATED assert response.status_code == status.HTTP_201_CREATED
assert response.json()["name"] == "test" assert response.json()["name"] == "test"
@ -128,9 +128,9 @@ async def test_update_project_with_variables(app: FastAPI, client: AsyncClient,
assert response.json()["variables"] == variables assert response.json()["variables"] == variables
async def test_list_projects(app: FastAPI, client: AsyncClient, controller: Controller, tmpdir) -> None: async def test_list_projects(app: FastAPI, client: AsyncClient, controller: Controller) -> None:
params = {"name": "test", "path": str(tmpdir), "project_id": "00010203-0405-0607-0809-0a0b0c0d0e0f"} params = {"name": "test", "project_id": "00010203-0405-0607-0809-0a0b0c0d0e0f"}
await client.post(app.url_path_for("create_project"), json=params) await client.post(app.url_path_for("create_project"), json=params)
response = await client.get(app.url_path_for("get_projects")) response = await client.get(app.url_path_for("get_projects"))
assert response.status_code == status.HTTP_200_OK assert response.status_code == status.HTTP_200_OK
@ -371,21 +371,21 @@ async def test_write_and_get_file_with_leading_slashes_in_filename(
assert response.status_code == status.HTTP_403_FORBIDDEN assert response.status_code == status.HTTP_403_FORBIDDEN
async def test_import(app: FastAPI, client: AsyncClient, tmpdir, controller: Controller) -> None: # async def test_import(app: FastAPI, client: AsyncClient, tmpdir, controller: Controller) -> None:
#
with zipfile.ZipFile(str(tmpdir / "test.zip"), 'w') as myzip: # with zipfile.ZipFile(str(tmpdir / "test.zip"), 'w') as myzip:
myzip.writestr("project.gns3", b'{"project_id": "c6992992-ac72-47dc-833b-54aa334bcd05", "version": "2.0.0", "name": "test"}') # myzip.writestr("project.gns3", b'{"project_id": "c6992992-ac72-47dc-833b-54aa334bcd05", "version": "2.0.0", "name": "test"}')
myzip.writestr("demo", b"hello") # myzip.writestr("demo", b"hello")
#
project_id = str(uuid.uuid4()) # project_id = str(uuid.uuid4())
with open(str(tmpdir / "test.zip"), "rb") as f: # with open(str(tmpdir / "test.zip"), "rb") as f:
response = await client.post(app.url_path_for("import_project", project_id=project_id), content=f.read()) # response = await client.post(app.url_path_for("import_project", project_id=project_id), content=f.read())
assert response.status_code == status.HTTP_201_CREATED # assert response.status_code == status.HTTP_201_CREATED
#
project = controller.get_project(project_id) # project = controller.get_project(project_id)
with open(os.path.join(project.path, "demo")) as f: # with open(os.path.join(project.path, "demo")) as f:
content = f.read() # content = f.read()
assert content == "hello" # assert content == "hello"
async def test_duplicate(app: FastAPI, client: AsyncClient, project: Project) -> None: async def test_duplicate(app: FastAPI, client: AsyncClient, project: Project) -> None:

View File

@ -17,7 +17,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import os import os
import sys
import uuid import uuid
import pytest import pytest
from uuid import uuid4 from uuid import uuid4
@ -28,7 +27,6 @@ from gns3server.compute.project import Project
from gns3server.compute.notification_manager import NotificationManager from gns3server.compute.notification_manager import NotificationManager
from gns3server.compute.compute_error import ComputeError, ComputeForbiddenError from gns3server.compute.compute_error import ComputeError, ComputeForbiddenError
from gns3server.compute.vpcs import VPCS, VPCSVM from gns3server.compute.vpcs import VPCS, VPCSVM
from gns3server.config import Config
@pytest.fixture(scope="function") @pytest.fixture(scope="function")
@ -76,25 +74,15 @@ async def test_clean_tmp_directory():
async def test_path(projects_dir): async def test_path(projects_dir):
directory = projects_dir directory = projects_dir
with patch("gns3server.compute.project.Project.is_local", return_value=True):
with patch("gns3server.utils.path.get_default_project_directory", return_value=directory): with patch("gns3server.utils.path.get_default_project_directory", return_value=directory):
p = Project(project_id=str(uuid4())) p = Project(project_id=str(uuid4()))
assert p.path == os.path.join(directory, p.id) assert p.path == os.path.join(directory, p.id)
assert os.path.exists(os.path.join(directory, p.id)) assert os.path.exists(os.path.join(directory, p.id))
@pytest.mark.asyncio
async def test_init_path(tmpdir):
with patch("gns3server.compute.project.Project.is_local", return_value=True):
p = Project(path=str(tmpdir), project_id=str(uuid4()))
assert p.path == str(tmpdir)
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_changing_path_not_allowed(tmpdir): async def test_changing_path_not_allowed(tmpdir):
with patch("gns3server.compute.project.Project.is_local", return_value=False):
with pytest.raises(ComputeForbiddenError): with pytest.raises(ComputeForbiddenError):
p = Project(project_id=str(uuid4())) p = Project(project_id=str(uuid4()))
p.path = str(tmpdir) p.path = str(tmpdir)
@ -135,7 +123,6 @@ async def test_json_with_variables():
async def test_node_working_directory(node, projects_dir): async def test_node_working_directory(node, projects_dir):
directory = projects_dir directory = projects_dir
with patch("gns3server.compute.project.Project.is_local", return_value=True):
p = Project(project_id=str(uuid4())) p = Project(project_id=str(uuid4()))
assert p.node_working_directory(node) == os.path.join(directory, p.id, 'project-files', node.module_name, node.id) assert p.node_working_directory(node) == os.path.join(directory, p.id, 'project-files', node.module_name, node.id)
assert os.path.exists(p.node_working_directory(node)) assert os.path.exists(p.node_working_directory(node))
@ -145,7 +132,6 @@ async def test_node_working_directory(node, projects_dir):
async def test_node_working_path(node, projects_dir): async def test_node_working_path(node, projects_dir):
directory = projects_dir directory = projects_dir
with patch("gns3server.compute.project.Project.is_local", return_value=True):
p = Project(project_id=str(uuid4())) p = Project(project_id=str(uuid4()))
assert p.node_working_path(node) == os.path.join(directory, p.id, 'project-files', node.module_name, node.id) assert p.node_working_path(node) == os.path.join(directory, p.id, 'project-files', node.module_name, node.id)
# after this execution directory structure should not be created # after this execution directory structure should not be created
@ -194,9 +180,8 @@ async def test_project_close(node, compute_project):
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_list_files(tmpdir, config): async def test_list_files():
config.settings.Server.projects_path = str(tmpdir)
project = Project(project_id=str(uuid4())) project = Project(project_id=str(uuid4()))
path = project.path path = project.path
os.makedirs(os.path.join(path, "vm-1", "dynamips")) os.makedirs(os.path.join(path, "vm-1", "dynamips"))

View File

@ -359,7 +359,7 @@ def ubridge_path(config):
@pytest.fixture(autouse=True) @pytest.fixture(autouse=True)
def run_around_tests(monkeypatch, config, port_manager):#port_manager, controller, config): def run_around_tests(monkeypatch, config, port_manager):
""" """
This setup a temporary project file environment around tests This setup a temporary project file environment around tests
""" """

View File

@ -21,6 +21,7 @@ import uuid
import json import json
import zipfile import zipfile
from pathlib import Path
from tests.utils import asyncio_patch, AsyncioMagicMock from tests.utils import asyncio_patch, AsyncioMagicMock
from gns3server.controller.import_project import import_project, _move_files_to_compute from gns3server.controller.import_project import import_project, _move_files_to_compute
@ -74,12 +75,13 @@ async def test_import_project(tmpdir, controller):
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_import_project_override(tmpdir, controller): async def test_import_project_override(projects_dir, controller):
""" """
In the case of snapshot we will import a project for In the case of snapshot we will import a project for
override the previous keeping the same project id & location override the previous keeping the same project id & location
""" """
tmpdir = Path(projects_dir)
project_id = str(uuid.uuid4()) project_id = str(uuid.uuid4())
topology = { topology = {
"project_id": project_id, "project_id": project_id,
@ -523,11 +525,12 @@ async def test_move_files_to_compute(tmpdir):
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_import_project_name_and_location(tmpdir, controller): async def test_import_project_name_and_location(projects_dir, controller):
""" """
Import a project with a different location and name Import a project with a different location and name
""" """
tmpdir = Path(projects_dir)
project_id = str(uuid.uuid4()) project_id = str(uuid.uuid4())
topology = { topology = {
"project_id": str(uuid.uuid4()), "project_id": str(uuid.uuid4()),

View File

@ -128,18 +128,19 @@ def test_path_exist(tmpdir):
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_init_path(tmpdir): async def test_init_path(projects_dir):
p = Project(path=str(tmpdir), project_id=str(uuid4()), name="Test") project_id = str(uuid4())
assert p.path == str(tmpdir) p = Project(project_id=project_id, name="Test")
assert p.path == os.path.join(projects_dir, project_id)
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_changing_path_with_quote_not_allowed(tmpdir): async def test_changing_path_with_quote_not_allowed(projects_dir):
with pytest.raises(ControllerForbiddenError): with pytest.raises(ControllerForbiddenError):
p = Project(project_id=str(uuid4()), name="Test") p = Project(project_id=str(uuid4()), name="Test")
p.path = str(tmpdir / "project\"53") p.path = os.path.join(projects_dir, "project\"53")
@pytest.mark.asyncio @pytest.mark.asyncio

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import json import json
import pytest import pytest
@ -171,7 +171,7 @@ def demo_topology():
@pytest.mark.asyncio @pytest.mark.asyncio
async def test_open(controller, tmpdir): async def test_open(controller, projects_dir):
simple_topology = { simple_topology = {
"auto_close": True, "auto_close": True,
@ -192,12 +192,12 @@ async def test_open(controller, tmpdir):
"version": "2.0.0" "version": "2.0.0"
} }
with open(str(tmpdir / "demo.gns3"), "w+") as f: with open(os.path.join(projects_dir, "demo.gns3"), "w+") as f:
json.dump(simple_topology, f) json.dump(simple_topology, f)
project = Project(name="demo", project = Project(name="demo",
project_id="64ba8408-afbf-4b66-9cdd-1fd854427478", project_id="64ba8408-afbf-4b66-9cdd-1fd854427478",
path=str(tmpdir), path=str(projects_dir),
controller=controller, controller=controller,
filename="demo.gns3", filename="demo.gns3",
status="closed") status="closed")

View File

@ -23,17 +23,11 @@ from fastapi import HTTPException
from gns3server.utils.path import check_path_allowed, get_default_project_directory from gns3server.utils.path import check_path_allowed, get_default_project_directory
def test_check_path_allowed(config, tmpdir): def test_check_path_allowed():
config.settings.Server.local = False
config.settings.Server.projects_path = str(tmpdir)
with pytest.raises(HTTPException): with pytest.raises(HTTPException):
check_path_allowed("/private") check_path_allowed("/private")
config.settings.Server.local = True
check_path_allowed(str(tmpdir / "hello" / "world"))
check_path_allowed("/private")
def test_get_default_project_directory(config): def test_get_default_project_directory(config):