Test logger and PEP8

This commit is contained in:
Julien Duponchelle 2015-02-09 10:38:34 +01:00
parent 64c197c719
commit bf29e0319e
2 changed files with 57 additions and 5 deletions

View File

@ -18,6 +18,7 @@
import pytest
from tests.utils import asyncio_patch
@pytest.yield_fixture(scope="module")
def vm(server, project, monkeypatch):
@ -33,6 +34,7 @@ def vm(server, project, monkeypatch):
with asyncio_patch("gns3server.modules.virtualbox.VirtualBox.find_vboxmanage", return_value=vboxmanage_path):
yield response.json
def test_vbox_create(server, project):
with asyncio_patch("gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.create", return_value=True):
@ -92,11 +94,11 @@ def test_vbox_nio_create_udp(server, vm):
with asyncio_patch('gns3server.modules.virtualbox.virtualbox_vm.VirtualBoxVM.adapter_add_nio_binding') as mock:
response = server.post("/projects/{project_id}/virtualbox/vms/{vm_id}/adapters/0/nio".format(project_id=vm["project_id"],
vm_id=vm["vm_id"]), {"type": "nio_udp",
"lport": 4242,
"rport": 4343,
"rhost": "127.0.0.1"},
example=True)
vm_id=vm["vm_id"]), {"type": "nio_udp",
"lport": 4242,
"rport": 4343,
"rhost": "127.0.0.1"},
example=True)
assert mock.called
args, kwgars = mock.call_args

50
tests/web/test_logger.py Normal file
View File

@ -0,0 +1,50 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import logging
from gns3server.web.logger import init_logger
def test_init_logger(caplog):
logger = init_logger(logging.DEBUG)
logger.debug("DEBUG1")
assert "DEBUG1" in caplog.text()
logger.info("INFO1")
assert "INFO1" in caplog.text()
logger.warn("WARN1")
assert "WARN1" in caplog.text()
logger.error("ERROR1")
assert "ERROR1" in caplog.text()
logger.critical("CRITICAL1")
assert "CRITICAL1" in caplog.text()
def test_init_logger_quiet(caplog):
logger = init_logger(logging.DEBUG, quiet=True)
logger.debug("DEBUG1")
assert "DEBUG1" not in caplog.text()
logger.info("INFO1")
assert "INFO1" not in caplog.text()
logger.warn("WARN1")
assert "WARN1" not in caplog.text()
logger.error("ERROR1")
assert "ERROR1" not in caplog.text()
logger.critical("CRITICAL1")
assert "CRITICAL1" not in caplog.text()