2012-06-21 03:58:21 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Tests for Serval DNA server operations.
|
|
|
|
#
|
|
|
|
# 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"
|
|
|
|
|
2012-07-18 10:05:47 +00:00
|
|
|
is_reachable() {
|
2012-07-27 08:34:20 +00:00
|
|
|
local sidvar="SID${1#+}"
|
|
|
|
grep "PEER REACHABLE, sid=${!sidvar}" "$instance_servald_log"
|
2012-07-18 10:05:47 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 03:58:21 +00:00
|
|
|
setup() {
|
|
|
|
setup_servald
|
|
|
|
assert_no_servald_processes
|
2012-07-04 04:42:36 +00:00
|
|
|
start_servald_instances +A +B
|
2012-07-18 10:05:47 +00:00
|
|
|
set_instance +B
|
|
|
|
wait_until --sleep=0.25 is_reachable +A
|
2012-07-04 04:42:36 +00:00
|
|
|
set_instance +A
|
2012-07-18 10:05:47 +00:00
|
|
|
wait_until --sleep=0.25 is_reachable +B
|
2012-07-31 08:17:59 +00:00
|
|
|
executeOk_servald config set debug.all Yes
|
2012-06-21 03:58:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
teardown() {
|
2012-06-26 07:14:34 +00:00
|
|
|
stop_all_servald_servers
|
2012-06-21 03:58:21 +00:00
|
|
|
kill_all_servald_processes
|
|
|
|
assert_no_servald_processes
|
|
|
|
}
|
|
|
|
|
2012-07-04 04:42:36 +00:00
|
|
|
# Called by start_servald_instances immediately before starting the server
|
|
|
|
# process in each instance.
|
|
|
|
configure_servald_server() {
|
2012-07-27 08:34:20 +00:00
|
|
|
executeOk_servald config set log.show_pid on
|
|
|
|
executeOk_servald config set log.show_time on
|
2012-07-04 04:42:36 +00:00
|
|
|
executeOk_servald config set mdp.wifi.tick_ms 100
|
|
|
|
executeOk_servald config set mdp.selfannounce.ticks_per_full_address 1
|
2012-06-28 08:50:38 +00:00
|
|
|
executeOk_servald config set debug.interfaces Yes
|
2012-07-03 08:07:03 +00:00
|
|
|
executeOk_servald config set debug.packetformats No
|
2012-07-04 02:36:15 +00:00
|
|
|
executeOk_servald config set debug.routing Yes
|
2012-07-03 08:07:03 +00:00
|
|
|
executeOk_servald config set debug.tx No
|
|
|
|
executeOk_servald config set debug.rx No
|
2012-07-04 01:02:38 +00:00
|
|
|
executeOk_servald config set debug.mdprequests Yes
|
2012-06-21 05:34:34 +00:00
|
|
|
}
|
|
|
|
|
2012-07-18 10:05:47 +00:00
|
|
|
doc_MultiServer="Start three servald servers with dummy interfaces"
|
2012-07-02 05:14:11 +00:00
|
|
|
setup_MultiServer() {
|
2012-07-04 04:42:36 +00:00
|
|
|
setup_servald
|
|
|
|
assert_no_servald_processes
|
2012-06-21 05:34:34 +00:00
|
|
|
}
|
2012-07-02 05:14:11 +00:00
|
|
|
test_MultiServer() {
|
2012-07-04 04:42:36 +00:00
|
|
|
start_servald_instances +A +B +C
|
2012-06-21 03:58:21 +00:00
|
|
|
}
|
|
|
|
|
2012-07-02 05:14:11 +00:00
|
|
|
doc_LookupWildcard="Lookup by wildcard"
|
|
|
|
test_LookupWildcard() {
|
2012-06-21 04:13:28 +00:00
|
|
|
executeOk_servald dna lookup "*"
|
2012-06-21 06:28:39 +00:00
|
|
|
assertStdoutLineCount '==' 2
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDA/$DIDA:$DIDA:$NAMEA$"
|
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDB/$DIDB:$DIDB:$NAMEB$"
|
2012-06-21 03:58:21 +00:00
|
|
|
}
|
|
|
|
|
2012-07-02 05:14:11 +00:00
|
|
|
doc_LookupEmpty="Lookup by empty string"
|
|
|
|
test_LookupEmpty() {
|
2012-06-21 04:13:28 +00:00
|
|
|
executeOk_servald dna lookup ""
|
2012-07-25 08:34:45 +00:00
|
|
|
assertStdoutLineCount '==' 2
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDA/$DIDA:$DIDA:$NAMEA$"
|
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDB/$DIDB:$DIDB:$NAMEB$"
|
2012-06-21 04:13:28 +00:00
|
|
|
}
|
|
|
|
|
2012-07-02 05:14:11 +00:00
|
|
|
doc_LookupNumber="Lookup by phone number"
|
|
|
|
test_LookupNumber() {
|
2012-06-21 06:38:39 +00:00
|
|
|
executeOk_servald dna lookup "5551234"
|
|
|
|
assertStdoutLineCount '==' 0
|
|
|
|
executeOk_servald dna lookup "555000"
|
|
|
|
assertStdoutLineCount '==' 0
|
|
|
|
executeOk_servald dna lookup "55500011"
|
|
|
|
assertStdoutLineCount '==' 0
|
2012-08-02 06:16:53 +00:00
|
|
|
executeOk_servald dna lookup "$DIDA"
|
2012-07-05 05:27:28 +00:00
|
|
|
assertStdoutLineCount '==' 1
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDA/$DIDA:$DIDA:$NAMEA$"
|
|
|
|
executeOk_servald dna lookup "$DIDB"
|
2012-07-05 05:27:28 +00:00
|
|
|
assertStdoutLineCount '==' 1
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDB/$DIDB:$DIDB:$NAMEB$"
|
2012-06-21 06:38:39 +00:00
|
|
|
}
|
2012-06-21 04:13:28 +00:00
|
|
|
|
2012-07-02 05:14:11 +00:00
|
|
|
doc_NodeinfoLocal="Node info auto-resolves for local identities"
|
|
|
|
test_NodeinfoLocal() {
|
2012-06-21 06:51:16 +00:00
|
|
|
# node info for a local identity returns DID/Name since it is free, even
|
|
|
|
# if it isn't asked for.
|
|
|
|
executeOk_servald node info $SIDA
|
|
|
|
assertStdoutLineCount '==' 1
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 ":$SIDA:"
|
|
|
|
assertStdoutGrep --matches=1 ":$DIDA:"
|
|
|
|
assertStdoutGrep --matches=1 ":$NAMEA"
|
2012-06-21 06:51:16 +00:00
|
|
|
assertStdoutGrep --matches=0 "did-not-resolved"
|
|
|
|
}
|
|
|
|
|
2012-07-02 05:14:11 +00:00
|
|
|
doc_NodeinfoRemote="Node info resolves remote identities"
|
|
|
|
test_NodeinfoRemote() {
|
2012-08-02 06:16:53 +00:00
|
|
|
# if resolvedid is not specified for a remote identity, then don't resolve it.
|
2012-06-21 06:51:16 +00:00
|
|
|
executeOk_servald node info $SIDB
|
|
|
|
assertStdoutLineCount '==' 1
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 ":$SIDB:"
|
|
|
|
assertStdoutGrep --matches=0 ":$DIDB:"
|
|
|
|
assertStdoutGrep --matches=0 ":$NAMEB"
|
2012-06-21 06:51:16 +00:00
|
|
|
assertStdoutGrep --matches=1 "did-not-resolved"
|
|
|
|
# But if it resolvedid is specified, then do resolve it using DNA
|
|
|
|
executeOk_servald node info $SIDB resolvedid
|
|
|
|
assertStdoutLineCount '==' 1
|
2012-08-02 06:16:53 +00:00
|
|
|
assertStdoutGrep --matches=1 ":$SIDB:"
|
|
|
|
assertStdoutGrep --matches=1 ":$DIDB:"
|
|
|
|
assertStdoutGrep --matches=1 ":$NAMEB"
|
2012-06-21 06:51:16 +00:00
|
|
|
assertStdoutGrep --matches=0 "did-not-resolved"
|
|
|
|
}
|
|
|
|
|
2012-06-21 03:58:21 +00:00
|
|
|
runTests "$@"
|