blob: a9b16734d5fc5eba1139a9de04a94c03a23f59fe [file] [log] [blame]
Sasha Smundak5c8b09b2020-11-03 23:44:14 -08001# Copyright 2021 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15
Cole Faust3be5b722021-11-29 14:56:09 -080016# Run test product configuration and verify its result.
17# The main configuration file is product.rbc.
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080018# It inherits part1.rbc and also includes include1.rbc
19# TODO(asmundak): more tests are needed to verify that:
20# * multi-level inheritance works as expected
21# * all runtime functions (wildcard, regex, etc.) work
22
23load("//build/make/core:product_config.rbc", "rblf")
Cole Faustf1f49bb2021-12-01 13:49:12 -080024load(":input_variables.rbc", input_variables_init = "init")
Cole Faust3be5b722021-11-29 14:56:09 -080025load(":product.rbc", "init")
26load(":board.rbc", board_init = "init")
27load(":board_input_vars.rbc", board_input_vars_init = "init")
Cole Faust31fce2f2022-03-22 15:16:06 -070028load("//build/make/tests/single_value_inheritance:test.rbc", test_single_value_inheritance = "test")
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080029
30def assert_eq(expected, actual):
31 if expected != actual:
Sasha Smundakb2220c22021-05-04 09:01:16 -070032 fail("Expected '%s', got '%s'" % (expected, actual))
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080033
Sasha Smundakbe4ebca2021-06-10 12:12:28 -070034# Unit tests for non-trivial runtime functions
35assert_eq("", rblf.mkstrip(" \n \t "))
36assert_eq("a b c", rblf.mkstrip(" a b \n c \t"))
Sasha Smundakb2220c22021-05-04 09:01:16 -070037assert_eq(1, rblf.mkstrip(1))
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080038
Sasha Smundak9afdb1c2021-07-09 15:11:47 -070039assert_eq("b1 b2", rblf.mksubst("a", "b", "a1 a2"))
40assert_eq(["b1", "x2"], rblf.mksubst("a", "b", ["a1", "x2"]))
41
Sasha Smundak3b25eb12021-07-12 15:41:28 -070042assert_eq("ABcdYZ", rblf.mkpatsubst("ab%yz", "AB%YZ", "abcdyz"))
43assert_eq("bcz", rblf.mkpatsubst("a%z", "A%Z", "bcz"))
44assert_eq(["Ay", "Az"], rblf.mkpatsubst("a%", "A%", ["ay", "az"]))
45assert_eq("AcZ bcz", rblf.mkpatsubst("a%z", "A%Z", "acz bcz"))
46assert_eq("Abcd", rblf.mkpatsubst("a%", "A%", "abcd"))
47assert_eq("abcZ", rblf.mkpatsubst("%z", "%Z", "abcz"))
48assert_eq("azx b", rblf.mkpatsubst("az", "AZ", "azx b"))
49assert_eq(["azx", "b"], rblf.mkpatsubst("az", "AZ", ["azx", "b"]))
50assert_eq("ABC", rblf.mkpatsubst("abc", "ABC", "abc"))
Sasha Smundaked1f09c2021-08-17 18:16:07 -070051assert_eq(["%/foo"], rblf.mkpatsubst("%", "\\%/%", ["foo"]))
52assert_eq(["foo/%"], rblf.mkpatsubst("%", "%/%", ["foo"]))
53assert_eq(["from/a:to/a", "from/b:to/b"], rblf.product_copy_files_by_pattern("from/%", "to/%", "a b"))
Sasha Smundak3b25eb12021-07-12 15:41:28 -070054
Sasha Smundakf00e35e2021-08-26 09:42:55 -070055assert_eq([], rblf.filter(["a", "", "b"], "f"))
56assert_eq(["", "b"], rblf.filter_out(["a", "" ], ["a", "", "b"] ))
57
Cole Faust0cc94d32021-11-15 14:26:14 -080058assert_eq("foo.c no_folder", rblf.notdir(["src/foo.c", "no_folder"]))
59assert_eq("foo.c no_folder", rblf.notdir("src/foo.c no_folder"))
60assert_eq("", rblf.notdir("/"))
61assert_eq("", rblf.notdir(""))
62
Cole Faustfdff6b12021-12-08 11:07:17 -080063assert_eq(
64 ["build/make/tests/board.rbc", "build/make/tests/board_input_vars.rbc"],
65 rblf.expand_wildcard("build/make/tests/board*.rbc")
66)
67assert_eq(
68 ["build/make/tests/run.rbc", "build/make/tests/product.rbc"],
69 rblf.expand_wildcard("build/make/tests/run.rbc build/make/tests/product.rbc")
70)
71assert_eq(
72 ["build/make/tests/run.rbc"],
73 rblf.expand_wildcard("build/make/tests/run.rbc build/make/tests/nonexistent.rbc")
74)
75
Cole Faustf1f49bb2021-12-01 13:49:12 -080076(globals, config, globals_base) = rblf.product_configuration("test/device", init, input_variables_init)
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080077assert_eq(
78 {
79 "PRODUCT_COPY_FILES": [
80 "part_from:part_to",
81 "device_from:device_to",
Sasha Smundak6b795dc2021-08-18 16:32:19 -070082 "device/google/redfin/audio/audio_platform_info_noextcodec_snd.xml:||VENDOR-PATH-PH||/etc/audio/audio_platform_info_noextcodec_snd.xml",
Sasha Smundaka93e3d92021-07-28 14:34:33 -070083 "xyz:/etc/xyz",
84 "x.xml:/etc/x.xml",
85 "y.xml:/etc/y.xml",
Sasha Smundak6797bfa2021-08-19 09:49:49 -070086 "from/sub/x:to/x",
87 "from/sub/y:to/y",
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080088 ],
89 "PRODUCT_HOST_PACKAGES": ["host"],
90 "PRODUCT_PACKAGES": [
91 "dev",
92 "inc",
Sasha Smundak3370ad52021-08-26 16:59:55 -070093 "dev_after",
94 "board1_in",
95 "board1_is",
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080096 ],
97 "PRODUCT_PRODUCT_PROPERTIES": ["part_properties"]
98 },
99 { k:v for k, v in sorted(config.items()) }
100)
Sasha Smundakc1061382021-07-28 12:29:00 -0700101
102ns = globals["$SOONG_CONFIG_NAMESPACES"]
103assert_eq(
104 {
105 "NS1": {
Sasha Smundakdc154162021-09-17 15:27:37 -0700106 "v1": "abc abc_part1",
Sasha Smundakc1061382021-07-28 12:29:00 -0700107 "v2": "def"
108 },
109 "NS2": {
110 "v3": "xyz"
111 }
112 },
113 {k:v for k, v in sorted(ns.items()) }
114)
Sasha Smundakb2220c22021-05-04 09:01:16 -0700115
Cole Faustf1f49bb2021-12-01 13:49:12 -0800116assert_eq("Tiramisu", globals["PLATFORM_VERSION"])
117assert_eq("31", globals["PLATFORM_SDK_VERSION"])
Cole Faust70a886c2021-11-08 12:12:45 -0800118
119assert_eq("xyz", rblf.soong_config_get(globals, "NS2", "v3"))
120assert_eq(None, rblf.soong_config_get(globals, "NS2", "nonexistant_var"))
Sasha Smundak91fc7342021-11-18 11:20:34 -0800121
122goals = globals["$dist_for_goals"]
123assert_eq(
124 {
125 "goal": [("dir1/file1", "out1"), ("dir1/file2", "out2"), ("dir2/file2", "file2")]
126 },
127 { k:v for k,v in sorted(goals.items()) }
128)
Cole Faust3be5b722021-11-29 14:56:09 -0800129
130(board_globals, board_config, board_globals_base) = rblf.board_configuration(board_init, board_input_vars_init)
131assert_eq({"A_LIST_VARIABLE": ["foo", "bar"]}, board_globals)
132assert_eq({"A_LIST_VARIABLE": ["foo"]}, board_globals_base)
Cole Faust31fce2f2022-03-22 15:16:06 -0700133
134test_single_value_inheritance()