-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathtest_cli_new.py
More file actions
53 lines (46 loc) · 2.1 KB
/
test_cli_new.py
File metadata and controls
53 lines (46 loc) · 2.1 KB
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
# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import tests
import tests.mockbackend
import tests.utils
###############################
# 'bugzilla new' mock testing #
###############################
def test_new(run_cli):
# Test a simpler creation
cmd = "bugzilla new --product FOOPROD --component FOOCOMP "
cmd += "--summary 'Hey this is the title!' "
cmd += "--comment 'This is the first comment!\nWith newline & stuff.' "
cmd += "--keywords ADDKEY --groups FOOGROUP,BARGROUP "
cmd += "--blocked 12345,6789 --cc foo@example.com --cc bar@example.com "
cmd += "--dependson dependme --private "
fakebz = tests.mockbackend.make_bz(
bug_create_args="data/mockargs/test_new1.txt",
bug_create_return={"id": 1694158},
bug_get_args=None,
bug_get_return="data/mockreturn/test_getbug.txt")
out = run_cli(cmd, fakebz)
tests.utils.diff_compare(out, "data/clioutput/test_new1.txt")
# Test every option
cmd = "bugzilla new --product FOOPROD --component FOOCOMP "
cmd += "--summary 'Hey this is the title!' "
cmd += "--comment 'This is the first comment!\nWith newline & stuff.' "
cmd += "--keywords ADDKEY --groups FOOGROUP,BARGROUP "
cmd += "--blocked 12345,6789 --cc foo@example.com --cc bar@example.com "
cmd += "--dependson dependme --private "
cmd += "--os linux --arch mips --severity high --priority low "
cmd += "--url https://some.example.com "
cmd += "--version 5.6.7 --alias somealias "
cmd += "--sub-component FOOCOMP "
cmd += "--assignee foo@example.com --qa_contact qa@example.com "
cmd += "--comment-tag FOO "
cmd += "--field foo=bar "
cmd += '--field-json \'{"cf_verified": ["Tested"], "cf_blah": {"1": 2}}\' '
fakebz = tests.mockbackend.make_bz(
bug_create_args="data/mockargs/test_new2.txt",
bug_create_return={"id": 1694158},
bug_get_args=None,
bug_get_return="data/mockreturn/test_getbug.txt",
rhbz=True)
out = run_cli(cmd, fakebz)
tests.utils.diff_compare(out, "data/clioutput/test_new2.txt")