2012-07-06 05:09:25 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Tests for Serval rhizome protocol.
|
|
|
|
#
|
|
|
|
# Copyright 2012 Paul Gardner-Stephen
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2012-10-18 01:16:32 +00:00
|
|
|
finally() {
|
|
|
|
stop_all_servald_servers
|
|
|
|
}
|
|
|
|
|
2012-07-06 05:09:25 +00:00
|
|
|
teardown() {
|
|
|
|
kill_all_servald_processes
|
|
|
|
assert_no_servald_processes
|
2012-10-18 01:16:32 +00:00
|
|
|
report_all_servald_servers
|
2012-07-06 05:09:25 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 07:13:21 +00:00
|
|
|
# Called by start_servald_instances for each instance.
|
2012-07-06 05:09:25 +00:00
|
|
|
configure_servald_server() {
|
2012-07-11 07:39:50 +00:00
|
|
|
executeOk_servald config set log.show_pid on
|
|
|
|
executeOk_servald config set log.show_time on
|
2012-07-06 05:09:25 +00:00
|
|
|
executeOk_servald config set debug.rhizome on
|
2012-07-13 01:36:10 +00:00
|
|
|
executeOk_servald config set debug.rhizometx on
|
2012-07-12 07:09:01 +00:00
|
|
|
executeOk_servald config set debug.rhizomerx on
|
2012-07-25 07:31:47 +00:00
|
|
|
executeOk_servald config set server.respawn_on_signal off
|
2012-09-28 08:20:49 +00:00
|
|
|
executeOk_servald config set mdp.wifi.tick_ms 500
|
2012-07-10 10:30:20 +00:00
|
|
|
executeOk_servald config set mdp.selfannounce.ticks_per_full_address 1
|
2012-07-11 07:20:50 +00:00
|
|
|
executeOk_servald config set rhizome.fetch_interval_ms 100
|
2012-07-06 05:09:25 +00:00
|
|
|
}
|
|
|
|
|
2012-07-11 08:12:30 +00:00
|
|
|
# Predicate function:
|
2012-10-17 07:40:39 +00:00
|
|
|
# - return true if the file bundles identified by args BID[:VERSION] has been
|
|
|
|
# received by all the given instances args +I
|
2012-07-11 08:12:30 +00:00
|
|
|
# - does this by examining the server log files of the respective instances
|
|
|
|
# for tell-tale INFO messages
|
|
|
|
bundle_received_by() {
|
2012-10-17 07:40:39 +00:00
|
|
|
local -a rexps
|
|
|
|
local restart=true
|
|
|
|
local arg bid version rexp
|
|
|
|
for arg; do
|
|
|
|
case "$arg" in
|
|
|
|
+([0-9A-F])?(:+([0-9])))
|
|
|
|
$restart && rexps=()
|
|
|
|
restart=false
|
|
|
|
bid="${arg%%:*}"
|
|
|
|
matches_rexp "$rexp_manifestid" "$bid" || error "invalid bundle ID: $bid"
|
|
|
|
if [ "$bid" = "$arg" ]; then
|
|
|
|
rexps+=("RHIZOME ADD MANIFEST service=file bid=$bid")
|
|
|
|
else
|
|
|
|
version="${arg#*:}"
|
|
|
|
rexps+=("RHIZOME ADD MANIFEST service=file bid=$bid version=$version")
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
+[A-Z])
|
|
|
|
local logvar="LOG${arg#+}"
|
|
|
|
for rexp in "${rexps[@]}"; do
|
|
|
|
grep "$rexp" "${!logvar}" || return 1
|
|
|
|
done
|
|
|
|
restart=true
|
2012-10-04 04:55:08 +00:00
|
|
|
;;
|
|
|
|
--stderr)
|
2012-10-17 07:40:39 +00:00
|
|
|
for rexp in "${rexps[@]}"; do
|
|
|
|
replayStderr | grep "$rexp" || return 1
|
|
|
|
done
|
|
|
|
restart=true
|
2012-08-27 06:59:46 +00:00
|
|
|
;;
|
|
|
|
*)
|
2012-10-17 07:40:39 +00:00
|
|
|
error "invalid argument: $arg"
|
2012-10-04 04:55:08 +00:00
|
|
|
return 1
|
2012-08-27 06:59:46 +00:00
|
|
|
;;
|
|
|
|
esac
|
2012-07-11 08:12:30 +00:00
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2012-09-28 08:20:49 +00:00
|
|
|
setup_curl_7() {
|
2012-09-27 08:06:22 +00:00
|
|
|
case "$(curl --version | tr '\n' ' ')" in
|
|
|
|
curl\ @(7|8|9|[1-9][0-1]).*\ Protocols:*\ http\ *) ;;
|
|
|
|
'') fail "curl(1) command is not present";;
|
|
|
|
*) fail "curl(1) version is not adequate (expecting 7 or higher)";;
|
|
|
|
esac
|
2012-09-28 08:20:49 +00:00
|
|
|
unset http_proxy
|
|
|
|
unset HTTP_PROXY
|
|
|
|
unset HTTPS_PROXY
|
|
|
|
unset ALL_PROXY
|
2012-09-27 08:06:22 +00:00
|
|
|
}
|
|
|
|
|
2012-07-17 04:39:35 +00:00
|
|
|
setup_common() {
|
2012-07-06 05:09:25 +00:00
|
|
|
setup_servald
|
|
|
|
assert_no_servald_processes
|
2012-10-18 01:16:32 +00:00
|
|
|
foreach_instance +A +B create_single_identity
|
|
|
|
set_instance +B
|
2012-07-16 08:59:29 +00:00
|
|
|
}
|
|
|
|
|
2012-07-17 04:39:35 +00:00
|
|
|
extract_manifest_vars() {
|
|
|
|
local manifest="${1?}"
|
|
|
|
extract_manifest_id BID "$manifest"
|
|
|
|
extract_manifest_version VERSION "$manifest"
|
|
|
|
extract_manifest_filesize FILESIZE "$manifest"
|
|
|
|
FILEHASH=
|
|
|
|
if [ "$FILESIZE" != '0' ]; then
|
|
|
|
extract_manifest_filehash FILEHASH "$manifest"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
add_file() {
|
|
|
|
local name="$1"
|
2012-10-03 08:21:37 +00:00
|
|
|
[ -e "$name" ] || echo "File $name" >"$name"
|
2012-07-17 04:39:35 +00:00
|
|
|
local sidvar="SID$instance_name"
|
|
|
|
executeOk_servald rhizome add file "${!sidvar}" '' "$name" "$name.manifest"
|
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 --author="${!sidvar}" "$name" --and-others
|
2012-07-17 04:39:35 +00:00
|
|
|
extract_manifest_vars "$name.manifest"
|
|
|
|
}
|
|
|
|
|
|
|
|
update_file() {
|
|
|
|
local orig_name="$1"
|
|
|
|
local new_name="$2"
|
|
|
|
[ -e "$new_name" ] || echo 'File $new_name' >"$new_name"
|
|
|
|
local sidvar="SID$instance_name"
|
|
|
|
[ "$new_name" != "$orig_name" ] && cp "$orig_name.manifest" "$new_name.manifest"
|
2012-09-27 05:44:43 +00:00
|
|
|
$SED -i -e '/^date=/d;/^filehash=/d;/^filesize=/d;/^version=/d;/^name=/d' "$new_name.manifest"
|
2012-07-17 04:39:35 +00:00
|
|
|
executeOk_servald rhizome add file "${!sidvar}" '' "$new_name" "$new_name.manifest"
|
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 "$new_name"
|
2012-07-17 04:39:35 +00:00
|
|
|
extract_manifest_vars "$new_name.manifest"
|
|
|
|
}
|
|
|
|
|
2012-10-03 08:21:37 +00:00
|
|
|
assert_received() {
|
2012-10-17 07:40:39 +00:00
|
|
|
[ $# -ne 0 ] || error "missing arguments"
|
|
|
|
local name
|
2012-10-03 08:21:37 +00:00
|
|
|
local _hash
|
2012-10-17 07:40:39 +00:00
|
|
|
for name; do
|
|
|
|
if [ -s "$name" ]; then
|
|
|
|
extract_manifest_filehash _hash "$name.manifest"
|
|
|
|
executeOk_servald rhizome extract file "$_hash" extracted
|
|
|
|
assert cmp "$name" extracted
|
|
|
|
fi
|
|
|
|
done
|
2012-10-03 08:21:37 +00:00
|
|
|
}
|
|
|
|
|
2012-07-17 04:39:35 +00:00
|
|
|
doc_FileTransfer="New bundle and update transfer to one node"
|
|
|
|
setup_FileTransfer() {
|
|
|
|
setup_common
|
|
|
|
set_instance +A
|
|
|
|
add_file file1
|
2012-07-16 08:59:29 +00:00
|
|
|
start_servald_instances +A +B
|
2012-09-14 06:39:28 +00:00
|
|
|
foreach_instance +A assert_peers_are_instances +B
|
|
|
|
foreach_instance +B assert_peers_are_instances +A
|
2012-07-17 04:39:35 +00:00
|
|
|
}
|
|
|
|
test_FileTransfer() {
|
2012-10-17 07:40:39 +00:00
|
|
|
wait_until bundle_received_by $BID:$VERSION +B
|
2012-07-17 04:39:35 +00:00
|
|
|
set_instance +B
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file1
|
2012-07-17 04:39:35 +00:00
|
|
|
assert_received file1
|
|
|
|
set_instance +A
|
|
|
|
update_file file1 file2
|
2012-07-11 07:13:21 +00:00
|
|
|
set_instance +B
|
2012-10-17 07:40:39 +00:00
|
|
|
wait_until bundle_received_by $BID:$VERSION +B
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file2
|
2012-07-17 04:39:35 +00:00
|
|
|
assert_received file2
|
2012-07-06 05:09:25 +00:00
|
|
|
}
|
2012-07-17 04:39:35 +00:00
|
|
|
|
|
|
|
doc_FileTransferBig="Big new bundle transfers to one node"
|
|
|
|
setup_FileTransferBig() {
|
|
|
|
setup_common
|
|
|
|
set_instance +A
|
|
|
|
dd if=/dev/urandom of=file1 bs=1k count=1k 2>&1
|
|
|
|
echo x >>file1
|
|
|
|
ls -l file1
|
|
|
|
add_file file1
|
|
|
|
start_servald_instances +A +B
|
2012-09-14 06:39:28 +00:00
|
|
|
foreach_instance +A assert_peers_are_instances +B
|
|
|
|
foreach_instance +B assert_peers_are_instances +A
|
2012-07-17 04:39:35 +00:00
|
|
|
}
|
|
|
|
test_FileTransferBig() {
|
2012-10-17 07:40:39 +00:00
|
|
|
wait_until bundle_received_by $BID:$VERSION +B
|
2012-07-17 04:39:35 +00:00
|
|
|
set_instance +B
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file1
|
2012-07-17 04:39:35 +00:00
|
|
|
assert_received file1
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_FileTransferMulti="New bundle transfers to four nodes"
|
|
|
|
setup_FileTransferMulti() {
|
|
|
|
setup_common
|
|
|
|
set_instance +A
|
|
|
|
add_file file1
|
2012-07-11 08:12:30 +00:00
|
|
|
start_servald_instances +A +B +C +D +E
|
2012-09-14 06:39:28 +00:00
|
|
|
foreach_instance +A assert_peers_are_instances +B +C +D +E
|
|
|
|
foreach_instance +B assert_peers_are_instances +A +C +D +E
|
|
|
|
foreach_instance +C assert_peers_are_instances +A +B +D +E
|
|
|
|
foreach_instance +D assert_peers_are_instances +A +B +C +E
|
2012-07-11 08:12:30 +00:00
|
|
|
}
|
2012-07-17 04:39:35 +00:00
|
|
|
test_FileTransferMulti() {
|
2012-10-17 07:40:39 +00:00
|
|
|
wait_until bundle_received_by $BID:$VERSION +B +C +D +E
|
|
|
|
for i in B C D E; do
|
|
|
|
set_instance +$i
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file1
|
2012-07-17 04:39:35 +00:00
|
|
|
assert_received file1
|
2012-07-11 08:12:30 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2012-07-17 04:39:35 +00:00
|
|
|
doc_FileTransferDelete="Payload deletion transfers to one node"
|
2012-07-16 08:59:29 +00:00
|
|
|
setup_FileTransferDelete() {
|
2012-07-17 04:39:35 +00:00
|
|
|
setup_common
|
|
|
|
set_instance +A
|
|
|
|
add_file file1
|
2012-07-16 08:59:29 +00:00
|
|
|
start_servald_instances +A +B
|
2012-09-14 06:39:28 +00:00
|
|
|
foreach_instance +A assert_peers_are_instances +B
|
|
|
|
foreach_instance +B assert_peers_are_instances +A
|
2012-10-17 07:40:39 +00:00
|
|
|
wait_until bundle_received_by $BID:$VERSION +B
|
2012-07-16 08:59:29 +00:00
|
|
|
set_instance +A
|
|
|
|
>file1_2
|
2012-07-17 04:39:35 +00:00
|
|
|
update_file file1 file1_2
|
2012-07-16 08:59:29 +00:00
|
|
|
}
|
|
|
|
test_FileTransferDelete() {
|
2012-10-17 07:40:39 +00:00
|
|
|
wait_until bundle_received_by $BID:$VERSION +B
|
2012-07-16 08:59:29 +00:00
|
|
|
set_instance +B
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file1_2
|
2012-07-17 04:39:35 +00:00
|
|
|
assert_received file1_2
|
2012-07-16 08:59:29 +00:00
|
|
|
}
|
|
|
|
|
2012-10-02 07:46:44 +00:00
|
|
|
doc_HttpImport="Import bundle using HTTP POST multi-part form."
|
|
|
|
setup_HttpImport() {
|
|
|
|
setup_curl_7
|
|
|
|
setup_common
|
|
|
|
cat >README.WHYNOTSIPS <<'EOF'
|
|
|
|
When we were looking at implementing secure calls for OpenBTS it was suggested
|
|
|
|
that we configure Asterisk to use SIPS/ZRTP. This would have been relatively
|
|
|
|
easy to setup, however there are a few problems.
|
|
|
|
|
|
|
|
Number one is that when Asterisk checks the certificates it will either
|
|
|
|
validate the certificate (checking the chain of trust and so on) and then
|
|
|
|
check that the common name attribute on the certificate matches the hostname
|
|
|
|
of the peer, or it will do none of these checks. This code is in main/tcptls.c
|
|
|
|
line 206 (in version 1.8.14.1).
|
|
|
|
|
|
|
|
This is undesirable in a setup where there is limited or no infrastructure as
|
|
|
|
there is not likely to be a DNS server setup, or even rigid IP assignments
|
|
|
|
that would allow a static hosts file based setup. This situation would force
|
|
|
|
the administrator to disable the checks completely which would allow a trivial
|
|
|
|
man in the middle attack.
|
|
|
|
|
|
|
|
It would be possible to modify Asterisk to have a third way where it validates
|
|
|
|
the certificate and checks the chain of trust but does not look at the common
|
|
|
|
name. We decided against this approach as the VOMP channel driver was written
|
|
|
|
in time to avoid it.
|
|
|
|
EOF
|
|
|
|
set_instance +B
|
|
|
|
executeOk_servald rhizome add file $SIDB '' README.WHYNOTSIPS README.WHYNOTSIPS.manifest
|
|
|
|
assert_manifest_complete README.WHYNOTSIPS.manifest
|
|
|
|
assert_stdout_add_file README.WHYNOTSIPS
|
|
|
|
set_instance +A
|
|
|
|
start_servald_instances +A
|
|
|
|
wait_until rhizome_http_server_started +A
|
|
|
|
get_rhizome_server_port PORTA +A
|
|
|
|
}
|
|
|
|
test_HttpImport() {
|
|
|
|
executeOk curl \
|
|
|
|
--silent --fail --show-error \
|
|
|
|
--output http.output \
|
|
|
|
--dump-header http.headers \
|
|
|
|
--write-out '%{http_code}\n' \
|
|
|
|
--form 'data=@README.WHYNOTSIPS' \
|
|
|
|
--form 'manifest=@README.WHYNOTSIPS.manifest' \
|
|
|
|
"$addr_localhost:$PORTA/rhizome/import"
|
|
|
|
tfw_cat http.headers http.output
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 README.WHYNOTSIPS
|
2012-10-03 08:21:37 +00:00
|
|
|
assert_received README.WHYNOTSIPS
|
2012-10-02 07:46:44 +00:00
|
|
|
}
|
|
|
|
|
2012-10-04 04:55:08 +00:00
|
|
|
doc_HttpAddLocal="Add file locally using HTTP, returns manifest"
|
|
|
|
setup_HttpAddLocal() {
|
|
|
|
setup_curl_7
|
|
|
|
setup_common
|
|
|
|
set_instance +A
|
|
|
|
executeOk_servald config set rhizome.api.addfile.uri "/rhizome/secretaddfile"
|
|
|
|
executeOk_servald config set rhizome.api.addfile.author $SIDA
|
|
|
|
start_servald_instances +A
|
|
|
|
wait_until rhizome_http_server_started +A
|
|
|
|
get_rhizome_server_port PORTA +A
|
|
|
|
}
|
|
|
|
test_HttpAddLocal() {
|
|
|
|
echo 'File file1' >file1
|
|
|
|
executeOk curl --silent --form 'data=@file1' "http://$addr_localhost:$PORTA/rhizome/secretaddfile" --output file1.manifest
|
|
|
|
assert_manifest_complete file1.manifest
|
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 file1
|
2012-10-04 04:55:08 +00:00
|
|
|
extract_manifest_name name file1.manifest
|
|
|
|
assert [ "$name" = file1 ]
|
|
|
|
assert_received file1
|
|
|
|
}
|
|
|
|
|
2012-08-27 06:59:46 +00:00
|
|
|
setup_sync() {
|
|
|
|
set_instance +A
|
|
|
|
add_file file1
|
|
|
|
BID1=$BID
|
|
|
|
VERSION1=$VERSION
|
|
|
|
start_servald_instances dummy1 +A
|
|
|
|
wait_until rhizome_http_server_started +A
|
|
|
|
get_rhizome_server_port PORTA +A
|
|
|
|
set_instance +B
|
2012-10-04 08:08:33 +00:00
|
|
|
executeOk_servald config set log.show_time on
|
|
|
|
executeOk_servald config set debug.rhizome on
|
|
|
|
executeOk_servald config set debug.rhizometx on
|
|
|
|
executeOk_servald config set debug.rhizomerx on
|
2012-10-04 04:55:08 +00:00
|
|
|
executeOk_servald config set rhizome.direct.peer.count "1"
|
|
|
|
executeOk_servald config set rhizome.direct.peer.0 "http://${addr_localhost}:${PORTA}"
|
2012-08-27 06:59:46 +00:00
|
|
|
add_file file2
|
|
|
|
BID2=$BID
|
|
|
|
VERSION2=$VERSION
|
|
|
|
}
|
|
|
|
|
2012-10-04 04:55:08 +00:00
|
|
|
doc_DirectPush="One way push bundle to unconnected node"
|
|
|
|
setup_DirectPush() {
|
2012-08-27 06:59:46 +00:00
|
|
|
setup_common
|
|
|
|
setup_sync
|
|
|
|
}
|
2012-10-04 04:55:08 +00:00
|
|
|
test_DirectPush() {
|
2012-10-03 16:15:09 +00:00
|
|
|
set_instance +B
|
2012-10-03 15:55:55 +00:00
|
|
|
executeOk_servald rhizome direct push
|
2012-10-04 08:08:33 +00:00
|
|
|
tfw_cat --stdout --stderr
|
2012-10-17 07:40:39 +00:00
|
|
|
assert bundle_received_by $BID2:$VERSION2 +A
|
2012-10-03 16:15:09 +00:00
|
|
|
set_instance +A
|
2012-10-02 11:30:56 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 file1 --fromhere=0 file2
|
2012-10-04 04:55:08 +00:00
|
|
|
assert_received file2
|
2012-10-02 10:31:46 +00:00
|
|
|
set_instance +B
|
2012-10-02 11:30:56 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 file2
|
2012-08-27 06:59:46 +00:00
|
|
|
}
|
|
|
|
|
2012-10-04 04:55:08 +00:00
|
|
|
doc_DirectPull="One way pull bundle from unconnected node"
|
|
|
|
setup_DirectPull() {
|
2012-08-27 06:59:46 +00:00
|
|
|
setup_common
|
|
|
|
setup_sync
|
|
|
|
}
|
2012-10-04 04:55:08 +00:00
|
|
|
test_DirectPull() {
|
2012-10-03 16:15:09 +00:00
|
|
|
set_instance +B
|
2012-10-03 15:55:55 +00:00
|
|
|
executeOk_servald rhizome direct pull
|
2012-10-04 08:08:33 +00:00
|
|
|
tfw_cat --stdout --stderr
|
2012-10-17 07:40:39 +00:00
|
|
|
assert bundle_received_by $BID1:$VERSION1 --stderr
|
2012-10-03 16:15:09 +00:00
|
|
|
set_instance +A
|
2012-10-02 13:22:56 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 file1
|
2012-10-02 13:22:56 +00:00
|
|
|
set_instance +B
|
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file1 --fromhere=1 file2
|
2012-10-04 04:55:08 +00:00
|
|
|
assert_received file1
|
2012-08-27 06:59:46 +00:00
|
|
|
}
|
|
|
|
|
2012-10-04 04:55:08 +00:00
|
|
|
doc_DirectSync="Two-way sync bundles between unconnected nodes"
|
|
|
|
setup_DirectSync() {
|
2012-08-27 06:59:46 +00:00
|
|
|
setup_common
|
|
|
|
setup_sync
|
|
|
|
}
|
2012-10-04 04:55:08 +00:00
|
|
|
test_DirectSync() {
|
2012-10-03 16:17:12 +00:00
|
|
|
set_instance +B
|
2012-10-02 23:45:18 +00:00
|
|
|
executeOk_servald rhizome direct sync
|
2012-10-04 08:08:33 +00:00
|
|
|
tfw_cat --stdout --stderr
|
2012-10-17 07:40:39 +00:00
|
|
|
assert bundle_received_by $BID1:$VERSION1 --stderr $BID2:$VERSION2 +A
|
2012-10-03 16:17:12 +00:00
|
|
|
set_instance +A
|
2012-10-02 13:22:56 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=1 file1 --fromhere=0 file2
|
2012-10-04 04:55:08 +00:00
|
|
|
assert_received file2
|
2012-08-27 06:59:46 +00:00
|
|
|
set_instance +B
|
2012-10-02 13:22:56 +00:00
|
|
|
executeOk_servald rhizome list ''
|
2012-10-17 07:40:39 +00:00
|
|
|
assert_rhizome_list --fromhere=0 file1 --fromhere=1 file2
|
2012-10-04 04:55:08 +00:00
|
|
|
assert_received file1
|
2012-08-27 08:27:41 +00:00
|
|
|
}
|
|
|
|
|
2012-10-18 01:21:10 +00:00
|
|
|
doc_FileTransferStress="Stress - five nodes each sharing 16 bundles"
|
2012-10-17 07:40:39 +00:00
|
|
|
setup_FileTransferStress() {
|
|
|
|
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
|
|
|
|
for n in 1 2 3 4 5 6 7 8 9 a b c d e f g
|
|
|
|
do
|
|
|
|
add_file file-$i-$n
|
|
|
|
eval "bundles$i+=(\$BID:\$VERSION)"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
test_FileTransferStress() {
|
2012-10-18 01:21:10 +00:00
|
|
|
start_servald_instances +A +B +C +D +E
|
2012-10-18 06:59:58 +00:00
|
|
|
wait_until --timeout=180 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
|
2012-10-17 07:40:39 +00:00
|
|
|
local i
|
|
|
|
for i in A B C D E; do
|
|
|
|
set_instance +$i
|
|
|
|
executeOk_servald rhizome list ''
|
2012-10-18 06:59:58 +00:00
|
|
|
assert_rhizome_list --fromhere=1 file-$i-? --fromhere=0 file-!($i)-?
|
|
|
|
assert_received file-!($i)-?
|
2012-10-17 07:40:39 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2012-07-06 05:09:25 +00:00
|
|
|
runTests "$@"
|