2018-03-21 23:43:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Tests for Serval DNA Route REST API
|
|
|
|
#
|
|
|
|
# Copyright 2018 Flinders University
|
|
|
|
#
|
|
|
|
# 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_rest.sh"
|
|
|
|
source "${0%/*}/../testdefs_routing.sh"
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
setup_rest_utilities
|
|
|
|
setup_servald
|
|
|
|
assert_no_servald_processes
|
|
|
|
setup_rest_config +A
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_servald_server() {
|
2018-04-08 22:41:44 +00:00
|
|
|
setup_route_config
|
2018-03-21 23:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
finally() {
|
|
|
|
stop_all_servald_servers
|
|
|
|
}
|
|
|
|
|
|
|
|
teardown() {
|
|
|
|
foreach_instance_with_pidfile log_routing_table
|
|
|
|
stop_all_servald_servers
|
|
|
|
kill_all_servald_processes
|
|
|
|
assert_no_servald_processes
|
|
|
|
report_all_servald_servers
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_AuthBasicMissing="REST API missing Basic Authentication credentials"
|
|
|
|
setup_AuthBasicMissing() {
|
|
|
|
setup
|
|
|
|
set_instance +A
|
|
|
|
start_servald_server
|
|
|
|
wait_until_rest_server_ready
|
|
|
|
}
|
|
|
|
test_AuthBasicMissing() {
|
|
|
|
rest_request GET "/restful/route/all.json" 401 --no-auth
|
|
|
|
assertGrep response.headers "^WWW-Authenticate: Basic realm=\"Serval RESTful API\"$CR\$"
|
|
|
|
assertJq response.json 'contains({"http_status_code": 401})'
|
|
|
|
assertJq response.json 'contains({"http_status_message": ""})'
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_AuthBasicWrong="REST API incorrect Basic Authentication credentials"
|
|
|
|
setup_AuthBasicWrong() {
|
|
|
|
setup
|
|
|
|
set_instance +A
|
|
|
|
start_servald_server
|
|
|
|
wait_until_rest_server_ready
|
|
|
|
}
|
|
|
|
test_AuthBasicWrong() {
|
|
|
|
rest_request GET "/restful/route/all.json" 401 --user=fred:nurks
|
|
|
|
assertGrep response.headers "^WWW-Authenticate: Basic realm=\"Serval RESTful API\"$CR\$"
|
|
|
|
assertJq response.json 'contains({"http_status_code": 401})'
|
|
|
|
assertJq response.json 'contains({"http_status_message": ""})'
|
|
|
|
rest_request GET "/restful/route/all.json" 200 --user=ron:weasley
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_RouteListAll="REST API list entire routing table"
|
|
|
|
setup_RouteListAll() {
|
|
|
|
setup
|
2018-04-04 03:08:37 +00:00
|
|
|
DIDA1=565656
|
|
|
|
NAMEA1="Neddy Seagoon"
|
|
|
|
DIDA2=3020304
|
|
|
|
NAMEA2="Spike Milligan"
|
2018-03-21 23:43:08 +00:00
|
|
|
foreach_instance +A +B create_identities 2
|
|
|
|
foreach_instance +A +B add_servald_interface 1
|
|
|
|
foreach_instance +A +B start_servald_server
|
|
|
|
wait_until_rest_server_ready +A
|
|
|
|
get_servald_primary_sid +B PRIMARY_SIDB
|
|
|
|
wait_until --timeout=20 path_exists +A +B
|
|
|
|
wait_until --timeout=10 path_exists +B +A
|
|
|
|
set_instance +A
|
|
|
|
}
|
|
|
|
test_RouteListAll() {
|
|
|
|
rest_request GET "/restful/route/all.json"
|
|
|
|
transform_list_json response.json routes.json
|
|
|
|
assert [ "$(jq 'length' routes.json)" = 4 ]
|
2018-04-04 03:08:37 +00:00
|
|
|
assertJq routes.json 'contains([{"sid": "'"$SIDA1"'",
|
|
|
|
"did": "'"$DIDA1"'",
|
|
|
|
"name": "'"$NAMEA1"'",
|
2018-03-21 23:43:08 +00:00
|
|
|
"is_self": true,
|
|
|
|
"hop_count": 0}])'
|
2018-04-04 03:08:37 +00:00
|
|
|
assertJq routes.json 'contains([{"sid": "'"$SIDA2"'",
|
|
|
|
"did": "'"$DIDA2"'",
|
|
|
|
"name": "'"$NAMEA2"'",
|
2018-03-21 23:43:08 +00:00
|
|
|
"is_self": true,
|
|
|
|
"hop_count": 0}])'
|
2018-04-04 03:08:37 +00:00
|
|
|
assertJq routes.json 'contains([{"sid": "'"$PRIMARY_SIDB"'",
|
2018-03-21 23:43:08 +00:00
|
|
|
"is_self": false,
|
|
|
|
"reachable_unicast": true,
|
|
|
|
"reachable_indirect": false,
|
|
|
|
"hop_count": 1}])'
|
|
|
|
for SID in "${SIDB[@]}"; do
|
|
|
|
if [ "$SID" != "$PRIMARY_SIDB" ]; then
|
2018-04-04 03:08:37 +00:00
|
|
|
assertJq routes.json 'contains([{"sid": "'"$SID"'",
|
2018-03-21 23:43:08 +00:00
|
|
|
"is_self": false,
|
|
|
|
"reachable_unicast": false,
|
|
|
|
"reachable_indirect": true,
|
|
|
|
"hop_count": 2}])'
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
runTests "$@"
|