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", |
Zhi Dou | 8a35a6f | 2023-07-19 18:04:24 +0000 | [diff] [blame] | 29 | srcs: [ |
| 30 | "foo.aconfig", |
| 31 | "bar.aconfig", |
| 32 | ], |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 33 | } |
| 34 | ` |
| 35 | result := runTest(t, android.FixtureExpectsNoErrors, bp) |
| 36 | |
Joe Onorato | 981c926 | 2023-06-21 15:16:23 -0700 | [diff] [blame] | 37 | module := result.ModuleForTests("module_name", "").Module().(*DeclarationsModule) |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 38 | |
| 39 | // Check that the provider has the right contents |
Joe Onorato | 981c926 | 2023-06-21 15:16:23 -0700 | [diff] [blame] | 40 | depData := result.ModuleProvider(module, declarationsProviderKey).(declarationsProviderData) |
Joe Onorato | 81b25ed | 2023-06-21 13:49:37 -0700 | [diff] [blame] | 41 | android.AssertStringEquals(t, "package", depData.Package, "com.example.package") |
| 42 | if !strings.HasSuffix(depData.IntermediatePath.String(), "/intermediate.pb") { |
| 43 | t.Errorf("Missing intermediates path in provider: %s", depData.IntermediatePath.String()) |
Joe Onorato | 175073c | 2023-06-01 14:42:59 -0700 | [diff] [blame] | 44 | } |
| 45 | } |