2020-06-05 11:09:27 +02:00
|
|
|
// Copyright 2020 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 rust
|
|
|
|
|
|
|
|
import (
|
2020-08-05 09:29:23 +02:00
|
|
|
"encoding/json"
|
2020-06-05 11:09:27 +02:00
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
2020-09-29 09:53:21 +02:00
|
|
|
"strings"
|
2020-06-05 11:09:27 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
2020-08-05 09:29:23 +02:00
|
|
|
// testProjectJson run the generation of rust-project.json. It returns the raw
|
|
|
|
// content of the generated file.
|
2020-10-07 14:30:03 +02:00
|
|
|
func testProjectJson(t *testing.T, bp string) []byte {
|
|
|
|
tctx := newTestRustCtx(t, bp)
|
|
|
|
tctx.env = map[string]string{"SOONG_GEN_RUST_PROJECT": "1"}
|
|
|
|
tctx.generateConfig()
|
|
|
|
tctx.parse(t)
|
2020-06-05 11:09:27 +02:00
|
|
|
|
|
|
|
// The JSON file is generated via WriteFileToOutputDir. Therefore, it
|
|
|
|
// won't appear in the Output of the TestingSingleton. Manually verify
|
|
|
|
// it exists.
|
2020-08-05 09:29:23 +02:00
|
|
|
content, err := ioutil.ReadFile(filepath.Join(buildDir, rustProjectJsonFileName))
|
2020-06-05 11:09:27 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("rust-project.json has not been generated")
|
|
|
|
}
|
2020-08-05 09:29:23 +02:00
|
|
|
return content
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateJsonCrates validates that content follows the basic structure of
|
|
|
|
// rust-project.json. It returns the crates attribute if the validation
|
|
|
|
// succeeded.
|
|
|
|
// It uses an empty interface instead of relying on a defined structure to
|
|
|
|
// avoid a strong dependency on our implementation.
|
|
|
|
func validateJsonCrates(t *testing.T, rawContent []byte) []interface{} {
|
|
|
|
var content interface{}
|
|
|
|
err := json.Unmarshal(rawContent, &content)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to parse the rust-project.json as JSON: %v", err)
|
|
|
|
}
|
|
|
|
root, ok := content.(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Unexpected JSON format: %v", content)
|
|
|
|
}
|
|
|
|
if _, ok = root["crates"]; !ok {
|
|
|
|
t.Errorf("No crates attribute in rust-project.json: %v", root)
|
|
|
|
}
|
|
|
|
crates, ok := root["crates"].([]interface{})
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Unexpected crates format: %v", root["crates"])
|
|
|
|
}
|
|
|
|
return crates
|
|
|
|
}
|
|
|
|
|
2020-12-03 20:58:32 +01:00
|
|
|
// validateCrate ensures that a crate can be parsed as a map.
|
|
|
|
func validateCrate(t *testing.T, crate interface{}) map[string]interface{} {
|
|
|
|
c, ok := crate.(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Unexpected type for crate: %v", c)
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateDependencies parses the dependencies for a crate. It returns a list
|
|
|
|
// of the dependencies name.
|
|
|
|
func validateDependencies(t *testing.T, crate map[string]interface{}) []string {
|
|
|
|
var dependencies []string
|
|
|
|
deps, ok := crate["deps"].([]interface{})
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Unexpected format for deps: %v", crate["deps"])
|
|
|
|
}
|
|
|
|
for _, dep := range deps {
|
|
|
|
d, ok := dep.(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Unexpected format for dependency: %v", dep)
|
|
|
|
}
|
|
|
|
name, ok := d["name"].(string)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Dependency is missing the name key: %v", d)
|
|
|
|
}
|
|
|
|
dependencies = append(dependencies, name)
|
|
|
|
}
|
|
|
|
return dependencies
|
|
|
|
}
|
|
|
|
|
2020-08-05 09:29:23 +02:00
|
|
|
func TestProjectJsonDep(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
rust_library {
|
|
|
|
name: "liba",
|
|
|
|
srcs: ["a/src/lib.rs"],
|
|
|
|
crate_name: "a"
|
|
|
|
}
|
|
|
|
rust_library {
|
|
|
|
name: "libb",
|
|
|
|
srcs: ["b/src/lib.rs"],
|
|
|
|
crate_name: "b",
|
|
|
|
rlibs: ["liba"],
|
|
|
|
}
|
2020-10-07 14:30:03 +02:00
|
|
|
`
|
|
|
|
jsonContent := testProjectJson(t, bp)
|
2020-08-05 09:29:23 +02:00
|
|
|
validateJsonCrates(t, jsonContent)
|
|
|
|
}
|
|
|
|
|
2020-12-03 20:58:32 +01:00
|
|
|
func TestProjectJsonBinary(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
rust_binary {
|
2020-12-07 13:40:19 +01:00
|
|
|
name: "libz",
|
|
|
|
srcs: ["z/src/lib.rs"],
|
|
|
|
crate_name: "z"
|
2020-12-03 20:58:32 +01:00
|
|
|
}
|
|
|
|
`
|
|
|
|
jsonContent := testProjectJson(t, bp)
|
|
|
|
crates := validateJsonCrates(t, jsonContent)
|
|
|
|
for _, c := range crates {
|
|
|
|
crate := validateCrate(t, c)
|
|
|
|
rootModule, ok := crate["root_module"].(string)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Unexpected type for root_module: %v", crate["root_module"])
|
|
|
|
}
|
2020-12-07 13:40:19 +01:00
|
|
|
if rootModule == "z/src/lib.rs" {
|
2020-12-03 20:58:32 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.Errorf("Entry for binary %q not found: %s", "a", jsonContent)
|
|
|
|
}
|
|
|
|
|
2020-08-05 09:29:23 +02:00
|
|
|
func TestProjectJsonBindGen(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
rust_library {
|
2020-12-07 13:40:19 +01:00
|
|
|
name: "libd",
|
|
|
|
srcs: ["d/src/lib.rs"],
|
2020-09-29 09:53:21 +02:00
|
|
|
rlibs: ["libbindings1"],
|
2020-12-07 13:40:19 +01:00
|
|
|
crate_name: "d"
|
2020-08-05 09:29:23 +02:00
|
|
|
}
|
|
|
|
rust_bindgen {
|
2020-09-29 09:53:21 +02:00
|
|
|
name: "libbindings1",
|
|
|
|
crate_name: "bindings1",
|
|
|
|
source_stem: "bindings1",
|
2020-08-05 09:29:23 +02:00
|
|
|
host_supported: true,
|
|
|
|
wrapper_src: "src/any.h",
|
|
|
|
}
|
2020-09-29 09:53:21 +02:00
|
|
|
rust_library_host {
|
2020-12-07 13:40:19 +01:00
|
|
|
name: "libe",
|
|
|
|
srcs: ["e/src/lib.rs"],
|
2020-09-29 09:53:21 +02:00
|
|
|
rustlibs: ["libbindings2"],
|
2020-12-07 13:40:19 +01:00
|
|
|
crate_name: "e"
|
2020-09-29 09:53:21 +02:00
|
|
|
}
|
|
|
|
rust_bindgen_host {
|
|
|
|
name: "libbindings2",
|
|
|
|
crate_name: "bindings2",
|
|
|
|
source_stem: "bindings2",
|
|
|
|
wrapper_src: "src/any.h",
|
|
|
|
}
|
2020-10-07 14:30:03 +02:00
|
|
|
`
|
|
|
|
jsonContent := testProjectJson(t, bp)
|
2020-09-29 09:53:21 +02:00
|
|
|
crates := validateJsonCrates(t, jsonContent)
|
|
|
|
for _, c := range crates {
|
2020-12-03 20:58:32 +01:00
|
|
|
crate := validateCrate(t, c)
|
2020-09-29 09:53:21 +02:00
|
|
|
rootModule, ok := crate["root_module"].(string)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Unexpected type for root_module: %v", crate["root_module"])
|
|
|
|
}
|
|
|
|
if strings.Contains(rootModule, "libbindings1") && !strings.Contains(rootModule, "android_arm64") {
|
2020-09-30 13:33:41 +02:00
|
|
|
t.Errorf("The source path for libbindings1 does not contain android_arm64, got %v", rootModule)
|
2020-09-29 09:53:21 +02:00
|
|
|
}
|
2020-09-30 13:33:41 +02:00
|
|
|
if strings.Contains(rootModule, "libbindings2") && !strings.Contains(rootModule, android.BuildOs.String()) {
|
|
|
|
t.Errorf("The source path for libbindings2 does not contain the BuildOs, got %v; want %v",
|
|
|
|
rootModule, android.BuildOs.String())
|
2020-09-29 09:53:21 +02:00
|
|
|
}
|
2020-11-25 16:09:32 +01:00
|
|
|
// Check that libbindings1 does not depend on itself.
|
|
|
|
if strings.Contains(rootModule, "libbindings1") {
|
2020-12-03 20:58:32 +01:00
|
|
|
for _, depName := range validateDependencies(t, crate) {
|
|
|
|
if depName == "bindings1" {
|
2020-11-25 16:09:32 +01:00
|
|
|
t.Errorf("libbindings1 depends on itself")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-07 13:40:19 +01:00
|
|
|
// Check that liba depends on libbindings1
|
|
|
|
if strings.Contains(rootModule, "d/src/lib.rs") {
|
|
|
|
found := false
|
|
|
|
for _, depName := range validateDependencies(t, crate) {
|
|
|
|
if depName == "bindings1" {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Errorf("liba does not depend on libbindings1: %v", crate)
|
|
|
|
}
|
|
|
|
}
|
2020-09-29 09:53:21 +02:00
|
|
|
}
|
2020-06-05 11:09:27 +02:00
|
|
|
}
|
2020-08-05 14:27:32 +02:00
|
|
|
|
|
|
|
func TestProjectJsonMultiVersion(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
rust_library {
|
|
|
|
name: "liba1",
|
|
|
|
srcs: ["a1/src/lib.rs"],
|
|
|
|
crate_name: "a"
|
|
|
|
}
|
|
|
|
rust_library {
|
|
|
|
name: "liba2",
|
|
|
|
srcs: ["a2/src/lib.rs"],
|
|
|
|
crate_name: "a",
|
|
|
|
}
|
|
|
|
rust_library {
|
|
|
|
name: "libb",
|
|
|
|
srcs: ["b/src/lib.rs"],
|
|
|
|
crate_name: "b",
|
|
|
|
rustlibs: ["liba1", "liba2"],
|
|
|
|
}
|
2020-10-07 14:30:03 +02:00
|
|
|
`
|
|
|
|
jsonContent := testProjectJson(t, bp)
|
2020-08-05 14:27:32 +02:00
|
|
|
crates := validateJsonCrates(t, jsonContent)
|
2020-12-03 20:58:32 +01:00
|
|
|
for _, c := range crates {
|
|
|
|
crate := validateCrate(t, c)
|
|
|
|
rootModule, ok := crate["root_module"].(string)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Unexpected type for root_module: %v", crate["root_module"])
|
|
|
|
}
|
|
|
|
// Make sure that b has 2 different dependencies.
|
|
|
|
if rootModule == "b/src/lib.rs" {
|
2020-08-05 14:27:32 +02:00
|
|
|
aCount := 0
|
2020-12-03 20:58:32 +01:00
|
|
|
deps := validateDependencies(t, crate)
|
|
|
|
for _, depName := range deps {
|
|
|
|
if depName == "a" {
|
2020-08-05 14:27:32 +02:00
|
|
|
aCount++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if aCount != 2 {
|
|
|
|
t.Errorf("Unexpected number of liba dependencies want %v, got %v: %v", 2, aCount, deps)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.Errorf("libb crate has not been found: %v", crates)
|
|
|
|
}
|