Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 1 | // Copyright 2018 Google Inc. All rights reserved. |
| 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 | // http://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 | |
Joe Onorato | 981c926 | 2023-06-21 15:16:23 -0700 | [diff] [blame] | 15 | package aconfig |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 16 | |
| 17 | import ( |
| 18 | "strings" |
| 19 | "testing" |
| 20 | |
| 21 | "android/soong/android" |
| 22 | ) |
| 23 | |
Joe Onorato | 981c926 | 2023-06-21 15:16:23 -0700 | [diff] [blame] | 24 | func TestAconfigDeclarations(t *testing.T) { |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 25 | bp := ` |
Joe Onorato | 981c926 | 2023-06-21 15:16:23 -0700 | [diff] [blame] | 26 | aconfig_declarations { |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 27 | name: "module_name", |
Joe Onorato | 81b25ed | 2023-06-21 13:49:37 -0700 | [diff] [blame] | 28 | package: "com.example.package", |
Yu Liu | eae7b36 | 2023-11-16 17:05:47 -0800 | [diff] [blame^] | 29 | container: "com.android.foo", |
Zhi Dou | 8a35a6f | 2023-07-19 18:04:24 +0000 | [diff] [blame] | 30 | srcs: [ |
| 31 | "foo.aconfig", |
| 32 | "bar.aconfig", |
| 33 | ], |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 34 | } |
| 35 | ` |
| 36 | result := runTest(t, android.FixtureExpectsNoErrors, bp) |
| 37 | |
Joe Onorato | 981c926 | 2023-06-21 15:16:23 -0700 | [diff] [blame] | 38 | module := result.ModuleForTests("module_name", "").Module().(*DeclarationsModule) |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 39 | |
| 40 | // Check that the provider has the right contents |
Yu Liu | eae7b36 | 2023-11-16 17:05:47 -0800 | [diff] [blame^] | 41 | depData := result.ModuleProvider(module, DeclarationsProviderKey).(DeclarationsProviderData) |
Joe Onorato | 81b25ed | 2023-06-21 13:49:37 -0700 | [diff] [blame] | 42 | android.AssertStringEquals(t, "package", depData.Package, "com.example.package") |
Yu Liu | eae7b36 | 2023-11-16 17:05:47 -0800 | [diff] [blame^] | 43 | android.AssertStringEquals(t, "container", depData.Container, "com.android.foo") |
Joe Onorato | 81b25ed | 2023-06-21 13:49:37 -0700 | [diff] [blame] | 44 | if !strings.HasSuffix(depData.IntermediatePath.String(), "/intermediate.pb") { |
| 45 | t.Errorf("Missing intermediates path in provider: %s", depData.IntermediatePath.String()) |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 46 | } |
| 47 | } |