add testing script

This commit is contained in:
Branden J Brown 2025-03-14 12:32:34 -04:00
parent afd8755131
commit b034852b34
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/chord-node

19
test.bash Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
set -ex
go build -o ./chord-node
# Test create and join.
./chord-node join -ip 127.0.0.1:3000 &
FIRST=$!
sleep 3
./chord-node join -ip 127.0.0.1:3001 -c 127.0.0.1:3000 &
SECOND=$!
./chord-node join -ip 127.0.0.1:3002 -c 127.0.0.1:3000 &
THIRD=$!
sleep 5
# Each node logs its predecessor and successors. At this point, we see the ring.
kill $FIRST $SECOND $THIRD