blob: c2adc587b09d6b46a5b75d70926c5858fa1fea68 [file]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config.gni")
import("//build/fidl/fidl.gni")
import("//build/package.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
group("integration_tests") {
testonly = true
deps = [
":appmgr_integration_tests",
"component_events",
"components",
"fidl",
"inspect",
"lifecycle",
"logs",
"mock_runner",
"outdir",
"policy",
"sandbox",
"util",
]
}
executable("full_tests") {
testonly = true
output_name = "appmgr_full_integration_tests"
sources = [ "full_integration_test.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.power.statecontrol",
"//sdk/fidl/fuchsia.logger",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//sdk/lib/sys/cpp/testing:integration",
"//sdk/lib/syslog/cpp",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
]
}
executable("realm_tests") {
testonly = true
output_name = "appmgr_realm_integration_tests"
sources = [
"mock_runner_registry.cc",
"mock_runner_registry.h",
"realm_integration_test.cc",
"realm_runner_integration_test.cc",
]
deps = [
"fidl:test.component.mockrunner",
"fidl/fuchsia.testing.appmgr",
"mock_runner:appmgr_mock_runner",
"util:data_file_reader_writer",
"util:data_file_reader_writer_util",
"//garnet//examples/fidl/echo_server_cpp",
"//garnet//examples/fidl/services:echo",
"//garnet/public/lib/gtest",
"//sdk/fidl/fuchsia.sys",
"//sdk/fidl/fuchsia.sys.internal",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//src/sys/appmgr:lib",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
# TODO(fxbug.dev/46530): Fix the leaks and remove this.
deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ]
}
executable("hub_tests") {
testonly = true
output_name = "appmgr_hub_integration_tests"
sources = [ "hub_integration_test.cc" ]
deps = [
"//garnet/bin/glob",
"//garnet/bin/sysmgr:lib",
"//garnet/examples/fidl/services:echo",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//sdk/lib/sys/inspect/cpp",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
"//zircon/public/lib/async-cpp",
]
# TODO(fxbug.dev/46530): Fix the leaks and remove this.
deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ]
}
executable("echo_server") {
testonly = true
output_name = "echo_server_for_test"
sources = [
"echo_server.cc",
"echo_server.h",
]
deps = [
"//garnet/examples/fidl/services:echo",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
executable("crashing_process") {
testonly = true
output_name = "crashing_process"
sources = [ "crashing_process.cc" ]
}
config_data("sysmgr_config") {
for_pkg = "appmgr_integration_tests"
sources = [ rebase_path("//src/sys/sysmgr/config/services.config") ]
}
executable("crashing_component") {
testonly = true
output_name = "crashing_component"
sources = [ "crashing_component.cc" ]
deps = [
"fidl/fuchsia.testing.appmgr",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
executable("failing_appmgr") {
testonly = true
output_name = "failing_appmgr"
sources = [ "failing_appmgr.cc" ]
deps = [
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//sdk/lib/syslog/cpp",
"//src/sys/appmgr:appmgr_for_test",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
test_package("appmgr_integration_tests") {
deps = [
":crashing_component",
":crashing_process",
":echo_server",
":failing_appmgr",
":full_tests",
":hub_tests",
":realm_tests",
":sysmgr_config",
"//src/sys/appmgr/integration_tests/inspect:bin-vmo",
]
binaries = [
{
name = "inspect_vmo_test_app"
},
{
name = "echo_server_for_test"
},
{
name = "crashing_process"
},
{
name = "crashing_component"
},
{
name = "failing_appmgr"
},
]
meta = [
{
path = rebase_path("inspect/meta/inspect_vmo_test_app.cmx")
dest = "appmgr_integration_tests_inspect_test_app.cmx"
},
{
path = rebase_path("meta/echo_server.cmx")
dest = "echo_server.cmx"
},
{
path = rebase_path("meta/crashing_component.cmx")
dest = "crashing_component.cmx"
},
{
path = rebase_path("meta/failing_appmgr.cmx")
dest = "failing_appmgr.cmx"
},
]
tests = [
{
name = "appmgr_full_integration_tests"
environments = basic_envs
},
{
name = "appmgr_realm_integration_tests"
environments = basic_envs
},
{
name = "appmgr_hub_integration_tests"
environments = basic_envs
},
]
}