blob: 01045134c2686c657d8beec30f0162a0b116d982 [file] [log] [blame]
Rupert Shuttleworth5c4881c2021-07-28 06:21:31 -04001// Copyright 2021 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
15package bp2build
16
17import (
18 "android/soong/android"
19 "android/soong/java"
20
21 "testing"
22)
23
Sam Delmerico3177a6e2022-06-21 19:28:33 +000024func runAndroidAppCertificateTestCase(t *testing.T, tc Bp2buildTestCase) {
Rupert Shuttleworth5c4881c2021-07-28 06:21:31 -040025 t.Helper()
Sam Delmerico3177a6e2022-06-21 19:28:33 +000026 RunBp2BuildTestCase(t, registerAndroidAppCertificateModuleTypes, tc)
Rupert Shuttleworth5c4881c2021-07-28 06:21:31 -040027}
28
29func registerAndroidAppCertificateModuleTypes(ctx android.RegistrationContext) {
30}
31
32func TestAndroidAppCertificateSimple(t *testing.T) {
Sam Delmerico3177a6e2022-06-21 19:28:33 +000033 runAndroidAppCertificateTestCase(t, Bp2buildTestCase{
34 Description: "Android app certificate - simple example",
35 ModuleTypeUnderTest: "android_app_certificate",
36 ModuleTypeUnderTestFactory: java.AndroidAppCertificateFactory,
37 Filesystem: map[string]string{},
38 Blueprint: `
Rupert Shuttleworth5c4881c2021-07-28 06:21:31 -040039android_app_certificate {
40 name: "com.android.apogee.cert",
41 certificate: "chamber_of_secrets_dir",
42}
43`,
Sam Delmerico3177a6e2022-06-21 19:28:33 +000044 ExpectedBazelTargets: []string{
45 MakeBazelTargetNoRestrictions("android_app_certificate", "com.android.apogee.cert", AttrNameToString{
Liz Kammer78cfdaa2021-11-08 12:56:31 -050046 "certificate": `"chamber_of_secrets_dir"`,
47 }),
48 }})
Rupert Shuttleworth5c4881c2021-07-28 06:21:31 -040049}