@@ -36,80 +36,74 @@ def __getattr__(self, name):
36
36
class TestCLIGetArgs :
37
37
# get_args
38
38
39
- @patch (
40
- "argparse.ArgumentParser.parse_args" ,
41
- return_value = ArgsMock (
42
- commit_message = "commit message" ,
43
- file = None ,
44
- hash = None ,
45
- from_hash = None ,
46
- quiet = None ,
47
- ),
48
- )
39
+ @patch ("sys.argv" , ["prog" , "commit message" ])
49
40
def test__get_args__with_commit_message (self , * _ ):
50
41
args = get_args ()
51
42
assert args .commit_message == "commit message"
52
- assert args .file is None
53
- assert args .hash is None
54
- assert args .from_hash is None
55
- assert args .quiet is None
56
43
57
- @patch (
58
- "argparse.ArgumentParser.parse_args" ,
59
- return_value = ArgsMock (file = "path/to/file.txt" ),
60
- )
44
+ @patch ("sys.argv" , ["prog" ])
45
+ def test__get_args__without_commit_message (self , * _ ):
46
+ with pytest .raises (SystemExit ) as ex :
47
+ get_args ()
48
+ assert ex .value .code == 2
49
+
50
+ @patch ("sys.argv" , ["prog" , "--file" , "path/to/file.txt" ])
61
51
def test__get_args__with_file (self , * _ ):
62
52
args = get_args ()
63
53
assert args .file == "path/to/file.txt"
64
54
65
- @patch (
66
- "argparse.ArgumentParser.parse_args" ,
67
- return_value = ArgsMock (hash = "commit_hash" , file = None ),
68
- )
55
+ @patch ("sys.argv" , ["prog" , "--hash" , "commit_hash" ])
69
56
def test__get_args__with_hash (self , * _ ):
70
57
args = get_args ()
71
58
assert args .hash == "commit_hash"
72
- assert args .file is None
73
59
74
- @patch (
75
- "argparse.ArgumentParser.parse_args" ,
76
- return_value = ArgsMock (from_hash = "from_commit_hash" , file = None , hash = None ),
77
- )
60
+ @patch ("sys.argv" , ["prog" , "--from-hash" , "from_commit_hash" ])
78
61
def test__get_args__with_from_hash (self , * _ ):
79
62
args = get_args ()
80
63
assert args .from_hash == "from_commit_hash"
81
- assert args .file is None
82
- assert args .hash is None
64
+ assert args .to_hash == "HEAD"
65
+
66
+ @patch ("sys.argv" , ["prog" , "--to-hash" , "to_commit_hash" ])
67
+ def test__get_args__with_to_hash_without_from_hash (self , * _ ):
68
+ with pytest .raises (SystemExit ) as ex :
69
+ get_args ()
70
+ assert ex .value .code == 2
83
71
84
72
@patch (
85
- "argparse.ArgumentParser.parse_args" ,
86
- return_value = ArgsMock (
87
- from_hash = "from_commit_hash" , to_hash = "to_commit_hash" , file = None , hash = None
88
- ),
73
+ "sys.argv" ,
74
+ ["prog" , "--from-hash" , "from_commit_hash" , "--to-hash" , "to_commit_hash" ],
89
75
)
90
76
def test__get_args__with_to_hash (self , * _ ):
91
77
args = get_args ()
92
78
assert args .from_hash == "from_commit_hash"
93
79
assert args .to_hash == "to_commit_hash"
94
- assert args .file is None
95
- assert args .hash is None
96
80
97
- @patch (
98
- "argparse.ArgumentParser.parse_args" ,
99
- return_value = ArgsMock (skip_detail = True ),
100
- )
81
+ @patch ("sys.argv" , ["prog" , "--skip-detail" , "commit_msg" ])
101
82
def test__get_args__with_skip_detail (self , * _ ):
102
83
args = get_args ()
103
84
assert args .skip_detail is True
104
85
105
- @patch (
106
- "argparse.ArgumentParser.parse_args" ,
107
- return_value = ArgsMock (hide_input = True ),
108
- )
86
+ @patch ("sys.argv" , ["prog" , "--hide-input" , "commit_msg" ])
109
87
def test__get_args__with_hide_input (self , * _ ):
110
88
args = get_args ()
111
89
assert args .hide_input is True
112
90
91
+ @patch ("sys.argv" , ["prog" , "--verbose" , "commit_msg" ])
92
+ def test__get_args__with_verbose (self , * _ ):
93
+ args = get_args ()
94
+ assert args .verbose is True
95
+
96
+ @patch ("sys.argv" , ["prog" , "--quiet" , "commit_msg" ])
97
+ def test__get_args__with_quiet (self , * _ ):
98
+ args = get_args ()
99
+ assert args .quiet is True
100
+
101
+ @patch ("sys.argv" , ["prog" , "--quiet" , "--verbose" , "commit_msg" ])
102
+ def test__get_args___fails_with_quiet_and_verbose (self , * _ ):
103
+ with pytest .raises (SystemExit ) as ex :
104
+ get_args ()
105
+ assert ex .value .code == 2
106
+
113
107
114
108
@patch ("commitlint.console.success" )
115
109
@patch ("commitlint.console.error" )
0 commit comments