X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcr%2Fbasic_test.sh;h=44e8526aa48aae7ae3e870b8c7c3905970ac9cdf;hb=9fe98aaeb6bd40cbb46eb8bb1e7f46ce3c8d3b02;hp=dbaca4f05cb29e79bfb9cf80e58b1708260ef737;hpb=113bf0910498992f20a6cb70f2bc70d4d5b204ca;p=nonrtric.git diff --git a/test/cr/basic_test.sh b/test/cr/basic_test.sh index dbaca4f0..44e8526a 100755 --- a/test/cr/basic_test.sh +++ b/test/cr/basic_test.sh @@ -49,6 +49,9 @@ echo "=== CR hello world ===" RESULT="OK" do_curl GET / 200 +echo "=== Reset ===" +RESULT="*" +do_curl POST /reset 200 echo "=== Get counter - callbacks ===" RESULT="0" @@ -62,11 +65,20 @@ echo "=== Get counter - current events ===" RESULT="0" do_curl GET /counter/current_messages 200 +echo "=== Get counter - remote hosts ===" +RESULT="*" +do_curl GET /counter/remote_hosts 200 + +echo "=== Send a request non json ===" +RESULT="*" +#create payload +echo "DATA" > .tmp.json +do_curl POST '/callbacks/test' 200 .tmp.json echo "=== Send a request ===" RESULT="*" #create payload -echo "\"DATA-MSG\"" > .tmp.json +echo "{\"DATA-MSG\":\"msg\"}" > .tmp.json do_curl POST '/callbacks/test' 200 .tmp.json @@ -74,9 +86,9 @@ echo "=== Fetch an event, wrong id===" RESULT="*" do_curl GET '/get-event/wrongid' 204 - +# Test counters for all ids echo "=== Get counter - callbacks ===" -RESULT="1" +RESULT="2" do_curl GET /counter/received_callbacks 200 echo "=== Get counter - fetched events ===" @@ -84,12 +96,42 @@ RESULT="0" do_curl GET /counter/fetched_callbacks 200 echo "=== Get counter - current events ===" -RESULT="1" +RESULT="2" do_curl GET /counter/current_messages 200 +# Test counter for one id +echo "=== Get counter - callbacks ===" +RESULT="2" +do_curl GET /counter/received_callbacks?id=test 200 + +echo "=== Get counter - fetched events ===" +RESULT="0" +do_curl GET /counter/fetched_callbacks?id=test 200 + +echo "=== Get counter - current events ===" +RESULT="2" +do_curl GET /counter/current_messages?id=test 200 + +# Test counter for dummy id +echo "=== Get counter - callbacks ===" +RESULT="0" +do_curl GET /counter/received_callbacks?id=dummy 200 + +echo "=== Get counter - fetched events ===" +RESULT="0" +do_curl GET /counter/fetched_callbacks?id=dummy 200 + +echo "=== Get counter - current events ===" +RESULT="0" +do_curl GET /counter/current_messages?id=dummy 200 + + +echo "=== Fetch an event ===" +RESULT="json:{}" +do_curl GET '/get-event/test' 200 echo "=== Fetch an event ===" -RESULT="DATA-MSG" +RESULT="json:{\"DATA-MSG\":\"msg\"}" do_curl GET '/get-event/test' 200 echo "=== Fetch an event again ===" @@ -97,17 +139,89 @@ RESULT="*" do_curl GET '/get-event/test' 204 echo "=== Get counter - callbacks ===" -RESULT="1" +RESULT="2" do_curl GET /counter/received_callbacks 200 echo "=== Get counter - fetched events ===" -RESULT="1" +RESULT="2" do_curl GET /counter/fetched_callbacks 200 echo "=== Get counter - current events ===" RESULT="0" do_curl GET /counter/current_messages 200 +# Test counter for one id +echo "=== Get counter - callbacks ===" +RESULT="2" +do_curl GET /counter/received_callbacks?id=test 200 + +echo "=== Get counter - fetched events ===" +RESULT="2" +do_curl GET /counter/fetched_callbacks?id=test 200 + +echo "=== Get counter - current events ===" +RESULT="0" +do_curl GET /counter/current_messages?id=test 200 + +echo "=== Send a request ===" +RESULT="*" +#create payload +echo "{\"DATA-MSG\":\"msg\"}" > .tmp.json +do_curl POST '/callbacks/test' 200 .tmp.json + +echo "=== Send a request ===" +RESULT="*" +#create payload +echo "{\"DATA-MSG2\":\"msg2\"}" > .tmp.json +do_curl POST '/callbacks/test' 200 .tmp.json + +echo "=== Send a request ===" +RESULT="*" +#create payload +echo "{\"DATA-MSG3\":\"msg3\"}" > .tmp.json +do_curl POST '/callbacks/test1' 200 .tmp.json + +echo "=== Get counter - callbacks ===" +RESULT="5" +do_curl GET /counter/received_callbacks 200 + +echo "=== Get counter - fetched events ===" +RESULT="2" +do_curl GET /counter/fetched_callbacks 200 + +echo "=== Get counter - current events ===" +RESULT="3" +do_curl GET /counter/current_messages 200 + +# Test counter for one id, test1 +echo "=== Get counter - callbacks ===" +RESULT="1" +do_curl GET /counter/received_callbacks?id=test1 200 + +echo "=== Get counter - fetched events ===" +RESULT="0" +do_curl GET /counter/fetched_callbacks?id=test1 200 + +echo "=== Get counter - current events ===" +RESULT="1" +do_curl GET /counter/current_messages?id=test1 200 + +echo "=== Fetch all events ===" +RESULT="json:[{\"DATA-MSG2\":\"msg2\"},{\"DATA-MSG\":\"msg\"}]" +do_curl GET '/get-all-events/test' 200 + +echo "=== Get counter - callbacks ===" +RESULT="5" +do_curl GET /counter/received_callbacks 200 + +echo "=== Get counter - fetched events ===" +RESULT="4" +do_curl GET /counter/fetched_callbacks 200 + +echo "=== Get counter - current events ===" +RESULT="1" +do_curl GET /counter/current_messages 200 + echo "=== CR reset ===" RESULT="OK" do_curl GET /reset 200 @@ -125,6 +239,32 @@ RESULT="0" do_curl GET /counter/current_messages 200 +# Check delay + +echo "=== Set delay 10 sec===" +RESULT="*" +do_curl POST /forcedelay?delay=10 200 + +TSECONDS=$SECONDS +echo "=== Send a request, dealyed ===" +RESULT="*" +#create payload +echo "{\"DATA-MSG\":\"msg-del1\"}" > .tmp.json +do_curl POST '/callbacks/test' 200 .tmp.json + +if [ $(($SECONDS-$TSECONDS)) -lt 10 ]; then + echo " Delay failed $(($SECONDS-$TSECONDS))" + echo " Exiting...." + exit 1 +else + echo " Delay OK $(($SECONDS-$TSECONDS))" +fi + + +echo "=== Fetch an event ===" +RESULT="json:{\"DATA-MSG\":\"msg-del1\"}" +do_curl GET '/get-event/test' 200 + echo "********************" echo "*** All tests ok ***" echo "********************"