1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-12 00:50:56 +00:00

Fix tests

This commit is contained in:
Julien Duponchelle 2015-06-11 09:18:02 +02:00
parent a2833cf276
commit 07eab6e766
2 changed files with 4 additions and 3 deletions

View File

@ -136,6 +136,7 @@ def run_around_tests(monkeypatch):
config = Config.instance() config = Config.instance()
config.clear() config.clear()
config.set("Server", "project_directory", tmppath) config.set("Server", "project_directory", tmppath)
config.set("Server", "auth", False)
# Prevent exectuions of the VM if we forgot to mock something # Prevent exectuions of the VM if we forgot to mock something
config.set("VirtualBox", "vboxmanage_path", tmppath) config.set("VirtualBox", "vboxmanage_path", tmppath)

View File

@ -19,7 +19,7 @@
import aiohttp import aiohttp
import os import os
from unittest.mock import patch from unittest.mock import patch
from gns3server.config import Config
def test_index_upload(server): def test_index_upload(server):
response = server.get('/upload', api_version=None) response = server.get('/upload', api_version=None)
@ -37,7 +37,7 @@ def test_upload(server, tmpdir):
body.add_field("type", "QEMU") body.add_field("type", "QEMU")
body.add_field("file", open(str(tmpdir / "test"), "rb"), content_type="application/iou", filename="test2") body.add_field("file", open(str(tmpdir / "test"), "rb"), content_type="application/iou", filename="test2")
with patch("gns3server.config.Config.get_section_config", return_value={"images_path": str(tmpdir)}): Config.instance().set("Server", "images_path", str(tmpdir))
response = server.post('/upload', api_version=None, body=body, raw=True) response = server.post('/upload', api_version=None, body=body, raw=True)
with open(str(tmpdir / "QEMU" / "test2")) as f: with open(str(tmpdir / "QEMU" / "test2")) as f: