2017-11-16 23:33:08 +01:00
|
|
|
// Copyright 2017 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 cc
|
|
|
|
|
|
|
|
import (
|
2019-06-05 02:10:41 +02:00
|
|
|
"path/filepath"
|
2019-07-07 09:27:47 +02:00
|
|
|
"strings"
|
2017-11-16 23:33:08 +01:00
|
|
|
"testing"
|
2020-11-12 17:29:30 +01:00
|
|
|
|
|
|
|
"android/soong/android"
|
2017-11-16 23:33:08 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGen(t *testing.T) {
|
|
|
|
t.Run("simple", func(t *testing.T) {
|
|
|
|
ctx := testCc(t, `
|
|
|
|
cc_library_shared {
|
|
|
|
name: "libfoo",
|
|
|
|
srcs: [
|
|
|
|
"foo.c",
|
|
|
|
"b.aidl",
|
|
|
|
],
|
|
|
|
}`)
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
aidl := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_shared").Rule("aidl")
|
|
|
|
libfoo := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_shared").Module().(*Module)
|
2017-11-16 23:33:08 +01:00
|
|
|
|
2019-11-04 18:37:55 +01:00
|
|
|
if !inList("-I"+filepath.Dir(aidl.Output.String()), libfoo.flags.Local.CommonFlags) {
|
2017-11-16 23:33:08 +01:00
|
|
|
t.Errorf("missing aidl includes in global flags")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("filegroup", func(t *testing.T) {
|
|
|
|
ctx := testCc(t, `
|
|
|
|
filegroup {
|
|
|
|
name: "fg",
|
2019-07-07 09:27:47 +02:00
|
|
|
srcs: ["sub/c.aidl"],
|
|
|
|
path: "sub",
|
2017-11-16 23:33:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library_shared {
|
|
|
|
name: "libfoo",
|
|
|
|
srcs: [
|
|
|
|
"foo.c",
|
|
|
|
":fg",
|
|
|
|
],
|
|
|
|
}`)
|
|
|
|
|
2019-11-21 01:39:12 +01:00
|
|
|
aidl := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_shared").Rule("aidl")
|
2020-11-12 17:29:30 +01:00
|
|
|
aidlManifest := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_shared").Output("aidl.sbox.textproto")
|
2019-11-21 01:39:12 +01:00
|
|
|
libfoo := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_shared").Module().(*Module)
|
2017-11-16 23:33:08 +01:00
|
|
|
|
2019-11-04 18:37:55 +01:00
|
|
|
if !inList("-I"+filepath.Dir(aidl.Output.String()), libfoo.flags.Local.CommonFlags) {
|
2017-11-16 23:33:08 +01:00
|
|
|
t.Errorf("missing aidl includes in global flags")
|
|
|
|
}
|
2019-07-07 09:27:47 +02:00
|
|
|
|
2020-11-12 17:29:30 +01:00
|
|
|
aidlCommand := android.RuleBuilderSboxProtoForTests(t, aidlManifest).Commands[0].GetCommand()
|
2019-07-07 09:27:47 +02:00
|
|
|
if !strings.Contains(aidlCommand, "-Isub") {
|
|
|
|
t.Errorf("aidl command for c.aidl should contain \"-Isub\", but was %q", aidlCommand)
|
|
|
|
}
|
|
|
|
|
2017-11-16 23:33:08 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
}
|