2013-05-09 12:02:33 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Tests for Serval DNA configuration operations.
|
|
|
|
#
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
setup_servald
|
|
|
|
set_instance +A
|
|
|
|
create_identities 2
|
|
|
|
assert [ $SIDA1 != $SIDA2 ]
|
|
|
|
setup_rhizome
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_createPly() {
|
|
|
|
set_instance +A
|
|
|
|
create_identities 2
|
|
|
|
assert [ $SIDA1 != $SIDA2 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_createPly="Create thread ply by sending a message"
|
|
|
|
setup_createPly() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_createPly() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA2 "Message-1"
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 --author=$SIDA1 ''
|
2013-05-09 12:24:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
doc_discriminatePlys="List messages doesn't use same bundle for each ply"
|
|
|
|
setup_discriminatePlys() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_discriminatePlys() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA2 "Message-1"
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 --author=$SIDA1 ''
|
2013-05-09 12:02:33 +00:00
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA2
|
2013-05-09 12:24:20 +00:00
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^0:.*:received:meshms:Message-1'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:unacknowledged:meshms:Message-1'
|
|
|
|
assertStdoutLineCount '==' 3
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_reflectedPly="Sender == recipient works as expected"
|
|
|
|
setup_reflectedPly() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_reflectedPly() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA1 "Message-1"
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 --author=$SIDA1 ''
|
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-1'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:unacknowledged:meshms:Message-1'
|
2013-05-09 12:02:33 +00:00
|
|
|
}
|
|
|
|
|
2013-05-09 12:40:15 +00:00
|
|
|
doc_reflectedPly="Sender == recipient works as expected"
|
|
|
|
setup_reflectedPly() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_reflectedPly() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA1 "Message-1"
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 --author=$SIDA1 ''
|
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-1'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:unacknowledged:meshms:Message-1'
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_twoPly="Send one message each way, no acks, correct order"
|
|
|
|
setup_twoPly() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_twoPly() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA2 "Message-1a"
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 --author=$SIDA1 ''
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA2 $SIDA1 "Message-2b"
|
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 2
|
|
|
|
executeOk_servald meshms list messages $SIDA2 $SIDA2
|
|
|
|
assertStdoutLineCount '==' 2
|
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA2
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-2b'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:unacknowledged:meshms:Message-1a'
|
2013-05-09 12:41:39 +00:00
|
|
|
executeOk_servald meshms list messages $SIDA2 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-1a'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:unacknowledged:meshms:Message-2b'
|
2013-05-09 12:40:15 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 11:17:33 +00:00
|
|
|
doc_qsoList="Can list conversations with 'meshms list conversations'"
|
|
|
|
setup_qsoList() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_qsoList() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA2 "Message-1a"
|
|
|
|
executeOk_servald meshms list conversations $SIDA1
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^'$SIDA1':'$SIDA2'$'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^'$SIDA2':'$SIDA1'$'
|
|
|
|
executeOk_servald meshms list conversations $SIDA2
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^'${SIDA1}':'${SIDA2}'$'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^'${SIDA2}':'${SIDA1}'$'
|
|
|
|
}
|
|
|
|
|
2013-05-10 11:24:11 +00:00
|
|
|
doc_qsoList2="meshms list conversations deduplicates threads"
|
|
|
|
setup_qsoList2() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_qsoList2() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA2 "Message-1a"
|
|
|
|
executeOk_servald meshms list conversations $SIDA1
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^'$SIDA1':'$SIDA2'$'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^'$SIDA2':'$SIDA1'$'
|
|
|
|
executeOk_servald meshms list conversations $SIDA2
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^'${SIDA1}':'${SIDA2}'$'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^'${SIDA2}':'${SIDA1}'$'
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA2 $SIDA1 "Message-2b"
|
|
|
|
executeOk_servald meshms list conversations $SIDA1
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^'$SIDA1':'$SIDA2'$'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^'$SIDA2':'$SIDA1'$'
|
|
|
|
executeOk_servald meshms list conversations $SIDA2
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 '^'${SIDA1}':'${SIDA2}'$'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^'${SIDA2}':'${SIDA1}'$'
|
|
|
|
}
|
|
|
|
|
2013-05-10 02:41:38 +00:00
|
|
|
doc_ack="Acking messages works"
|
|
|
|
setup_ack() {
|
|
|
|
setup
|
|
|
|
}
|
|
|
|
test_ack() {
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA1 $SIDA2 "Message-1a"
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 --author=$SIDA1 ''
|
|
|
|
executeOk_servald meshms add message 12345 67890 $SIDA2 $SIDA1 "Message-2b"
|
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 2
|
|
|
|
executeOk_servald meshms list messages $SIDA2 $SIDA2
|
|
|
|
assertStdoutLineCount '==' 2
|
|
|
|
executeOk_servald meshms list messages $SIDA1 $SIDA2
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-2b'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:unacknowledged:meshms:Message-1a'
|
|
|
|
executeOk_servald meshms list messages $SIDA2 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-1a'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:unacknowledged:meshms:Message-2b'
|
|
|
|
executeOk_servald meshms ack messages $SIDA1 $SIDA2 1
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 'filesize:35'
|
|
|
|
executeOk_servald meshms ack messages $SIDA1 $SIDA2 1
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 'filesize:'
|
|
|
|
executeOk_servald meshms ack messages $SIDA1 $SIDA2 0
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=0 'filesize:'
|
|
|
|
executeOk_servald meshms ack messages $SIDA1 $SIDA2 28
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 'filesize:42'
|
|
|
|
executeOk_servald meshms list messages $SIDA2 $SIDA1
|
|
|
|
assertStdoutLineCount '==' 4
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^0:.*:received:meshms:Message-1a'
|
|
|
|
assertStdoutGrep --stdout --stderr --matches=1 '^1:.*:delivered:meshms:Message-2b'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-05-10 06:12:32 +00:00
|
|
|
doc_addressedBundleCrypted="MeshMS bundle with sender and non-broadcast recipient gets encrypted"
|
|
|
|
setup_addressedBundleCrypted() {
|
|
|
|
setup
|
|
|
|
echo "Message1" >file1
|
|
|
|
echo -e "service=MeshMS1\nsender=$SIDA1\nrecipient=$SIDA2" >file1.manifest
|
|
|
|
}
|
|
|
|
test_addressedBundleCrypted() {
|
|
|
|
executeOk_servald rhizome add file $SIDA1 file1 file1.manifest
|
|
|
|
assert_stdout_add_file file1
|
|
|
|
assert_manifest_complete file1.manifest
|
|
|
|
extract_manifest_crypt crypt file1.manifest
|
|
|
|
assert [ $crypt = 1 ]
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
assert_rhizome_list --fromhere=1 file1
|
|
|
|
extract_manifest_id BID file1.manifest
|
|
|
|
executeOk_servald rhizome extract file $BID file1x
|
|
|
|
assert diff file1 file1x
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_broadcastBundleNotCrypted="MeshMS bundles with broadcast recipient are not encrypted"
|
|
|
|
setup_broadcastBundleNotCrypted() {
|
|
|
|
setup
|
|
|
|
echo "Message1" >file1
|
|
|
|
echo -e "service=MeshMS1\nsender=$SIDA1\nrecipient=broadcast" >file1.manifest
|
|
|
|
}
|
|
|
|
test_broadcastBundleNotCrypted() {
|
|
|
|
executeOk_servald rhizome add file $SIDA1 file1 file1.manifest
|
|
|
|
assert_stdout_add_file file1
|
|
|
|
assert_manifest_complete file1.manifest
|
|
|
|
extract_manifest_crypt crypt file1.manifest
|
|
|
|
assert [ $crypt = 0 ]
|
|
|
|
executeOk_servald rhizome list
|
|
|
|
extract_manifest_id BID file1.manifest
|
|
|
|
executeOk_servald rhizome extract file $BID file1x
|
|
|
|
assert diff file1 file1x
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-09 12:02:33 +00:00
|
|
|
runTests "$@"
|