forked from bloomberg/xcdiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manual_test_commands.json
72 lines (72 loc) · 2.76 KB
/
manual_test_commands.json
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
[
{
"alias": "list",
"command": ["-l"],
"comment": "List comparators"
},
{
"alias": "unknown",
"command": ["-unknown"],
"comment": "Unknown option"
},
{
"alias": "non_existing_tag",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-g", "targets, unsupported, unsupported_too"],
"comment": "Non-existing tags"
},
{
"alias": "non_existing_target",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-t", "NON_EXISTING"],
"comment": "Non-existing target"
},
{
"alias": "differences_only",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-d"],
"comment": "Differences only"
},
{
"alias": "p1_does_not_exist",
"command": ["-p1", "/not/existing/project1.xcodeproj", "-p2", "{ios_project_2}"],
"comment": "Project one does not exist"
},
{
"alias": "p2_does_not_exist",
"command": ["-p1", "{ios_project_1}", "-p2", "/not/existing/project2.xcodeproj"],
"comment": "Project two does not exist"
},
{
"alias": "p1_p2_do_not_exist",
"command": ["-p1", "/not/existing/project1.xcodeproj", "-p2", "/not/existing/project2.xcodeproj"],
"comment": "Project one and two do not exist"
},
{
"alias": "target_only_in_second_g_targets",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-g", "targets", "-t", "NewFramework", "-v"],
"comment": "Target is only in second project when comparing targets"
},
{
"alias": "target_only_in_second_g_headers",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-g", "headers", "-t", "NewFramework", "-v"],
"comment": "Target is only in second project when comparing headers"
},
{
"alias": "html_format",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-f", "html"],
"comment": "Multiple differences, valid HTML format expected"
},
{
"alias": "html_format_verbose",
"command": ["-p1", "{ios_project_1}", "-p2", "{ios_project_2}", "-f", "html", "-v"],
"comment": "Multiple differences, valid HTML format expected"
},
{
"alias": "swift_packages_verbose",
"command": ["-p1", "{ios_project_with_swift_packages_1}", "-p2", "{ios_project_with_swift_packages_2}", "-v"],
"comment": "Swift Package differences are flagged"
},
{
"alias": "test_target_attributes",
"command": ["-p1", "{ios_project_with_ui_tests_1}", "-p2", "{ios_project_with_ui_tests_2}", "-g", "attributes", "-v"],
"comment": "Target attributes that reference targets (e.g. TestTargetID) are resolved correctly"
}
]