nixpkgs/pkgs/tools/networking/croc/test-local-relay.nix

20 lines
644 B
Nix
Raw Normal View History

2020-10-20 07:06:43 +00:00
{ stdenv, croc }:
stdenv.mkDerivation {
name = "croc-test-local-relay";
meta.timeout = 300;
buildCommand = ''
HOME=$(mktemp -d)
# start a local relay
${croc}/bin/croc relay --ports 11111,11112 &
# start sender in background
MSG="See you later, alligator!"
${croc}/bin/croc --relay localhost:11111 send --code correct-horse-battery-staple --text "$MSG" &
# wait for things to settle
sleep 1
MSG2=$(${croc}/bin/croc --relay localhost:11111 --yes correct-horse-battery-staple)
2020-10-20 07:06:43 +00:00
# compare
[ "$MSG" = "$MSG2" ] && touch $out
'';
}