Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Android/build/build/soong/aidl_library/   (Android Betriebssystem Version 17©)  Datei vom 26.5.2026 mit Größe 3 kB image not shown  

Quelle  aidl_library_test.go   Sprache: unbekannt

 
Spracherkennung für: .go vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

// Copyright 2023 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 aidl_library

import (
 "testing"

 "android/soong/android"
)

func TestAidlLibrary(t *testing.T) {
 t.Parallel()
 ctx := android.GroupFixturePreparers(
  PrepareForTestWithAidlLibrary,
  android.MockFS{
   "package_bar/Android.bp": []byte(`
   aidl_library {
     name: "bar",
     srcs: ["x/y/Bar.aidl"],
     strip_import_prefix: "x",
    }
   `),
  }.AddToFixture(),
  android.MockFS{
   "package_foo/Android.bp": []byte(`
   aidl_library {
     name: "foo",
     srcs: ["a/b/Foo.aidl"],
     hdrs: ["a/Header.aidl"],
     strip_import_prefix: "a",
     deps: ["bar"],
    }
   `),
  }.AddToFixture(),
 ).RunTest(t).TestContext

 foo := ctx.ModuleForTests(t, "foo", "").Module().(*AidlLibrary)
 actualInfo, _ := android.OtherModuleProvider(ctx, foo, AidlLibraryProvider)

 android.AssertArrayString(
  t,
  "aidl include dirs",
  []string{"package_foo/a", "package_bar/x"},
  android.Paths(actualInfo.IncludeDirs.ToList()).Strings(),
 )

 android.AssertPathsRelativeToTopEquals(
  t,
  "aidl srcs paths",
  []string{"package_foo/a/b/Foo.aidl"},
  actualInfo.Srcs,
 )

 android.AssertPathsRelativeToTopEquals(
  t,
  "aidl hdrs paths",
  []string{"package_foo/a/Header.aidl"},
  actualInfo.Hdrs.ToList(),
 )
}

func TestAidlLibraryWithoutStripImportPrefix(t *testing.T) {
 t.Parallel()
 ctx := android.GroupFixturePreparers(
  PrepareForTestWithAidlLibrary,
  android.MockFS{
   "package_bar/Android.bp": []byte(`
   aidl_library {
     name: "bar",
     srcs: ["x/y/Bar.aidl"],
     hdrs: ["BarHeader.aidl"],
    }
   `),
  }.AddToFixture(),
  android.MockFS{
   "package_foo/Android.bp": []byte(`
   aidl_library {
     name: "foo",
     srcs: ["a/b/Foo.aidl"],
     deps: ["bar"],
    }
   `),
  }.AddToFixture(),
 ).RunTest(t).TestContext

 foo := ctx.ModuleForTests(t, "foo", "").Module().(*AidlLibrary)
 actualInfo, _ := android.OtherModuleProvider(ctx, foo, AidlLibraryProvider)

 android.AssertArrayString(
  t,
  "aidl include dirs",
  []string{"package_foo", "package_bar"},
  android.Paths(actualInfo.IncludeDirs.ToList()).Strings(),
 )

 android.AssertPathsRelativeToTopEquals(
  t,
  "aidl srcs paths",
  []string{"package_foo/a/b/Foo.aidl"},
  actualInfo.Srcs,
 )

 android.AssertPathsRelativeToTopEquals(
  t,
  "aidl hdrs paths",
  []string{"package_bar/BarHeader.aidl"},
  actualInfo.Hdrs.ToList(),
 )
}

func TestAidlLibraryWithNoSrcsHdrsDeps(t *testing.T) {
 t.Parallel()
 android.GroupFixturePreparers(
  PrepareForTestWithAidlLibrary,
  android.MockFS{
   "package_bar/Android.bp": []byte(`
   aidl_library {
     name: "bar",
    }
   `),
  }.AddToFixture(),
 ).
  ExtendWithErrorHandler(android.FixtureExpectsOneErrorPattern("at least srcs or hdrs prop must be non-empty")).
  RunTest(t)
}

[Dauer der Verarbeitung: 0.22 Sekunden, vorverarbeitet 2026-06-28]