-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
80 lines (57 loc) · 2.42 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import pytest
import json
import os.path
import importlib
import ftputil
from fixture.application import Application
fixture = None
target = None
def load_config(file):
global target
if target is None:
config_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), file)
with open(config_file) as file:
target = json.load(file)
return target
@pytest.fixture
def app(request, config):
global fixture
browser = request.config.getoption("--browser")
web_config = config['web']
credentials = config['webadmin']
if fixture is None or not fixture.is_valid():
fixture = Application(browser=browser, config=config)
fixture.session.login(username=credentials["username"], password=credentials["password"])
return fixture
@pytest.fixture(scope='session')
def config(request):
return load_config(request.config.getoption("--target"))
# @pytest.fixture(scope='session', autouse=True)
# def configure_server(request, config):
# install_server_configuration(config['ftp']['host'], config['ftp']['username'], config['ftp']['password'])
# def fin():
# restore_server_configuration(config['ftp']['host'], config['ftp']['username'], config['ftp']['password'])
# request.addfinalizer(fin)
@pytest.fixture(scope='session', autouse=True)
def stop(request):
def finalizer():
fixture.session.ensure_logout()
fixture.destroy()
request.addfinalizer(finalizer)
return fixture
def install_server_configuration(host, username, password):
with ftputil.FTPHost(host, username, password) as remote:
if remote.path.isfile("config_inc.php.bak"):
remote.remove("config_inc.php.bak")
if remote.path.isfile("config_inc.php"):
remote.rename("config_inc.php", "config_inc.php.bak")
remote.upload(os.path.join(os.path.dirname(__file__), "resources/config_inc.php"), "config_inc.php")
def restore_server_configuration(host, username, password):
with ftputil.FTPHost(host, username, password) as remote:
if remote.path.isfile("config_inc.php.bak"):
if remote.path.isfile("config_inc.php"):
remote.remove("config_inc.php")
remote.rename("config_inc.php.bak", "config_inc.php")
def pytest_addoption(parser):
parser.addoption("--browser", action="store", default="chrome")
parser.addoption("--target", action="store", default="target.json")