-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge ST, support utest and coverage by gtest.
- Loading branch information
Showing
11 changed files
with
444 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: ossrs/srs:dev | ||
steps: | ||
- checkout | ||
- run: | | ||
make linux-debug | ||
test: | ||
docker: | ||
- image: ossrs/srs:dev | ||
steps: | ||
- checkout | ||
- run: | | ||
ln -sf /usr/local/gtest utest/gtest && | ||
make linux-debug-gcov && | ||
./obj/st_utest && bash auto/codecov.sh | ||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- build | ||
- test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,11 @@ DARWIN_*_DBG | |
LINUX_*_DBG | ||
obj | ||
st.pc | ||
.idea | ||
|
||
gtest* | ||
googletest-* | ||
*.gcda | ||
*.gcno | ||
coverage | ||
codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/bin/bash | ||
|
||
# In .circleci/config.yml, generate *.gcno with | ||
# ./configure --gcov --without-research --without-librtmp && make | ||
# and generate *.gcda by | ||
# ./objs/srs_utest | ||
|
||
# Workdir is objs/cover. | ||
workdir=`pwd`/codecov && rm -rf $workdir | ||
|
||
# Tool git is required to map the right path. | ||
git --version >/dev/null 2>&1 | ||
ret=$?; if [[ $ret -ne 0 ]]; then echo "Tool git is required, ret=$ret"; exit $ret; fi | ||
|
||
# Create trunk under workdir. | ||
mkdir -p $workdir && cd $workdir | ||
ret=$?; if [[ $ret -ne 0 ]]; then echo "Enter workdir failed, ret=$ret"; exit $ret; fi | ||
|
||
# Collect all *.gcno and *.gcda to objs/cover. | ||
cd $workdir && for file in $(cd .. && ls *.c); do | ||
cp ../$file $file && echo "Copy $file" && | ||
if [[ -f ../obj/${file%.*}.gcno ]]; then | ||
cp ../obj/${file%.*}.* . | ||
fi | ||
done | ||
ret=$?; if [[ $ret -ne 0 ]]; then echo "Collect *.gcno and *.gcda failed, ret=$ret"; exit $ret; fi | ||
|
||
# Generate *.gcov for coverage. | ||
cd $workdir && | ||
for file in $(ls *.c); do | ||
gcov $file -o `dirname $file` | ||
ret=$?; if [[ $ret -ne 0 ]]; then echo "Collect $file failed, ret=$ret"; exit $ret; fi | ||
done | ||
|
||
# Filter the gcov files, remove utest or gtest. | ||
cd $workdir && | ||
rm -f *gtest*.gcov *utest*.gcov | ||
ret=$?; if [[ $ret -ne 0 ]]; then echo "Cook gcov files failed, ret=$ret"; exit $ret; fi | ||
|
||
# Upload report with *.gcov | ||
# Remark: The file codecov.yml is not neccessary. It literally depends on git. | ||
# Note: The right path is like: | ||
# https://codecov.io/gh/ossrs/srs/src/3.0release/trunk/src/protocol/srs_rtmp_stack.cpp | ||
# https://codecov.io/gh/ossrs/srs/src/20fbb4466fdc8ba5d810b8570df6004063212838/trunk/src/protocol/srs_rtmp_stack.cpp | ||
# Remark: It takes a few minutes to sync with github, so it might not available when CircleCI is done. | ||
# https://circleci.com/gh/ossrs/srs/tree/3.0release | ||
# | ||
# Note: Use '-X gcov' to avoid generate the gcov files again. | ||
cd $workdir && | ||
export CODECOV_TOKEN="0d616496-f781-4e7c-b285-d1f70a1cdf24" && | ||
bash <(curl -s https://codecov.io/bash) -X gcov && | ||
echo "Done" && exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
|
||
if [[ ! -f utest/gtest/include/gtest/gtest.h ]]; then | ||
( | ||
cd utest && rm -rf gtest && | ||
curl https://github.com/google/googletest/archive/release-1.6.0.tar.gz -L -o googletest-release-1.6.0.tar.gz && | ||
tar xf googletest-release-1.6.0.tar.gz && | ||
ln -sf googletest-release-1.6.0 gtest && | ||
echo "Setup gtest ok" | ||
) | ||
fi | ||
if [[ ! -f utest/gtest/include/gtest/gtest.h ]]; then | ||
echo "No utest/gtest, please download from https://github.com/google/googletest/releases/tag/release-1.6.0" | ||
exit -1 | ||
else | ||
echo "Check utest/gtest ok" | ||
fi | ||
|
||
if [[ $(gcovr --version >/dev/null && echo yes) != yes ]]; then | ||
echo "Please install gcovr: https://github.com/ossrs/state-threads/tree/srs#utest-and-coverage" | ||
exit -1 | ||
fi | ||
|
||
IS_LINUX=yes | ||
uname -s|grep Darwin >/dev/null && IS_DARWIN=yes && IS_LINUX=no | ||
echo "IS_LINUX: $IS_LINUX, IS_DARWIN: $IS_DARWIN" | ||
|
||
echo "Build and run utest" | ||
if [[ $IS_DARWIN == yes ]]; then | ||
make clean && make darwin-debug-gcov && ./obj/st_utest | ||
else | ||
make clean && make linux-debug-gcov && ./obj/st_utest | ||
fi | ||
|
||
echo "Generating coverage" | ||
mkdir -p coverage && | ||
gcovr -r . -e LINUX -e DARWIN -e examples --html --html-details -o coverage/st.html && | ||
echo "Coverage report at coverage/st.html" && | ||
open coverage/st.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.