-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_e2e_91_Exceptional_file_path.py
102 lines (76 loc) · 2.9 KB
/
test_e2e_91_Exceptional_file_path.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
import sys
import textwrap
import pytest
from src.csvdiff3 import csvdiff
def test_misspecification_of_csv_file_path_on_the_left(lhs, rhs, capfd):
lhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
rhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
sys.argv = ['csvdiff.py', 'not_exists' + lhs.strpath, rhs.strpath, '-d']
with pytest.raises(SystemExit) as e:
csvdiff.main()
assert e.type == SystemExit
assert e.value.code == 1
_, err = capfd.readouterr()
assert str(err).find("lhs_file_path not exists. ") > 0
def test_misspecification_of_csv_file_path_on_the_right(lhs, rhs, capfd):
lhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
rhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
sys.argv = ['csvdiff.py', lhs.strpath, 'not_exists' + rhs.strpath, '-d']
with pytest.raises(SystemExit) as e:
csvdiff.main()
assert e.type == SystemExit
assert e.value.code == 1
_, err = capfd.readouterr()
assert str(err).find("rhs_file_path not exists. ") > 0
def test_specified_left_csv_file_path_is_directory(lhs, rhs, lhs_dir, capfd):
lhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
rhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
sys.argv = ['csvdiff.py', lhs_dir.strpath, rhs.strpath, '-d']
with pytest.raises(SystemExit) as e:
csvdiff.main()
assert e.type == SystemExit
assert e.value.code == 1
_, err = capfd.readouterr()
assert str(err).find("lhs_file_path is not a file.") > 0
def test_specified_right_csv_file_path_is_directory(lhs, rhs, rhs_dir, capfd):
lhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
rhs.write(textwrap.dedent('''
head1, head2, head3, head4
key1-1, value1-1, value2-1, value3-1
key1-2, value1-2, value2-2, value3-2
''').strip())
sys.argv = ['csvdiff.py', lhs.strpath, rhs_dir.strpath, '-d']
with pytest.raises(SystemExit) as e:
csvdiff.main()
assert e.type == SystemExit
assert e.value.code == 1
_, err = capfd.readouterr()
assert str(err).find("rhs_file_path is not a file.") > 0