Skip to content

Commit 0383d14

Browse files
committed
Add tests to the Bazel builds.
1 parent 8fcfda4 commit 0383d14

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

src/jsontestrunner/BUILD.bazel

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cc_binary(
2+
name = "jsontestrunner",
3+
srcs = ["main.cpp"],
4+
deps = ["//:jsoncpp"],
5+
visibility = ["//test:__pkg__"],
6+
)

src/test_lib_json/BUILD.bazel

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
cc_test(
2+
name = "jsoncpp_test",
3+
srcs = [
4+
"jsontest.cpp",
5+
"jsontest.h",
6+
"main.cpp",
7+
"fuzz.h",
8+
"fuzz.cpp",
9+
],
10+
deps = ["//:jsoncpp"],
11+
)

test/BUILD.bazel

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
filegroup(
2+
name = "expected",
3+
srcs = glob(["data/**", "jsonchecker/**"], exclude=["**/*.json"]),
4+
)
5+
6+
########
7+
8+
[py_test(
9+
name = "runjson_%s_test" % "_".join(f.split("/")),
10+
srcs = ["runjsontests.py"],
11+
main = "runjsontests.py",
12+
args = [
13+
"--with-json-checker",
14+
"$(location //src/jsontestrunner:jsontestrunner)",
15+
"$(location :%s)" % f,
16+
],
17+
data = [
18+
"//src/jsontestrunner:jsontestrunner",
19+
":expected",
20+
":%s" % f,
21+
],
22+
) for f in glob(["**/*.json"])]

0 commit comments

Comments
 (0)