-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_check.py
executable file
·118 lines (105 loc) · 3.13 KB
/
test_check.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/env python3
import unittest
from typer.testing import CliRunner
from check import app
class TestCheckCLI(unittest.TestCase):
def setUp(self):
self.RUNNER = CliRunner()
self.EXPECTED = "Confirmed files OK in:"
return super().setUp()
def test_checkdir(self):
result = self.RUNNER.invoke(app, ["checkdir"])
self.assertEqual(result.exit_code, 0)
found = result.stdout.startswith(self.EXPECTED)
self.assertTrue(found)
def test_confirm_base(self):
result = self.RUNNER.invoke(
app,
[
"confirm",
"-d",
"checkdir/datafiles/sample1.json",
"-s",
"checkdir/schemas",
"-c",
"5",
"-r",
"urn:ulims:base:1.0",
],
)
self.assertEqual(result.exit_code, 0)
found = result.stdout.startswith(self.EXPECTED)
self.assertTrue(found)
def test_confirm_basei07(self):
result = self.RUNNER.invoke(
app,
[
"confirm",
"-d",
"checkdir/datafiles/sample1.json",
"-s",
"checkdir/schemas",
"-c",
"5",
"-r",
"urn:ulims:base:i07:1.0",
],
)
self.assertEqual(result.exit_code, 0)
found = result.stdout.startswith(self.EXPECTED)
self.assertTrue(found)
def test_invalid_option(self):
result = self.RUNNER.invoke(app, ["invalid"])
self.assertEqual(result.exit_code, 2)
def test_no_datafile(self):
result = self.RUNNER.invoke(
app,
[
"confirm",
"-d",
"checkdir/datafiles/sample2notexisting.json",
"-s",
"checkdir/schemas",
"-c",
"5",
"-r",
"urn:ulims:base:1.0",
],
)
self.assertEqual(result.exit_code, 1)
def test_wrong_schemafolder(self):
result = self.RUNNER.invoke(
app,
[
"confirm",
"-d",
"checkdir/datafiles/sample1.json",
"-s",
"checkdir/schemas/notexisting",
"-c",
"5",
"-r",
"urn:ulims:base:1.0",
],
)
self.assertEqual(result.exit_code, 1)
def test_confirm_base_wrong_count(self):
result = self.RUNNER.invoke(
app,
[
"confirm",
"-d",
"checkdir/datafiles/sample1.json",
"-s",
"checkdir/schemas",
"-c",
"6", # should be 5
"-r",
"urn:ulims:base:1.0",
],
)
self.assertEqual(result.exit_code, 0)
found = result.stdout.startswith("Number of resources did not match expected value.")
self.assertTrue(found)
if __name__ == "__main__":
unittest.main()