X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fcr%2Fbasic_test.sh;h=d0bf25d3168bdf63c2cf27636eef0269e49311a2;hb=8cffee5976e66653c08f55abfe59663ecfd44f66;hp=dbaca4f05cb29e79bfb9cf80e58b1708260ef737;hpb=113bf0910498992f20a6cb70f2bc70d4d5b204ca;p=nonrtric.git diff --git a/test/cr/basic_test.sh b/test/cr/basic_test.sh index dbaca4f0..d0bf25d3 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,16 @@ echo "=== Get counter - current events ===" RESULT="0" do_curl GET /counter/current_messages 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 +82,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 +92,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,15 +135,87 @@ 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 ==="