Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
73727c98
Unverified
Commit
73727c98
authored
Oct 05, 2017
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/coveralls' into develop
parents
99ee4c1e
75f4678b
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
831 additions
and
43 deletions
+831
-43
.gitignore
.gitignore
+1
-15
.travis.yml
.travis.yml
+6
-16
Makefile
Makefile
+15
-0
test/CMakeLists.txt
test/CMakeLists.txt
+26
-5
test/src/prefix.hpp
test/src/prefix.hpp
+0
-7
test/thirdparty/imapdl/filterbr.py
test/thirdparty/imapdl/filterbr.py
+109
-0
test/thirdparty/imapdl/gpl-3.0.txt
test/thirdparty/imapdl/gpl-3.0.txt
+674
-0
No files found.
.gitignore
View file @
73727c98
...
...
@@ -7,9 +7,8 @@ fuzz-testing
*.gcno
*.gcda
ndk
build
working
build_coverage
doc/xml
doc/html
...
...
@@ -20,17 +19,4 @@ benchmarks/files/numbers/*.json
.idea
cmake-build-debug
test/test-*
.svn
test/thirdparty/Fuzzer/libFuzzer.a
test/parse_afl_fuzzer
test/parse_cbor_fuzzer
test/parse_msgpack_fuzzer
minibench
.travis.yml
View file @
73727c98
...
...
@@ -81,24 +81,14 @@ matrix:
addons
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
]
packages
:
[
'
g++-4.9'
,
'
ruby'
,
'
ninja-build'
]
packages
:
[
'
g++-4.9'
,
'
ninja-build'
]
before_script
:
-
wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.11.orig.tar.gz
-
tar xf lcov_1.11.orig.tar.gz
-
sudo make -C lcov-1.11/ install
-
gem install coveralls-lcov
-
pip install --user cpp-coveralls
after_success
:
-
make clean
-
CXXFLAGS="--coverage -g -O0" CPPFLAGS="-DNDEBUG" make json_unit
-
test/json_unit "*"
-
coveralls --build-root test --exclude src/catch.hpp --exclude src/unit-algorithms.cpp --exclude src/unit-allocator.cpp --exclude src/unit-capacity.cpp --exclude src/unit-class_const_iterator.cpp --exclude src/unit-class_iterator.cpp --exclude src/unit-class_lexer.cpp --exclude src/unit-class_parser.cpp --exclude src/unit-comparison.cpp --exclude src/unit-concepts.cpp --exclude src/unit-constructor1.cpp --exclude src/unit-constructor2.cpp --exclude src/unit-convenience.cpp --exclude src/unit-conversions.cpp --exclude src/unit-deserialization.cpp --exclude src/unit-element_access1.cpp --exclude src/unit-element_access2.cpp --exclude src/unit-inspection.cpp --exclude src/unit-iterator_wrapper.cpp --exclude src/unit-iterators1.cpp --exclude src/unit-iterators2.cpp --exclude src/unit-json_patch.cpp --exclude src/unit-json_pointer.cpp --exclude src/unit-modifiers.cpp --exclude src/unit-pointer_access.cpp --exclude src/unit-readme.cpp --exclude src/unit-reference_access.cpp --exclude src/unit-regression.cpp --exclude src/unit-serialization.cpp --exclude src/unit-testsuites.cpp --exclude src/unit-unicode.cpp --include ../src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
-
lcov --directory src --directory test/src --capture --output-file coverage.info --rc lcov_branch_coverage=1 --no-external
-
lcov --remove coverage.info 'test/src/*' --output-file coverage.info --rc lcov_branch_coverage=1
-
lcov --list coverage.info --rc lcov_branch_coverage=1
-
coveralls-lcov --repo-token F9bs4Nop10JRgqPQXRcifyQKYhb3FczkS coverage.info
-
coveralls --build-root test --include src --gcov 'gcov-4.9' --gcov-options '\-lp'
env
:
-
COMPILER=g++-4.9
-
CMAKE_OPTIONS=-DJSON_Coverage=ON
-
SPECIAL=coveralls
# Coverity (only for branch coverity_scan)
...
...
@@ -115,8 +105,8 @@ matrix:
name
:
"
nlohmann/json"
description
:
"
Build
submitted
via
Travis
CI"
notification_email
:
niels.lohmann@gmail.com
build_command_prepend
:
"
m
ake
clean
"
build_command
:
"
make"
build_command_prepend
:
"
m
kdir
coverity_build
;
cd
coverity_build
;
cmake
..
;
cd
..
"
build_command
:
"
make
-C
coverity_build
"
branch_pattern
:
coverity_scan
env
:
-
SPECIAL=coverity
...
...
@@ -262,7 +252,7 @@ matrix:
################
script
:
# get CMake (only for systems with brew - macOS)
# get CMake
and Ninja
(only for systems with brew - macOS)
-
|
if [[ (-x $(which brew)) ]]; then
brew update
...
...
Makefile
View file @
73727c98
...
...
@@ -5,6 +5,7 @@ all:
@
echo
"check - compile and execute test suite"
@
echo
"check-fast - compile and execute test suite (skip long-running tests)"
@
echo
"clean - remove built files"
@
echo
"coverage - create coverage information with lcov"
@
echo
"cppcheck - analyze code with cppcheck"
@
echo
"doctest - compile example files and check their output"
@
echo
"fuzz_testing - prepare fuzz testing of the JSON parser"
...
...
@@ -35,11 +36,25 @@ check-fast:
clean
:
rm
-fr
json_unit json_benchmarks fuzz fuzz-testing
*
.dSYM
test
/
*
.dSYM
rm
-fr
benchmarks/files/numbers/
*
.json
rm
-fr
build_coverage
$(MAKE)
clean
-Cdoc
$(MAKE)
clean
-Ctest
$(MAKE)
clean
-Cbenchmarks
##########################################################################
# coverage
##########################################################################
coverage
:
mkdir
build_coverage
cd
build_coverage
;
CXX
=
g++-5 cmake ..
-GNinja
-DJSON_Coverage
=
ON
cd
build_coverage
;
ninja
cd
build_coverage
;
ctest
cd
build_coverage
;
ninja lcov_html
open build_coverage/test/html/index.html
##########################################################################
# documentation tests
##########################################################################
...
...
test/CMakeLists.txt
View file @
73727c98
option
(
JSON_Sanitizer
"Build test suite with Clang sanitizer"
OFF
)
option
(
JSON_Valgrind
"Execute test suite with Valgrind"
OFF
)
option
(
JSON_NoExceptions
"Build test suite without exceptions"
OFF
)
option
(
JSON_Coverage
"Build test suite with coverage information"
OFF
)
if
(
JSON_Sanitizer
)
message
(
STATUS
"Building test suite with Clang sanitizer"
)
...
...
@@ -25,6 +26,31 @@ if(JSON_NoExceptions)
set
(
CATCH_TEST_FILTER -e
)
endif
()
if
(
JSON_Coverage
)
message
(
STATUS
"Building test suite with coverage information"
)
if
(
NOT
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"GNU"
)
message
(
FATAL_ERROR
"JSON_Coverage requires GCC."
)
endif
()
# enable profiling
set
(
CMAKE_CXX_FLAGS
"--coverage -g -O0 -fprofile-arcs -ftest-coverage"
)
# from https://github.com/RWTH-HPC/CMake-codecov/blob/master/cmake/FindGcov.cmake
get_filename_component
(
COMPILER_PATH
"
${
CMAKE_CXX_COMPILER
}
"
PATH
)
string
(
REGEX MATCH
"^[0-9]+"
GCC_VERSION
"
${
CMAKE_CXX_COMPILER_VERSION
}
"
)
find_program
(
GCOV_BIN NAMES gcov-
${
GCC_VERSION
}
gcov HINTS
${
COMPILER_PATH
}
)
# add target to collect coverage information and generate HTML file
# (filter script from https://stackoverflow.com/a/43726240/266378)
add_custom_target
(
lcov_html
COMMAND lcov --directory . --capture --output-file json.info --gcov-tool
${
GCOV_BIN
}
--rc lcov_branch_coverage=1
COMMAND lcov -e json.info
${
CMAKE_SOURCE_DIR
}
/src/json.hpp --output-file json.info.filtered --rc lcov_branch_coverage=1
COMMAND
${
CMAKE_SOURCE_DIR
}
/test/thirdparty/imapdl/filterbr.py json.info.filtered > json.info.filtered.noexcept
COMMAND genhtml --title
"JSON for Modern C++"
--legend --demangle-cpp --output-directory html --show-details --branch-coverage json.info.filtered.noexcept
COMMENT
"Generating HTML report test/html/index.html"
)
endif
()
#############################################################################
# Catch library with the main function to speed up build
#############################################################################
...
...
@@ -65,11 +91,6 @@ foreach(file ${files})
set_target_properties
(
${
testcase
}
PROPERTIES COMPILE_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Wno-deprecated -Wno-float-equal"
)
endif
()
include
(
cotire OPTIONAL
)
if
(
COMMAND cotire
)
cotire
(
${
testcase
}
)
endif
()
add_test
(
NAME
"
${
testcase
}
_default"
COMMAND
${
testcase
}
${
CATCH_TEST_FILTER
}
WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
...
...
test/src/prefix.hpp
deleted
100644 → 0
View file @
99ee4c1e
#pragma once
#include "catch.hpp"
#define private public
#include "json.hpp"
using
nlohmann
::
json
;
test/thirdparty/imapdl/filterbr.py
0 → 100755
View file @
73727c98
#!/usr/bin/env python3
# 2017, Georg Sauthoff <mail@gms.tf>, GPLv3
import
sys
def
skip_comments
(
lines
):
state
=
0
for
line
in
lines
:
n
=
len
(
line
)
l
=
''
p
=
0
while
p
<
n
:
if
state
==
0
:
a
=
line
.
find
(
'//'
,
p
)
b
=
line
.
find
(
'/*'
,
p
)
if
a
>
-
1
and
(
a
<
b
or
b
==
-
1
):
l
+=
line
[
p
:
a
]
p
=
n
elif
b
>
-
1
and
(
b
<
a
or
a
==
-
1
):
l
+=
line
[
p
:
b
]
p
=
b
+
2
state
=
1
else
:
l
+=
line
[
p
:]
p
=
n
elif
state
==
1
:
a
=
line
.
rfind
(
'*/'
,
p
)
if
a
==
-
1
:
p
=
n
else
:
p
=
a
+
2
state
=
0
yield
l
def
cond_lines
(
lines
):
state
=
0
pcnt
=
0
for
nr
,
line
in
enumerate
(
lines
,
1
):
if
not
line
:
continue
n
=
len
(
line
)
p
=
0
do_yield
=
False
while
p
<
n
:
if
state
==
0
:
p
=
line
.
find
(
'if'
,
p
)
if
p
==
-
1
:
p
=
n
continue
if
(
p
==
0
or
not
line
[
p
-
1
].
isalpha
())
\
and
(
p
+
2
==
len
(
line
)
or
not
line
[
p
+
2
].
isalpha
()):
do_yield
=
True
state
=
1
p
+=
2
elif
state
==
1
:
do_yield
=
True
p
=
line
.
find
(
'('
,
p
)
if
p
==
-
1
:
p
=
n
else
:
p
+=
1
state
=
2
pcnt
=
1
elif
state
==
2
:
do_yield
=
True
for
p
in
range
(
p
,
n
):
if
line
[
p
]
==
'('
:
pcnt
+=
1
elif
line
[
p
]
==
')'
:
pcnt
-=
1
if
not
pcnt
:
state
=
0
break
p
+=
1
if
do_yield
:
yield
nr
def
cond_lines_from_file
(
filename
):
with
open
(
filename
)
as
f
:
yield
from
cond_lines
(
skip_comments
(
f
))
def
filter_lcov_trace
(
lines
):
nrs
=
set
()
for
line
in
lines
:
if
line
.
startswith
(
'SF:'
):
nrs
=
set
(
cond_lines_from_file
(
line
[
3
:
-
1
]))
elif
line
.
startswith
(
'BRDA:'
):
xs
=
line
[
5
:].
split
(
','
)
nr
=
int
(
xs
[
0
])
if
xs
else
0
if
nr
not
in
nrs
:
continue
yield
line
def
filter_lcov_trace_file
(
s_filename
,
d_file
):
with
open
(
s_filename
)
as
f
:
for
l
in
filter_lcov_trace
(
f
):
print
(
l
,
end
=
''
,
file
=
d_file
)
if
__name__
==
'__main__'
:
#for l in cond_lines_from_file(sys.argv[1]):
# print(l)
filter_lcov_trace_file
(
sys
.
argv
[
1
],
sys
.
stdout
)
#with open(sys.argv[1]) as f:
# for l in skip_comments(f):
# print(l)
test/thirdparty/imapdl/gpl-3.0.txt
0 → 100644
View file @
73727c98
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment