blob: 400962e2bf2cd4464c40d09961499184af315b8d (
plain)
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
|
"""Test __main__ functions."""
import unittest
import os
from pywal import __main__
from pywal.settings import __cache_dir__
class TestMain(unittest.TestCase):
"""Test the gen_colors functions."""
def test_main(self):
"""> Test main function."""
with self.assertRaises(SystemExit):
__main__.main()
def test_no_args(self):
"""> Test no args."""
with self.assertRaises(SystemExit):
args = __main__.get_args([""])
__main__.process_args(args)
def test_conflict(self):
"""> Test arg parsing (-i, -f)"""
with self.assertRaises(SystemExit):
args = __main__.get_args(["-i", "file", "-f", "file"])
__main__.process_args(args)
def test_version(self):
"""> Test arg parsing (-v)"""
with self.assertRaises(SystemExit):
args = __main__.get_args(["-v"])
__main__.process_args(args)
def test_quiet(self):
"""> Test arg parsing (-q)"""
args = __main__.get_args(["-q"])
__main__.process_args(args)
self.assertTrue(args.q)
def test_alpha(self):
"""> Test arg parsing (-a)"""
args = __main__.get_args(["-a", "99"])
__main__.process_args(args)
self.assertTrue(args.a)
def test_ext_script(self):
"""> Test arg parsing (-o)"""
args = __main__.get_args(["-o", "true"])
__main__.process_args(args)
self.assertTrue(args.o)
def test_clean(self):
"""> Test arg parsing (-c)"""
args = __main__.get_args(["-c"])
__main__.process_args(args)
self.assertFalse(os.path.isdir(__cache_dir__ / "schemes"))
def test_reload(self):
"""> Test arg parsing (-r)"""
with self.assertRaises(SystemExit):
args = __main__.get_args(["-r"])
__main__.process_args(args)
def test_image(self):
"""> Test arg parsing (-i)"""
args = __main__.get_args(["-i", "tests/test_files/test.jpg"])
__main__.process_args(args)
self.assertTrue(args.i)
def test_json(self):
"""> Test arg parsing (-f)"""
args = __main__.get_args(["-f", "tests/test_files/test_file.json"])
__main__.process_args(args)
self.assertTrue(args.f)
if __name__ == "__main__":
unittest.main()
|