blob: eef217ba75d1a8f5add4d1c9e4693bc8f62ebe32 [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
16# Run test configuration and verify its result.
17# The main configuration file is device.rbc.
18# 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")
Sasha Smundakb2220c22021-05-04 09:01:16 -070024load(":version_defaults.rbc", "version_defaults")
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080025load(":device.rbc", "init")
26
27def assert_eq(expected, actual):
28 if expected != actual:
Sasha Smundakb2220c22021-05-04 09:01:16 -070029 fail("Expected '%s', got '%s'" % (expected, actual))
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080030
Sasha Smundakbe4ebca2021-06-10 12:12:28 -070031# Unit tests for non-trivial runtime functions
32assert_eq("", rblf.mkstrip(" \n \t "))
33assert_eq("a b c", rblf.mkstrip(" a b \n c \t"))
Sasha Smundakb2220c22021-05-04 09:01:16 -070034assert_eq(1, rblf.mkstrip(1))
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080035
Sasha Smundak9afdb1c2021-07-09 15:11:47 -070036assert_eq("b1 b2", rblf.mksubst("a", "b", "a1 a2"))
37assert_eq(["b1", "x2"], rblf.mksubst("a", "b", ["a1", "x2"]))
38
Sasha Smundak3b25eb12021-07-12 15:41:28 -070039assert_eq("ABcdYZ", rblf.mkpatsubst("ab%yz", "AB%YZ", "abcdyz"))
40assert_eq("bcz", rblf.mkpatsubst("a%z", "A%Z", "bcz"))
41assert_eq(["Ay", "Az"], rblf.mkpatsubst("a%", "A%", ["ay", "az"]))
42assert_eq("AcZ bcz", rblf.mkpatsubst("a%z", "A%Z", "acz bcz"))
43assert_eq("Abcd", rblf.mkpatsubst("a%", "A%", "abcd"))
44assert_eq("abcZ", rblf.mkpatsubst("%z", "%Z", "abcz"))
45assert_eq("azx b", rblf.mkpatsubst("az", "AZ", "azx b"))
46assert_eq(["azx", "b"], rblf.mkpatsubst("az", "AZ", ["azx", "b"]))
47assert_eq("ABC", rblf.mkpatsubst("abc", "ABC", "abc"))
Sasha Smundaked1f09c2021-08-17 18:16:07 -070048assert_eq(["%/foo"], rblf.mkpatsubst("%", "\\%/%", ["foo"]))
49assert_eq(["foo/%"], rblf.mkpatsubst("%", "%/%", ["foo"]))
50assert_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 -070051
Sasha Smundakf00e35e2021-08-26 09:42:55 -070052assert_eq([], rblf.filter(["a", "", "b"], "f"))
53assert_eq(["", "b"], rblf.filter_out(["a", "" ], ["a", "", "b"] ))
54
Sasha Smundakb2220c22021-05-04 09:01:16 -070055(globals, config, globals_base) = rblf.product_configuration("test/device", init, version_defaults)
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080056assert_eq(
57 {
58 "PRODUCT_COPY_FILES": [
59 "part_from:part_to",
60 "device_from:device_to",
Sasha Smundak6b795dc2021-08-18 16:32:19 -070061 "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 -070062 "xyz:/etc/xyz",
63 "x.xml:/etc/x.xml",
64 "y.xml:/etc/y.xml",
Sasha Smundak6797bfa2021-08-19 09:49:49 -070065 "from/sub/x:to/x",
66 "from/sub/y:to/y",
Sasha Smundak5c8b09b2020-11-03 23:44:14 -080067 ],
68 "PRODUCT_HOST_PACKAGES": ["host"],
69 "PRODUCT_PACKAGES": [
70 "dev",
71 "inc",
72 "dev_after"
73 ],
74 "PRODUCT_PRODUCT_PROPERTIES": ["part_properties"]
75 },
76 { k:v for k, v in sorted(config.items()) }
77)
Sasha Smundakc1061382021-07-28 12:29:00 -070078
79ns = globals["$SOONG_CONFIG_NAMESPACES"]
80assert_eq(
81 {
82 "NS1": {
83 "v1": "abc",
84 "v2": "def"
85 },
86 "NS2": {
87 "v3": "xyz"
88 }
89 },
90 {k:v for k, v in sorted(ns.items()) }
91)
Sasha Smundakb2220c22021-05-04 09:01:16 -070092
93assert_eq("S", globals["PLATFORM_VERSION"])
94assert_eq(30, globals["PLATFORM_SDK_VERSION"])