forked from bazelbuild/rules_swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoverage_settings_tests.bzl
77 lines (68 loc) · 2.31 KB
/
coverage_settings_tests.bzl
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
"""Tests for coverage-related command line flags under various configs."""
load(
"//test/rules:action_command_line_test.bzl",
"make_action_command_line_test_rule",
)
default_coverage_test = make_action_command_line_test_rule(
config_settings = {
"//command_line_option:collect_code_coverage": "true",
},
)
disabled_coverage_prefix_map_test = make_action_command_line_test_rule(
config_settings = {
"//command_line_option:collect_code_coverage": "true",
"//command_line_option:features": [
"-swift.coverage_prefix_map",
],
},
)
coverage_xcode_prefix_map_test = make_action_command_line_test_rule(
config_settings = {
"//command_line_option:collect_code_coverage": "true",
"//command_line_option:features": [
"swift.remap_xcode_path",
],
},
)
def coverage_settings_test_suite(name, tags = []):
"""Test suite for coverage options.
Args:
name: The base name to be used in things created by this macro.
tags: Additional tags to apply to each test.
"""
all_tags = [name] + tags
default_coverage_test(
name = "{}_default_coverage".format(name),
tags = all_tags,
expected_argv = [
"-profile-generate",
"-profile-coverage-mapping",
"-Xwrapped-swift=-coverage-prefix-pwd-is-dot",
],
mnemonic = "SwiftCompile",
target_under_test = "//test/fixtures/debug_settings:simple",
)
disabled_coverage_prefix_map_test(
name = "{}_prefix_map".format(name),
tags = all_tags,
expected_argv = [
"-profile-generate",
"-profile-coverage-mapping",
],
not_expected_argv = [
"-Xwrapped-swift=-coverage-prefix-pwd-is-dot",
],
mnemonic = "SwiftCompile",
target_under_test = "//test/fixtures/debug_settings:simple",
)
coverage_xcode_prefix_map_test(
name = "{}_xcode_prefix_map".format(name),
tags = all_tags,
expected_argv = [
"-coverage-prefix-map",
"__BAZEL_XCODE_DEVELOPER_DIR__=/PLACEHOLDER_DEVELOPER_DIR",
],
target_compatible_with = ["@platforms//os:macos"],
mnemonic = "SwiftCompile",
target_under_test = "//test/fixtures/debug_settings:simple",
)