mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
cwmp runtime configuration present in /var/state/ directory, with uci/libuci -c option commit changes(including standard uci) to runtime path, this change to segregate the standard uci changes flow with run time config changes.
28 lines
877 B
Bash
Executable file
28 lines
877 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ./test/script/common.sh
|
|
source ./gitlab-ci/shared.sh
|
|
|
|
TEST_NAME="ADD RPC Method"
|
|
|
|
echo "Running: $TEST_NAME"
|
|
|
|
remove_icwmp_log
|
|
curl $connection_request_path -X POST --data '{"name": "addObject","objectName":"Device.SSH.Server"}' >/dev/null 2>&1
|
|
check_ret $?
|
|
sleep 2
|
|
check_session "AddObject"
|
|
obj_instance=$(print_tag_value "cwmp:AddObjectResponse" "InstanceNumber")
|
|
status=$(print_tag_value "cwmp:AddObjectResponse" "Status")
|
|
if [ "$obj_instance" != "2" -o $status != "0" ]; then
|
|
echo "Error: Add Object Method doesn't work correctly, current_value($obj_instance) expected_value(2)" >> ./funl-test-debug.log
|
|
exit 1
|
|
fi
|
|
|
|
remove_icwmp_log
|
|
curl $connection_request_path -X POST --data '{"name": "getParameterValues", "parameterNames": ["Device.SSH.Server.2"] }' >/dev/null 2>&1
|
|
check_ret $?
|
|
sleep 2
|
|
check_session "GetParameterValues"
|
|
|
|
echo "PASS: $TEST_NAME"
|