2021-07-28 12:21:31 +02:00
|
|
|
// Copyright 2021 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package bp2build
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/java"
|
|
|
|
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-06-21 21:28:33 +02:00
|
|
|
func runAndroidAppCertificateTestCase(t *testing.T, tc Bp2buildTestCase) {
|
2021-07-28 12:21:31 +02:00
|
|
|
t.Helper()
|
2022-06-21 21:28:33 +02:00
|
|
|
RunBp2BuildTestCase(t, registerAndroidAppCertificateModuleTypes, tc)
|
2021-07-28 12:21:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func registerAndroidAppCertificateModuleTypes(ctx android.RegistrationContext) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAndroidAppCertificateSimple(t *testing.T) {
|
2022-06-21 21:28:33 +02:00
|
|
|
runAndroidAppCertificateTestCase(t, Bp2buildTestCase{
|
|
|
|
Description: "Android app certificate - simple example",
|
|
|
|
ModuleTypeUnderTest: "android_app_certificate",
|
|
|
|
ModuleTypeUnderTestFactory: java.AndroidAppCertificateFactory,
|
|
|
|
Filesystem: map[string]string{},
|
|
|
|
Blueprint: `
|
2021-07-28 12:21:31 +02:00
|
|
|
android_app_certificate {
|
|
|
|
name: "com.android.apogee.cert",
|
|
|
|
certificate: "chamber_of_secrets_dir",
|
|
|
|
}
|
|
|
|
`,
|
2022-06-21 21:28:33 +02:00
|
|
|
ExpectedBazelTargets: []string{
|
|
|
|
MakeBazelTargetNoRestrictions("android_app_certificate", "com.android.apogee.cert", AttrNameToString{
|
2021-11-08 18:56:31 +01:00
|
|
|
"certificate": `"chamber_of_secrets_dir"`,
|
|
|
|
}),
|
|
|
|
}})
|
2021-07-28 12:21:31 +02:00
|
|
|
}
|