1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Don't send variables to computes where are empty, Ref: #1340

This commit is contained in:
ziajka 2018-06-13 18:55:47 +02:00
parent 2e586f56ca
commit ac73c72727
2 changed files with 21 additions and 8 deletions

View File

@ -500,18 +500,21 @@ class Project:
if compute not in self._project_created_on_compute:
# For a local server we send the project path
if compute.id == "local":
yield from compute.post("/projects", data={
data = {
"name": self._name,
"project_id": self._id,
"path": self._path,
"variables": self._variables
})
"path": self._path
}
else:
yield from compute.post("/projects", data={
data = {
"name": self._name,
"project_id": self._id,
"variables": self._variables
})
"project_id": self._id
}
if self._variables:
data["variables"] = self._variables
yield from compute.post("/projects", data=data)
self._project_created_on_compute.add(compute)
yield from node.create()

View File

@ -36,6 +36,16 @@ def test_create_project_with_path(http_compute, tmpdir):
assert response.json["project_id"] == "00010203-0405-0607-0809-0a0b0c0d0e0f"
def test_create_project_with_path_and_empty_variables(http_compute, tmpdir):
with patch("gns3server.compute.project.Project.is_local", return_value=True):
response = http_compute.post("/projects", {
"name": "test",
"path": str(tmpdir), "project_id": "00010203-0405-0607-0809-0a0b0c0d0e0f",
"variables": None})
assert response.status == 201
assert response.json["project_id"] == "00010203-0405-0607-0809-0a0b0c0d0e0f"
def test_create_project_without_dir(http_compute):
query = {"name": "test", "project_id": "10010203-0405-0607-0809-0a0b0c0d0e0f"}
response = http_compute.post("/projects", query, example=True)