本文整理匯總了Python中gns3.project.Project.post方法的典型用法代碼示例。如果您正苦於以下問題:Python Project.post方法的具體用法?Python Project.post怎麽用?Python Project.post使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gns3.project.Project
的用法示例。
在下文中一共展示了Project.post方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_project_post_non_created_project_remote_server
# 需要導入模塊: from gns3.project import Project [as 別名]
# 或者: from gns3.project.Project import post [as 別名]
def test_project_post_non_created_project_remote_server(remote_server):
"""
Test a post on a remote servers. The project
is not created on the server and should be created automaticaly.
And after make the call
"""
uuid = str(uuid4())
project = Project()
project._created_servers = set()
project.setId(uuid)
with patch("gns3.http_client.HTTPClient.createHTTPQuery") as mock:
project.post(remote_server, "/test", lambda: 0, body={"test": "test"})
args, kwargs = mock.call_args
assert args[0] == "POST"
assert args[1] == "/projects"
assert kwargs["body"] == {"name": "untitled", "temporary": False, "project_id": uuid}
args[2]({}, server=remote_server)
assert len(project._created_servers) == 1
args, kwargs = mock.call_args
assert args[0] == "POST"
assert args[1] == "/projects/{uuid}/test".format(uuid=uuid)
assert kwargs["body"] == {"test": "test"}
示例2: test_project_post_non_initialized_project_local_server
# 需要導入模塊: from gns3.project import Project [as 別名]
# 或者: from gns3.project.Project import post [as 別名]
def test_project_post_non_initialized_project_local_server(tmpdir, local_server):
"""
Test a post on a local servers. The project
is not created on the server and should be created automatically.
And after make the call
"""
uuid = str(uuid4())
project = Project()
project._created_servers = set()
project.setFilesDir(str(tmpdir))
with patch("gns3.http_client.HTTPClient.createHTTPQuery") as mock:
project.post(local_server, "/test", lambda: 0, body={"test": "test"})
assert mock.called
args, kwargs = mock.call_args
assert args[0] == "POST"
assert args[1] == "/projects"
assert kwargs["body"] == {"name": "untitled",
"temporary": False,
"path": str(tmpdir),
"project_id": None}
args[2]({"project_id": uuid}, server=local_server)
assert len(project._created_servers) == 1
assert project._closed is False
args, kwargs = mock.call_args
assert args[0] == "POST"
assert args[1] == "/projects/{uuid}/test".format(uuid=uuid)
assert kwargs["body"] == {"test": "test"}
示例3: test_project_post_on_created_project
# 需要導入模塊: from gns3.project import Project [as 別名]
# 或者: from gns3.project.Project import post [as 別名]
def test_project_post_on_created_project(controller):
"""
Test a post on a remote servers.
The project is already created on the server
"""
uuid = uuid4()
project = Project()
project._created = True
project.setId(uuid)
project.post("/test", lambda: 0, body={"test": "test"})
mock = controller._http_client.createHTTPQuery
args, kwargs = mock.call_args
assert args[0] == "POST"
assert args[1] == "/projects/{uuid}/test".format(uuid=uuid)
assert kwargs["body"] == {"test": "test"}
示例4: test_project_post_on_created_project
# 需要導入模塊: from gns3.project import Project [as 別名]
# 或者: from gns3.project.Project import post [as 別名]
def test_project_post_on_created_project(local_server):
"""
Test a post on a remote servers.
The project is already created on the server
"""
uuid = uuid4()
project = Project()
project._created_servers = set((local_server, ))
project.setId(uuid)
with patch("gns3.http_client.HTTPClient.createHTTPQuery") as mock:
project.post(local_server, "/test", lambda: 0, body={"test": "test"})
args, kwargs = mock.call_args
assert args[0] == "POST"
assert args[1] == "/projects/{uuid}/test".format(uuid=uuid)
assert kwargs["body"] == {"test": "test"}
示例5: test_project_post_non_created_project_remote_server_two_query_two_server
# 需要導入模塊: from gns3.project import Project [as 別名]
# 或者: from gns3.project.Project import post [as 別名]
def test_project_post_non_created_project_remote_server_two_query_two_server(remote_server, local_server):
"""
Test a post on a remote servers. The project
is not created on the server and should be created automaticaly.
And after make the call
Another server is also waiting for the project to be create on the first server
"""
uuid = str(uuid4())
project = Project()
project._created_servers = set()
project.setId(uuid)
with patch("gns3.http_client.HTTPClient.createHTTPQuery") as mock:
project.post(remote_server, "/test", lambda: 0, body={"test": "test"})
args, kwargs = mock.call_args
# Send a query from another server, this should wait the first server to finish
project.post(local_server, "/test3", lambda: 0, body={"test": "test"})
assert args[0] == "POST"
assert args[1] == "/projects"
assert kwargs["body"] == {"name": "untitled", "temporary": False, "project_id": uuid}
project.post(remote_server, "/test2", lambda: 0, body={"test": "test"})
assert mock.call_count == 1
args[2]({}, server=remote_server)
assert len(project._created_servers) == 1
calls = mock.mock_calls
name, args, kwargs = calls[1]
assert args[0] == "GET"
assert args[1] == "/projects/{uuid}/notifications".format(uuid=uuid)
name, args, kwargs = calls[3]
assert args[0] == "POST"
assert args[1] == "/projects/{uuid}/test".format(uuid=uuid)
assert kwargs["body"] == {"test": "test"}
# Call to the create project on second server
name, args, kwargs = calls[4]
assert args[0] == "POST"
assert args[1] == "/projects".format(uuid=uuid)
assert kwargs["body"] == {"name": "untitled", "project_id": uuid, "path": None, "temporary": False}
name, args, kwargs = calls[5]
assert args[0] == "POST"
assert args[1] == "/projects/{uuid}/test2".format(uuid=uuid)
assert kwargs["body"] == {"test": "test"}