X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=osm_nbi%2Ftests%2Fclear-all.sh;h=dd954176288f1015e3f39693eff90526c489b59c;hp=5a9a9c69b45a09a3721446b318bd392f9ec0fe77;hb=cd65be33d44114e73936813eaf790e6a12b0df63;hpb=b69fb3ca37645088483959976edbfc7fda66df8d diff --git a/osm_nbi/tests/clear-all.sh b/osm_nbi/tests/clear-all.sh index 5a9a9c6..dd95417 100755 --- a/osm_nbi/tests/clear-all.sh +++ b/osm_nbi/tests/clear-all.sh @@ -10,6 +10,7 @@ function usage(){ echo -e " OPTIONS" echo -e " -h --help: show this help" echo -e " -f --force: Do not ask for confirmation" + echo -e " --completely: It cleans also user admin. NBI will need to be restarted to init database" echo -e " --clean-RO: clean RO content. RO client (openmano) must be installed and configured" echo -e " --clean-VCA: clean VCA content. juju must be installed and configured" echo -e " ENV variable 'OSMNBI_URL' is used for the URL of the NBI server. If missing, it uses" \ @@ -38,6 +39,7 @@ do shift ( [ "$option" == -h ] || [ "$option" == --help ] ) && usage && exit ( [ "$option" == -f ] || [ "$option" == --force ] ) && OSMNBI_CLEAN_FORCE=yes && continue + [ "$option" == --completely ] && OSMNBI_COMPLETELY=yes && continue [ "$option" == --clean-RO ] && OSMNBI_CLEAN_RO=yes && continue [ "$option" == --clean-VCA ] && OSMNBI_CLEAN_VCA=yes && continue echo "Unknown option '$option'. Type $0 --help" 2>&1 && exit 1 @@ -64,13 +66,18 @@ then done fi -for item in vim_accounts vims sdns nsrs vnfrs nslcmops nsds vnfds projects +for item in vim_accounts sdns nsrs vnfrs nslcmops nsds vnfds projects pdus nsts nsis nsilcmops # vims do curl --insecure ${OSMNBI_URL}/test/db-clear/${item} echo " ${item}" done -# delete all users except admin -curl --insecure ${OSMNBI_URL}/test/db-clear/users?username.ne=admin +if [ -n "$OSMNBI_COMPLETELY" ] ; then + curl --insecure ${OSMNBI_URL}/test/db-clear/users && echo " ${item}" + curl --insecure ${OSMNBI_URL}/test/db-clear/version && echo " ${item}" +else + # delete all users except admin + curl --insecure ${OSMNBI_URL}/test/db-clear/users?username.ne=admin +fi if [ -n "$OSMNBI_CLEAN_RO" ] then