Files
nearby/internal/test/BUILD
T

119 lines
3.7 KiB
Python

# Copyright 2023 Google LLC
#
# 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
#
# https://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.
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")
licenses(["notice"])
cc_library(
name = "mocks",
testonly = 1,
hdrs = [
"mock_account_manager.h",
"mock_account_observer.h",
],
visibility = ["//visibility:public"],
deps = [
"//internal/platform/implementation:account_manager",
"//internal/platform/implementation:signin_attempt",
"@com_google_absl//absl/functional:any_invocable",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/strings:string_view",
"@com_google_googletest//:gtest_for_library_testonly",
],
)
cc_library(
name = "test",
srcs = [
"fake_account_manager.cc",
"fake_clock.cc",
"fake_single_thread_executor.cc",
"fake_task_runner.cc",
"fake_timer.cc",
],
hdrs = [
"fake_account_manager.h",
"fake_clock.h",
"fake_device_info.h",
"fake_http_client.h",
"fake_http_client_factory.h",
"fake_single_thread_executor.h",
"fake_task_runner.h",
"fake_timer.h",
],
copts = [
"-Ithird_party",
],
visibility = ["//visibility:public"],
deps = [
"//internal/base",
"//internal/base:file_path",
"//internal/base:files",
"//internal/network:types",
"//internal/platform:comm",
"//internal/platform:logging",
"//internal/platform:types",
"//internal/platform/implementation:account_manager",
"//internal/platform/implementation:signin_attempt",
"//internal/platform/implementation:types",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/functional:any_invocable",
"@com_google_absl//absl/log",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
],
)
cc_test(
name = "test_test",
size = "small",
timeout = "short",
srcs = [
"fake_clock_test.cc",
"fake_device_info_test.cc",
"fake_http_client_test.cc",
"fake_task_runner_test.cc",
"fake_timer_test.cc",
],
copts = [
"-Ithird_party",
],
shard_count = 8,
deps = [
":test",
"//internal/base:file_path",
"//internal/base:files",
"//internal/network:types",
"//internal/network:url",
"//internal/platform:logging",
"//internal/platform/implementation:platform_impl",
"//internal/platform/implementation:types",
"@com_github_protobuf_matchers//protobuf-matchers",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
],
)