test_manager_lib/
constants.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use lazy_static::lazy_static;
6use std::collections::HashMap;
7
8pub const TEST_ROOT_REALM_NAME: &'static str = "test_root";
9pub const TEST_ROOT_COLLECTION: &'static str = "test";
10pub const WRAPPER_REALM_NAME: &'static str = "test_wrapper";
11pub const HERMETIC_RESOLVER_REALM_NAME: &'static str = "hermetic_resolver";
12
13pub const KERNEL_DEBUG_DATA_FOR_SCP: &'static str = "/tmp/kernel_debug";
14pub const DEBUG_DATA_FOR_SCP: &'static str = "/tmp/debug";
15pub const ISOLATED_TMP: &'static str = "/tmp/isolated";
16
17pub const CUSTOM_ARTIFACTS_CAPABILITY_NAME: &'static str = "custom_artifacts";
18
19// TODO(https://fxbug.dev/42050704): Delete these once we no longer need to hard code these in the code.
20pub const TEST_ENVIRONMENT_NAME: &'static str = "test-env";
21pub const HERMETIC_TESTS_COLLECTION: &'static str = "tests";
22pub const SYSTEM_TESTS_COLLECTION: &'static str = "system-tests";
23pub const VULKAN_TESTS_COLLECTION: &'static str = "vulkan-tests";
24pub const CHROMIUM_TESTS_COLLECTION: &'static str = "chromium-tests";
25pub const CHROMIUM_SYSTEM_TESTS_COLLECTION: &'static str = "chromium-system-tests";
26pub const GOOGLE_TESTS_COLLECTION: &'static str = "google-tests";
27
28lazy_static! {
29    pub static ref TEST_TYPE_REALM_MAP: HashMap<&'static str, &'static str> = [
30        ("hermetic", HERMETIC_TESTS_COLLECTION),
31        ("chromium", CHROMIUM_TESTS_COLLECTION),
32        ("chromium-system", CHROMIUM_SYSTEM_TESTS_COLLECTION),
33        ("google", GOOGLE_TESTS_COLLECTION),
34        ("system", SYSTEM_TESTS_COLLECTION),
35        ("vulkan", VULKAN_TESTS_COLLECTION),
36    ]
37    .iter()
38    .copied()
39    .collect();
40}