Skip to content
Snippets Groups Projects
Commit b7daa9ff authored by trinity-1686a's avatar trinity-1686a
Browse files

add integration test and fill semver_status

parent fa299256
No related branches found
No related tags found
No related merge requests found
......@@ -137,9 +137,9 @@ integration:
image: debian:stable-slim
script:
- apt update
- apt install -y tor git python3 curl
- apt install -y tor git python3 curl dnsutils
- ./tests/chutney/setup proxy
- curl http://example.com -vs --socks5-hostname 127.0.0.1:9150 -o /dev/null
- ./tests/chutney/test
- ./tests/chutney/stop-arti
- RUST_LOG=debug target/x86_64-unknown-linux-gnu/release/arti-bench -c ./chutney/net/nodes/arti.toml --socks5 127.0.0.1:9008 -o benchmark_results.json
- ./tests/chutney/teardown
......
......@@ -37,7 +37,7 @@ arti:
tor-llcrypto:
new-api: Added RsaIdentity::from_hex().
new-api: Added RsaIdentity::from\_hex().
arti-client:
......@@ -62,3 +62,7 @@ tor-basic-utils:
Remove `humantime_serde_option` module.
(Use `humantime_serde::option` instead.)
tor-rtcompt:
api-break: Runtime require an additional supertrait UdpProvider
......@@ -88,7 +88,7 @@ fi
(
set +e
"$cmd" proxy -c "${CHUTNEY_PATH}/net/nodes/arti.toml" &
"$cmd" proxy -c "${CHUTNEY_PATH}/net/nodes/arti.toml" -p 5353 &
pid=$!
echo "target=$target" > tests/chutney/arti.run
echo "pid=$pid" >> tests/chutney/arti.run
......
#!/bin/bash -xe
curl http://example.com -vs --socks5-hostname 127.0.0.1:9150 -o /dev/null
[ "$(dig @127.0.0.1 -p 5353 +short example.com A)" == "93.184.216.34" ]
[ "$(dig @127.0.0.1 -p 5353 +short example.com AAAA)" == "2606:2800:220:1:248:1893:25c8:1946" ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment