-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
176 lines (134 loc) · 4.71 KB
/
Justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
all: build test xtests
all-release: build-release test-release xtests-release
all-quick: build-quick test-quick xtests-quick
export DOG_DEBUG := ""
#----------#
# building #
#----------#
# compile the dog binary
@build:
cargo build
# compile the dog binary (in release mode)
@build-release:
cargo build --release --verbose
strip "${CARGO_TARGET_DIR:-target}/release/dog"
# produce an HTML chart of compilation timings
@build-time:
cargo +nightly clean
cargo +nightly build -Z timings
# compile the dog binary (without some features)
@build-quick:
cargo build --no-default-features
# check that the dog binary can compile
@check:
cargo check
#---------------#
# running tests #
#---------------#
# run unit tests
@test:
cargo test --workspace -- --quiet
# run unit tests (in release mode)
@test-release:
cargo test --workspace --release --verbose
# run unit tests (without some features)
@test-quick:
cargo test --workspace --no-default-features -- --quiet
# run mutation tests
@test-mutation:
cargo +nightly test --package dns --features=dns/with_mutagen -- --quiet
cargo +nightly mutagen --package dns --features=dns/with_mutagen
#------------------------#
# running extended tests #
#------------------------#
# run extended tests
@xtests *args:
specsheet xtests/{options,live,madns}/*.toml -shide {{args}} \
-O cmd.target.dog="${CARGO_TARGET_DIR:-../../target}/debug/dog"
# run extended tests (in release mode)
@xtests-release *args:
specsheet xtests/{options,live,madns}/*.toml {{args}} \
-O cmd.target.dog="${CARGO_TARGET_DIR:-../../target}/release/dog"
# run extended tests (omitting certain feature tests)
@xtests-quick *args:
specsheet xtests/options/*.toml xtests/live/{basics,tcp}.toml -shide {{args}} \
-O cmd.target.dog="${CARGO_TARGET_DIR:-../../target}/debug/dog"
# run extended tests against a local madns instance
@xtests-madns-local *args:
env MADNS_ARGS="@localhost:5301 --tcp" \
specsheet xtests/madns/*.toml -shide {{args}} \
-O cmd.target.dog="${CARGO_TARGET_DIR:-../../target}/debug/dog"
# display the number of extended tests that get run
@count-xtests:
grep -F '[[cmd]]' -R xtests | wc -l
#---------#
# fuzzing #
#---------#
# run fuzzing on the dns crate
@fuzz:
cargo +nightly fuzz --version
cd dns; cargo +nightly fuzz run fuzz_parsing -- -jobs=`nproc` -workers=`nproc` -runs=69105
# print out the data that caused crashes during fuzzing as hexadecimal
@fuzz-hex:
for crash in dns/fuzz/artifacts/fuzz_parsing/crash-*; do echo; echo $crash; hexyl $crash; done
# remove fuzz log files
@fuzz-clean:
rm dns/fuzz/fuzz-*.log
#-----------------------#
# code quality and misc #
#-----------------------#
# lint the code
@clippy:
touch dns/src/lib.rs
cargo clippy
# generate a code coverage report using tarpaulin via docker
@coverage-docker:
docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin cargo tarpaulin --all --out Html
# update dependency versions, and check for outdated ones
@update-deps:
cargo update
command -v cargo-outdated >/dev/null || (echo "cargo-outdated not installed" && exit 1)
cargo outdated
# list unused dependencies
@unused-deps:
command -v cargo-udeps >/dev/null || (echo "cargo-udeps not installed" && exit 1)
cargo +nightly udeps
# builds dog and runs extended tests with features disabled
@feature-checks *args:
cargo build --no-default-features
specsheet xtests/features/none.toml -shide {{args}} \
-O cmd.target.dog="${CARGO_TARGET_DIR:-../../target}/debug/dog"
# print versions of the necessary build tools
@versions:
rustc --version
cargo --version
#---------------#
# documentation #
#---------------#
# render the documentation
@doc:
cargo doc --no-deps --workspace
# build the man pages
@man:
mkdir -p "${CARGO_TARGET_DIR:-target}/man"
pandoc --standalone -f markdown -t man man/dog.1.md > "${CARGO_TARGET_DIR:-target}/man/dog.1"
# build and preview the man page
@man-preview: man
man "${CARGO_TARGET_DIR:-target}/man/dog.1"
#-----------#
# packaging #
#-----------#
# create a distributable package
zip desc exe="dog":
#!/usr/bin/env perl
use Archive::Zip;
-e 'target/release/{{ exe }}' || die 'Binary not built!';
-e 'target/man/dog.1' || die 'Man page not built!';
my $zip = Archive::Zip->new();
$zip->addFile('completions/dog.bash');
$zip->addFile('completions/dog.zsh');
$zip->addFile('completions/dog.fish');
$zip->addFile('target/man/dog.1', 'man/dog.1');
$zip->addFile('target/release/{{ exe }}', 'bin/{{ exe }}');
$zip->writeToFileNamed('dog-{{ desc }}.zip') == AZ_OK || die 'Zip write error!';
system 'unzip -l "dog-{{ desc }}".zip'