mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Starting to chase down testing * commenting out unused/inactive endpoints, adding more tests * clippyism * making clippy happy v2 * testing when things are not right * moar checkpoint * splitting up testkit things a bit * moving https -> tide * mad lad be crabbin * spawning like a frog * something something different spawning * woot it works ish * more server things * adding version header to requests * adding kopid_middleware * well that was supposed to be an hour... four later * more nonsense * carrying on with the conversion * first pass through the conversion is DONE! * less pub more better * session storage works better, fixed some paths * axum-csp version thing * try a typedheader * better openssl config things * updating lockfile * http2 * actually sending JSON when we say we will! * just about to do something dumb * flargl * more yak shaving * So many clippy-isms, fixing up a query handler bleep bloop * So many clippy-isms, fixing up a query handler bleep bloop * fmt * all tests pass including basic web logins and nav * so much clippyism * stripping out old comments * fmt * commenty things * stripping out tide * updates * de-tiding things * fmt * adding optional header matching ,thanks @cuberoot74088 * oauth2 stuff to match #1807 but in axum * CLIPPY IS FINALLY SATED * moving scim from /v1/scim to /scim * one day clippy will make sense * cleanups * removing sketching middleware * cleanup, strip a broken test endpoint (routemap), more clippy * docs fmt * pulling axum-csp from the wrong cargo.toml * docs fmt * fmt fixes
64 lines
1.6 KiB
Bash
Executable file
64 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$(rustup default | grep -cE '^nightly' )" -eq 0 ]; then
|
|
echo "You need to switch to rust nightly!"
|
|
exit 1
|
|
fi
|
|
|
|
# if [ "$(which rustfilt | wc -l )" -eq 0 ]; then
|
|
# echo "You need to have rustfilt on the path"
|
|
# echo "cargo install rustfilt"
|
|
# exit 1
|
|
# fi
|
|
if [ "$(which llvm-cov | wc -l )" -eq 0 ]; then
|
|
echo "You need to have llvm-cov on the path"
|
|
exit 1
|
|
fi
|
|
export CARGO_INCREMENTAL=0
|
|
|
|
|
|
export LLVM_PROFILE_FILE
|
|
echo "Profile files going into ${LLVM_PROFILE_FILE}"
|
|
|
|
echo "Running tests"
|
|
#shellcheck disable=SC2068
|
|
|
|
LLVM_PROFILE_FILE="$(pwd)/target/profile/coverage-%p-%m.profraw" RUSTFLAGS="-C instrument-coverage" cargo test
|
|
|
|
grcov . --binary-path ./target/debug/deps/ \
|
|
-s . \
|
|
-t html \
|
|
--branch \
|
|
--ignore-not-existing \
|
|
--ignore '../*' \
|
|
--ignore "/*" \
|
|
-o target/coverage/html
|
|
|
|
|
|
# PROFDATA="./target/profile/kanidm.profdata"
|
|
|
|
# llvm-profdata merge ./target/profile/*.profraw -o "${PROFDATA}"
|
|
|
|
# llvm-cov report --ignore-filename-regex="\.cargo" \
|
|
# --enable-name-compression \
|
|
# $( \
|
|
# for file in \
|
|
# $( \
|
|
# RUSTFLAGS="-C instrument-coverage" \
|
|
# cargo test --tests --no-run --message-format=json \
|
|
# | jq -r "select(.profile.test == true) | .filenames[]" \
|
|
# | grep -v dSYM - \
|
|
# ); \
|
|
# do \
|
|
# printf "%s %s " -object $file; \
|
|
# done \
|
|
# ) \
|
|
# --instr-profile="${PROFDATA}" --summary-only
|
|
|
|
# llvm-cov show -Xdemangler=rustfilt target/debug/kanidmd \
|
|
# -instr-profile="${PROFDATA}" \
|
|
# -show-line-counts-or-regions \
|
|
# -show-instantiations \
|
|
# -name-regex="kani.*" |