-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
42 lines (33 loc) · 1.08 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
import pytest
from fixture.application import Application
import json
import os.path
from fixture.db import DbFixture
fixture = None
target = None
def load_config(file):
global target
if target is None:
confing_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), file)
with open(confing_file) as f:
target = json.load(f)
return target
@pytest.fixture
def app(request):
global fixture
global target
browser = request.config.getoption("--browser")
web_config = load_config(request.config.getoption("--target"))["web"]
if fixture is None or not fixture.is_valid():
fixture = Application(browser=browser, baseUrl=web_config['baseUrl'])
return fixture
@pytest.fixture(scope="session", autouse=True)
def stop(request):
def fin():
fixture.session.ensure_logout()
fixture.destroy()
request.addfinalizer(fin)
return fixture
def pytest_addoption(parser):
parser.addoption("--browser", action="store", default="firefox")
parser.addoption("--target", action="store", default="target.json")