|
1
|
|
|
import os |
|
|
|
|
|
|
2
|
|
|
|
|
3
|
|
|
import pytest |
|
|
|
|
|
|
4
|
|
|
from click.testing import CliRunner |
|
|
|
|
|
|
5
|
|
|
from testfixtures import LogCapture |
|
|
|
|
|
|
6
|
|
|
from src.gols import upload, cli |
|
|
|
|
|
|
7
|
|
|
|
|
8
|
|
|
from gols.cli import cli |
|
|
|
|
|
|
9
|
|
|
from gols.cli import upload |
|
|
|
|
|
|
10
|
|
|
|
|
11
|
|
|
|
|
12
|
|
|
@pytest.fixture(scope='function') |
|
13
|
|
|
def runner(): |
|
|
|
|
|
|
14
|
|
|
yield CliRunner() |
|
15
|
|
|
|
|
16
|
|
|
|
|
17
|
|
View Code Duplication |
@pytest.fixture(scope='function') |
|
|
|
|
|
|
18
|
|
|
def fs(): |
|
|
|
|
|
|
19
|
|
|
if not os.path.exists(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'tests', 'directory_fit')): |
|
|
|
|
|
|
20
|
|
|
os.makedirs(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'tests', 'directory_fit')) |
|
|
|
|
|
|
21
|
|
|
yield os.path.join(os.path.dirname(os.path.dirname(__file__)), 'tests', 'directory_fit') |
|
22
|
|
|
|
|
23
|
|
|
|
|
24
|
|
View Code Duplication |
@pytest.fixture(scope='function') |
|
|
|
|
|
|
25
|
|
|
def cdf(): |
|
|
|
|
|
|
26
|
|
|
if not os.path.exists(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'tests', 'conf_dir_fit')): |
|
|
|
|
|
|
27
|
|
|
os.makedirs(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'tests', 'conf_dir_fit')) |
|
|
|
|
|
|
28
|
|
|
yield os.path.join(os.path.dirname(os.path.dirname(__file__)), 'tests', 'conf_dir_fit') |
|
29
|
|
|
|
|
30
|
|
|
|
|
31
|
|
|
def test_debug_turned_on(runner): |
|
|
|
|
|
|
32
|
|
|
with LogCapture() as l: |
|
|
|
|
|
|
33
|
|
|
result = runner.invoke(cli, ['--debug', 'upload']) |
|
34
|
|
|
assert result.exit_code == 2 |
|
35
|
|
|
assert 'Debug level set on' in str(l) |
|
36
|
|
|
|
|
37
|
|
|
|
|
38
|
|
|
def test_upload_help(runner): |
|
|
|
|
|
|
39
|
|
|
result = runner.invoke(upload, ['--help']) |
|
40
|
|
|
assert result.exit_code == 0 |
|
41
|
|
|
assert 'Usage' in result.output |
|
42
|
|
|
|
|
43
|
|
|
|
|
44
|
|
|
def test_required_fit_directory(runner, fs): |
|
|
|
|
|
|
45
|
|
|
result = runner.invoke(upload, ['upload', fs]) |
|
46
|
|
|
assert result.exit_code == 2 |
|
47
|
|
|
assert 'Error: Missing option' in result.output |
|
48
|
|
|
|
|
49
|
|
|
|
|
50
|
|
|
def test_upload_fit(runner, fs, cdf): |
|
|
|
|
|
|
51
|
|
|
username = '[email protected]' |
|
52
|
|
|
password = 'G0lsG0ls' |
|
53
|
|
|
with LogCapture() as l: |
|
|
|
|
|
|
54
|
|
|
# logger = logging.getLogger() |
|
55
|
|
|
result = runner.invoke(cli, ['--debug', 'upload', '-d', fs, '-c', cdf, |
|
56
|
|
|
'-u', username, '-p', password]) |
|
57
|
|
|
print(result.output) |
|
58
|
|
|
print(l) |
|
59
|
|
|
assert result.exit_code == 0 |
|
60
|
|
|
assert 'Done uploading'.format(fs) in str(l) |
|
|
|
|
|
|
61
|
|
|
|
|
62
|
|
|
|
|
63
|
|
|
# @pytest.mark.parametrize('args, expected_output, expected_exit_code', |
|
64
|
|
|
# [('', 'Error: Missing option', 2), |
|
65
|
|
|
# (['-d /tmp'], 'Error: Invalid value for', 2), |
|
66
|
|
|
# (['-d'],'',0) |
|
67
|
|
|
# ]) |
|
68
|
|
|
# def test_upload_args(runnerfs, args, expected_output, expected_exit_code): |
|
69
|
|
|
# runner, fs = runnerfs |
|
70
|
|
|
# print(fs) |
|
71
|
|
|
# result = runner.invoke(upload, args=args) |
|
72
|
|
|
# assert result.exit_code == expected_exit_code |
|
73
|
|
|
# print(result.output) |
|
74
|
|
|
# assert expected_output in result.output |
|
75
|
|
|
|
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.