mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 05:07:56 +00:00
7a8323b31d
Rename tests to start with "Stress" prefix Refactor StressRhizomeAdd test to use conventional utilities and be more readable. Remove trailing "sleep 10".
121 lines
3.4 KiB
Bash
Executable File
121 lines
3.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stress tests for Serval rhizome protocol.
|
|
#
|
|
# Copyright 2012 Serval Project, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
source "${0%/*}/../testframework.sh"
|
|
source "${0%/*}/../testdefs.sh"
|
|
source "${0%/*}/../testdefs_rhizome.sh"
|
|
|
|
shopt -s extglob
|
|
|
|
finally() {
|
|
stop_all_servald_servers
|
|
}
|
|
|
|
teardown() {
|
|
kill_all_servald_processes
|
|
assert_no_servald_processes
|
|
report_all_servald_servers
|
|
}
|
|
|
|
# Called by start_servald_instances for each instance.
|
|
configure_servald_server() {
|
|
executeOk_servald config \
|
|
set log.show_pid on \
|
|
set log.show_time on \
|
|
set debug.rhizome off \
|
|
set debug.rhizome_tx off \
|
|
set debug.rhizome_rx off \
|
|
set server.respawn_on_crash off \
|
|
set mdp.iftype.wifi.tick_ms 500
|
|
}
|
|
|
|
doc_StressRhizomeTransfer="Stress - five nodes each sharing 16 bundles"
|
|
setup_StressRhizomeTransfer() {
|
|
setup_servald
|
|
assert_no_servald_processes
|
|
foreach_instance +A +B +C +D +E create_single_identity
|
|
for i in A B C D E
|
|
do
|
|
eval "bundles$i=()"
|
|
set_instance +$i
|
|
let j=0
|
|
for n in 1 2 3 4 5 6 7 8 9 a b c d e f g
|
|
do
|
|
rhizome_add_file file-$i-$n $((2 ** (j + 10)))
|
|
eval "bundles$i+=(\$BID:\$VERSION)"
|
|
let j=j+1
|
|
done
|
|
done
|
|
}
|
|
test_StressRhizomeTransfer() {
|
|
start_servald_instances +A +B +C +D +E
|
|
wait_until --timeout=600 bundle_received_by \
|
|
${bundlesA[*]} +B +C +D +E \
|
|
${bundlesB[*]} +A +C +D +E \
|
|
${bundlesC[*]} +A +B +D +E \
|
|
${bundlesD[*]} +A +B +C +E \
|
|
${bundlesE[*]} +A +B +C +D
|
|
stop_all_servald_servers
|
|
local i
|
|
for i in A B C D E; do
|
|
set_instance +$i
|
|
executeOk_servald rhizome list ''
|
|
assert_rhizome_list --fromhere=1 file-$i-? --fromhere=0 file-!($i)-?
|
|
assert_rhizome_received file-!($i)-?
|
|
done
|
|
}
|
|
|
|
setup_StressRhizomeAdd() {
|
|
setup_servald
|
|
assert_no_servald_processes
|
|
foreach_instance +A +B +C +D +E +F +G +H create_single_identity
|
|
start_servald_instances +A +B +C +D +E +F +G +H
|
|
}
|
|
|
|
amend_file() {
|
|
create_file --append file$instance_name 100
|
|
rm -f file$instance_name.manifest # ensure 'rhizome add file' generates a new Bundle ID
|
|
rhizome_add_file file$instance_name
|
|
}
|
|
|
|
rhizome_list_bundle_count() {
|
|
executeOk_servald rhizome list ''
|
|
local lineCount=$(( $(replayStdout | wc -l) + 0 ))
|
|
tfw_log "lineCount=$lineCount"
|
|
echo $(($lineCount - 2))
|
|
}
|
|
|
|
rhizome_bundle_count_equals() {
|
|
[ $(rhizome_list_bundle_count) -eq $1 ]
|
|
}
|
|
|
|
doc_StressRhizomeAdd="Add files while transferring"
|
|
test_StressRhizomeAdd() {
|
|
local total_files=0
|
|
for i in A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
|
do
|
|
foreach_instance +A +B +C +D +E +F +G +H amend_file
|
|
let total_files+=8
|
|
done
|
|
foreach_instance +A +B +C +D +E +F +G +H wait_until --timeout=120 rhizome_bundle_count_equals $total_files
|
|
}
|
|
|
|
runTests "$@"
|