blob: da95ed58bfd708027c781dc255b46e532c8d6e55 [file] [log] [blame]
Abseil Teambc6a4ce2018-10-09 17:30:36 -04001# Copyright 2017 Google Inc.
2# All Rights Reserved.
3#
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30#
31# Author: misterg@google.com (Gennadiy Civil)
32#
33# Bazel Build for Google C++ Testing Framework(Google Test)-googlemock
34
Yannic Bonenberger6fd262e2019-08-07 17:04:29 +020035load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_test")
36load("@rules_python//python:defs.bzl", "py_library", "py_test")
37
Abseil Teambc6a4ce2018-10-09 17:30:36 -040038licenses(["notice"])
39
krzysio105579a2018-11-06 10:37:19 -050040# Tests for GMock itself
Abseil Teambc6a4ce2018-10-09 17:30:36 -040041cc_test(
42 name = "gmock_all_test",
43 size = "small",
krzysio105579a2018-11-06 10:37:19 -050044 srcs = glob(include = ["gmock-*.cc"]),
Abseil Teambc6a4ce2018-10-09 17:30:36 -040045 linkopts = select({
46 "//:windows": [],
krzysio105579a2018-11-06 10:37:19 -050047 "//conditions:default": ["-pthread"],
Abseil Teambc6a4ce2018-10-09 17:30:36 -040048 }),
49 deps = ["//:gtest"],
50)
51
krzysio105579a2018-11-06 10:37:19 -050052# Python tests
Abseil Teambc6a4ce2018-10-09 17:30:36 -040053py_library(
54 name = "gmock_test_utils",
55 testonly = 1,
56 srcs = ["gmock_test_utils.py"],
57)
58
59cc_binary(
60 name = "gmock_leak_test_",
61 testonly = 1,
62 srcs = ["gmock_leak_test_.cc"],
krzysio105579a2018-11-06 10:37:19 -050063 deps = ["//:gtest_main"],
Abseil Teambc6a4ce2018-10-09 17:30:36 -040064)
65
66py_test(
67 name = "gmock_leak_test",
68 size = "medium",
69 srcs = ["gmock_leak_test.py"],
70 data = [
71 ":gmock_leak_test_",
72 ":gmock_test_utils",
73 ],
74)
75
76cc_test(
77 name = "gmock_link_test",
78 size = "small",
79 srcs = [
80 "gmock_link2_test.cc",
81 "gmock_link_test.cc",
82 "gmock_link_test.h",
83 ],
krzysio105579a2018-11-06 10:37:19 -050084 deps = ["//:gtest_main"],
Abseil Teambc6a4ce2018-10-09 17:30:36 -040085)
86
87cc_binary(
88 name = "gmock_output_test_",
89 srcs = ["gmock_output_test_.cc"],
krzysio105579a2018-11-06 10:37:19 -050090 deps = ["//:gtest"],
Abseil Teambc6a4ce2018-10-09 17:30:36 -040091)
92
93py_test(
94 name = "gmock_output_test",
95 size = "medium",
96 srcs = ["gmock_output_test.py"],
97 data = [
98 ":gmock_output_test_",
99 ":gmock_output_test_golden.txt",
100 ],
mistergee32b722019-06-18 13:45:02 -0400101 python_version = "PY2",
Abseil Teambc6a4ce2018-10-09 17:30:36 -0400102 deps = [":gmock_test_utils"],
103)
104
105cc_test(
106 name = "gmock_test",
107 size = "small",
108 srcs = ["gmock_test.cc"],
krzysio105579a2018-11-06 10:37:19 -0500109 deps = ["//:gtest_main"],
Abseil Teambc6a4ce2018-10-09 17:30:36 -0400110)