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"
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
setup_servald
|
|
|
|
assert_no_servald_processes
|
2012-07-04 04:42:36 +00:00
|
|
|
start_servald_instances +A +B
|
|
|
|
set_instance +A
|
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() {
|
|
|
|
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-04 04:42:36 +00:00
|
|
|
doc_MultiServer="Start three servald servers with dummy interface"
|
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-06-21 06:34:14 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDA/5550001:5550001:Agent A Smith$"
|
2012-07-05 05:27:28 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDB/5550002:5550002:Agent B Smith$"
|
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-06-21 06:28:39 +00:00
|
|
|
assertStdoutLineCount '==' 2
|
2012-06-21 06:34:14 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDA/5550001:5550001:Agent A Smith$"
|
2012-07-05 05:27:28 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDB/5550002:5550002:Agent B Smith$"
|
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
|
|
|
|
executeOk_servald dna lookup "5550001"
|
2012-07-05 05:27:28 +00:00
|
|
|
assertStdoutLineCount '==' 1
|
2012-06-21 06:38:39 +00:00
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDA/5550001:5550001:Agent A Smith$"
|
2012-07-05 05:27:28 +00:00
|
|
|
executeOk_servald dna lookup "5550002"
|
|
|
|
assertStdoutLineCount '==' 1
|
|
|
|
assertStdoutGrep --matches=1 "^sid://$SIDB/5550002:5550002:Agent B Smith$"
|
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
|
|
|
|
assertStdoutGrep --matches=1 "Agent A Smith"
|
|
|
|
assertStdoutGrep --matches=0 "did-not-resolved"
|
|
|
|
}
|
|
|
|
|
2012-07-02 05:14:11 +00:00
|
|
|
doc_NodeinfoRemote="Node info resolves remote identities"
|
|
|
|
test_NodeinfoRemote() {
|
2012-06-21 06:51:16 +00:00
|
|
|
# if resolvedid is not specified for a remote identity, then don't resolve
|
|
|
|
# it.
|
|
|
|
executeOk_servald node info $SIDB
|
|
|
|
assertStdoutLineCount '==' 1
|
|
|
|
assertStdoutGrep --matches=0 "Agent B Smith"
|
|
|
|
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
|
|
|
|
assertStdoutGrep --matches=1 "Agent B Smith"
|
|
|
|
assertStdoutGrep --matches=0 "did-not-resolved"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-06-21 03:58:21 +00:00
|
|
|
runTests "$@"
|