Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
integration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
integration
Commits
10cac249
Commit
10cac249
authored
Jul 8, 2022
by
Josh Brooks
Browse files
Options
Downloads
Patches
Plain Diff
Add comment divisors in run.sh
parent
9fd87631
Branches
Branches containing commit
No related tags found
2 merge requests
!68
Master merge
,
!28
Add integration test for connections
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
basice2e/run.sh
+54
-0
54 additions, 0 deletions
basice2e/run.sh
with
54 additions
and
0 deletions
basice2e/run.sh
+
54
−
0
View file @
10cac249
#!/bin/bash
#!/bin/bash
# NOTE: This is verbose on purpose.
# NOTE: This is verbose on purpose.
################################################################################
## Initial Set Up & Clean Up of Past Runs
################################################################################
set
-e
set
-e
rm
-fr
results.bak
||
true
rm
-fr
results.bak
||
true
...
@@ -44,6 +47,11 @@ mkdir -p $GATEWAYLOGS
...
@@ -44,6 +47,11 @@ mkdir -p $GATEWAYLOGS
mkdir
-p
$CLIENTOUT
mkdir
-p
$CLIENTOUT
mkdir
-p
$CLIENTCLEAN
mkdir
-p
$CLIENTCLEAN
################################################################################
## Network Set Up
################################################################################
if
[
"
$NETWORKENTRYPOINT
"
==
"betanet"
]
if
[
"
$NETWORKENTRYPOINT
"
==
"betanet"
]
then
then
NETWORKENTRYPOINT
=
$(
sort
-R
betanet.txt |
head
-1
)
NETWORKENTRYPOINT
=
$(
sort
-R
betanet.txt |
head
-1
)
...
@@ -240,6 +248,10 @@ runclients() {
...
@@ -240,6 +248,10 @@ runclients() {
done
done
}
}
###############################################################################
# Test Basic Client
###############################################################################
if
[
"
$NETWORKENTRYPOINT
"
==
"localhost:8440"
]
if
[
"
$NETWORKENTRYPOINT
"
==
"localhost:8440"
]
then
then
...
@@ -324,6 +336,10 @@ then
...
@@ -324,6 +336,10 @@ then
fi
fi
###############################################################################
# Test Sending E2E
###############################################################################
# Non-precanned E2E user messaging
# Non-precanned E2E user messaging
echo
"SENDING E2E MESSAGES TO NEW USERS..."
echo
"SENDING E2E MESSAGES TO NEW USERS..."
CLIENTCMD
=
"timeout 360s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client42.log -s blob42 --writeContact
$CLIENTOUT
/rick42-contact.bin --unsafe -m
\"
Hello from Rick42 to myself, without E2E Encryption
\"
"
CLIENTCMD
=
"timeout 360s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client42.log -s blob42 --writeContact
$CLIENTOUT
/rick42-contact.bin --unsafe -m
\"
Hello from Rick42 to myself, without E2E Encryption
\"
"
...
@@ -379,6 +395,10 @@ echo "$CLIENTCMD -- $PIDVAL"
...
@@ -379,6 +395,10 @@ echo "$CLIENTCMD -- $PIDVAL"
wait
$PIDVAL
wait
$PIDVAL
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test Renegotiation
###############################################################################
echo
"TESTING RENEGOTIATION..."
echo
"TESTING RENEGOTIATION..."
CLIENTCMD
=
"timeout 360s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client43.log -s blob43 --destfile
$CLIENTOUT
/rick42-contact.bin --send-auth-request --sendCount 0 --receiveCount 0"
CLIENTCMD
=
"timeout 360s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client43.log -s blob43 --destfile
$CLIENTOUT
/rick42-contact.bin --send-auth-request --sendCount 0 --receiveCount 0"
eval
$CLIENTCMD
>>
$CLIENTOUT
/client43.txt
||
true
&
eval
$CLIENTCMD
>>
$CLIENTOUT
/client43.txt
||
true
&
...
@@ -429,6 +449,10 @@ wait $PIDVAL
...
@@ -429,6 +449,10 @@ wait $PIDVAL
wait
$PIDVAL2
wait
$PIDVAL2
echo
"END RENEGOTIATION"
echo
"END RENEGOTIATION"
###############################################################################
# Test Deleting Contacts & Requests
###############################################################################
echo
"DELETING CONTACT FROM CLIENT..."
echo
"DELETING CONTACT FROM CLIENT..."
CLIENTCMD
=
"timeout 240s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client42.log -s blob42 --delete-channel --destfile
$CLIENTOUT
/ben43-contact.bin --sendCount 0 --receiveCount 0"
CLIENTCMD
=
"timeout 240s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client42.log -s blob42 --delete-channel --destfile
$CLIENTOUT
/ben43-contact.bin --sendCount 0 --receiveCount 0"
eval
$CLIENTCMD
>>
$CLIENTOUT
/client42.txt
||
true
&
eval
$CLIENTCMD
>>
$CLIENTOUT
/client42.txt
||
true
&
...
@@ -472,6 +496,9 @@ echo "$CLIENTCMD -- $PIDVAL"
...
@@ -472,6 +496,9 @@ echo "$CLIENTCMD -- $PIDVAL"
echo
"NOTE: The command above causes an EXPECTED failure to confirm authentication channel!"
echo
"NOTE: The command above causes an EXPECTED failure to confirm authentication channel!"
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test Simultaneous Auth
###############################################################################
echo
"CREATING USERS for SIMULTANEOUSAUTH TEST..."
echo
"CREATING USERS for SIMULTANEOUSAUTH TEST..."
JONOID
=
$(
../bin/client init
-s
blob85
-l
$CLIENTOUT
/client85.log
--password
hello
--ndf
results/ndf.json
--writeContact
$CLIENTOUT
/jono85-contact.bin
-v
$DEBUGLEVEL
)
JONOID
=
$(
../bin/client init
-s
blob85
-l
$CLIENTOUT
/client85.log
--password
hello
--ndf
results/ndf.json
--writeContact
$CLIENTOUT
/jono85-contact.bin
-v
$DEBUGLEVEL
)
...
@@ -507,6 +534,9 @@ echo "$CLIENTCMD -- $PIDVAL2"
...
@@ -507,6 +534,9 @@ echo "$CLIENTCMD -- $PIDVAL2"
wait
$PIDVAL1
wait
$PIDVAL1
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test Rekey
###############################################################################
echo
"CREATING USERS for REKEY TEST..."
echo
"CREATING USERS for REKEY TEST..."
JAKEID
=
$(
../bin/client init
-s
blob100
-l
$CLIENTOUT
/client100.log
--password
hello
--ndf
results/ndf.json
--writeContact
$CLIENTOUT
/Jake100-contact.bin
-v
$DEBUGLEVEL
)
JAKEID
=
$(
../bin/client init
-s
blob100
-l
$CLIENTOUT
/client100.log
--password
hello
--ndf
results/ndf.json
--writeContact
$CLIENTOUT
/Jake100-contact.bin
-v
$DEBUGLEVEL
)
...
@@ -556,6 +586,9 @@ echo "$CLIENTCMD -- $PIDVAL"
...
@@ -556,6 +586,9 @@ echo "$CLIENTCMD -- $PIDVAL"
wait
$PIDVAL
wait
$PIDVAL
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test Historical Rounds
###############################################################################
echo
"FORCING HISTORICAL ROUNDS..."
echo
"FORCING HISTORICAL ROUNDS..."
FH1ID
=
$(
../bin/client init
-s
blob35
-l
$CLIENTOUT
/client35.log
--password
hello
--ndf
results/ndf.json
--writeContact
$CLIENTOUT
/FH1-contact.bin
-v
$DEBUGLEVEL
)
FH1ID
=
$(
../bin/client init
-s
blob35
-l
$CLIENTOUT
/client35.log
--password
hello
--ndf
results/ndf.json
--writeContact
$CLIENTOUT
/FH1-contact.bin
-v
$DEBUGLEVEL
)
...
@@ -586,6 +619,10 @@ echo "$CLIENTCMD -- $PIDVAL"
...
@@ -586,6 +619,10 @@ echo "$CLIENTCMD -- $PIDVAL"
wait
$PIDVAL
wait
$PIDVAL
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test Back Up & Restore
###############################################################################
echo
"START BACKUP AND RESTORE..."
echo
"START BACKUP AND RESTORE..."
CLIENTCMD
=
"timeout 360s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client120.log -s blob120 --writeContact
$CLIENTOUT
/client120-contact.bin --unsafe -m
\"
Hello from Client120 to myself, without E2E Encryption
\"
"
CLIENTCMD
=
"timeout 360s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client120.log -s blob120 --writeContact
$CLIENTOUT
/client120-contact.bin --unsafe -m
\"
Hello from Client120 to myself, without E2E Encryption
\"
"
eval
$CLIENTCMD
>>
$CLIENTOUT
/client120.txt
||
true
&
eval
$CLIENTCMD
>>
$CLIENTOUT
/client120.txt
||
true
&
...
@@ -673,6 +710,9 @@ wait $PIDVAL2
...
@@ -673,6 +710,9 @@ wait $PIDVAL2
echo
"END BACKUP AND RESTORE..."
echo
"END BACKUP AND RESTORE..."
###############################################################################
# Test Proto User
###############################################################################
# Proto user test: client25 and client26 generate a proto user JSON file and close.
# Proto user test: client25 and client26 generate a proto user JSON file and close.
# Both clients are restarted and load from their respective proto user files and attempt to send.
# Both clients are restarted and load from their respective proto user files and attempt to send.
...
@@ -759,6 +799,9 @@ echo "$CLIENTCMD -- $PIDVAL"
...
@@ -759,6 +799,9 @@ echo "$CLIENTCMD -- $PIDVAL"
wait
$PIDVAL
wait
$PIDVAL
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test Single Use
###############################################################################
# Single-use test: client53 sends message to client52; client52 responds with
# Single-use test: client53 sends message to client52; client52 responds with
# the same message in the set number of message parts
# the same message in the set number of message parts
...
@@ -785,6 +828,9 @@ echo "$CLIENTCMD -- $PIDVAL1"
...
@@ -785,6 +828,9 @@ echo "$CLIENTCMD -- $PIDVAL1"
wait
$PIDVAL1
wait
$PIDVAL1
wait
$PIDVAL2
wait
$PIDVAL2
###############################################################################
# Test User Discovery
###############################################################################
if
[
"
$NETWORKENTRYPOINT
"
==
"localhost:8440"
]
if
[
"
$NETWORKENTRYPOINT
"
==
"localhost:8440"
]
then
then
...
@@ -871,6 +917,10 @@ then
...
@@ -871,6 +917,10 @@ then
wait
$PIDVAL
wait
$PIDVAL
fi
fi
###############################################################################
# Test Group Chat
###############################################################################
echo
"TESTING GROUP CHAT..."
echo
"TESTING GROUP CHAT..."
# Create authenticated channel between client 80 and 81
# Create authenticated channel between client 80 and 81
CLIENTCMD
=
"timeout 240s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client80.log -s blob80 --writeContact
$CLIENTOUT
/client80-contact.bin --unsafe -m
\"
Hello from contact 80 to myself, without E2E Encryption
\"
"
CLIENTCMD
=
"timeout 240s ../bin/client
$CLIENTOPTS
-l
$CLIENTOUT
/client80.log -s blob80 --writeContact
$CLIENTOUT
/client80-contact.bin --unsafe -m
\"
Hello from contact 80 to myself, without E2E Encryption
\"
"
...
@@ -1060,6 +1110,9 @@ wait $PIDVAL3
...
@@ -1060,6 +1110,9 @@ wait $PIDVAL3
echo
"GROUP CHAT FINISHED!"
echo
"GROUP CHAT FINISHED!"
###############################################################################
# Test File Transfer
###############################################################################
echo
"TESTING FILE TRANSFER..."
echo
"TESTING FILE TRANSFER..."
...
@@ -1112,6 +1165,7 @@ echo "FILE TRANSFER FINISHED..."
...
@@ -1112,6 +1165,7 @@ echo "FILE TRANSFER FINISHED..."
###############################################################################
###############################################################################
# Test connections
# Test connections
###############################################################################
###############################################################################
echo
"TESTING CONNECTIONS..."
echo
"TESTING CONNECTIONS..."
# Initiate server
# Initiate server
CLIENTCMD
=
"timeout 240s ../bin/client connection -s blob200
$CONNECTIONOPTS
--writeContact
$CLIENTOUT
/client200-server.bin -l
$CLIENTOUT
/client200.log --startServer --serverTimeout 2m"
CLIENTCMD
=
"timeout 240s ../bin/client connection -s blob200
$CONNECTIONOPTS
--writeContact
$CLIENTOUT
/client200-server.bin -l
$CLIENTOUT
/client200.log --startServer --serverTimeout 2m"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment