First commit
This commit is contained in:
20
setup/e2mgr/Automation/deprecated/RSM_Resource_Status/__init__.robot
Executable file
20
setup/e2mgr/Automation/deprecated/RSM_Resource_Status/__init__.robot
Executable file
@@ -0,0 +1,20 @@
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 AT&T Intellectual Property.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
*** Settings ***
|
||||
Documentation Resource status
|
@@ -0,0 +1,57 @@
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 AT&T Intellectual Property.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
*** Settings ***
|
||||
Suite Setup Prepare Enviorment
|
||||
Resource ../Resource/resource.robot
|
||||
Resource ../Resource/Keywords.robot
|
||||
Resource ../Resource/scripts_variables.robot
|
||||
Resource resource_status_keywords.robot
|
||||
Library ../Scripts/rsmscripts.py
|
||||
Library ../Scripts/find_rmr_message.py
|
||||
Library OperatingSystem
|
||||
Library REST ${url_rsm}
|
||||
Suite Teardown Delete All Sessions
|
||||
|
||||
|
||||
*** Test Cases ***
|
||||
Run setup
|
||||
rsmscripts.set_general_config_resource_status_false
|
||||
|
||||
Prepare Ran In Connected Status
|
||||
|
||||
Put Http Start Request To RSM
|
||||
Put Request Resource Status Start
|
||||
Integer response status 204
|
||||
|
||||
Verify RSM RAN Info Status Is Start And True In Redis
|
||||
Sleep 1s
|
||||
${result}= rsmscripts.verify_rsm_ran_info_start_true
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
Verify RSM Enable Resource Status Is True In General Configuration In Redis
|
||||
${result}= rsmscripts.verify_general_config_enable_resource_status_true
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
prepare logs for tests
|
||||
Remove log files
|
||||
Save logs
|
||||
|
||||
Verify RSM Resource Status Request Message Sent
|
||||
${result} find_rmr_message.verify_logs ${EXECDIR} ${rsm_log_filename} ${RIC_RES_STATUS_REQ_message_type_successfully_sent} ${RAN_NAME_test1}
|
||||
Should Be Equal As Strings ${result} True
|
@@ -0,0 +1,56 @@
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 AT&T Intellectual Property.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
*** Settings ***
|
||||
Suite Setup Prepare Enviorment
|
||||
Resource ../Resource/resource.robot
|
||||
Resource ../Resource/Keywords.robot
|
||||
Resource ../Resource/scripts_variables.robot
|
||||
Resource resource_status_keywords.robot
|
||||
Library ../Scripts/rsmscripts.py
|
||||
Library ../Scripts/find_rmr_message.py
|
||||
Library OperatingSystem
|
||||
Library REST ${url_rsm}
|
||||
Suite Teardown Delete All Sessions
|
||||
|
||||
|
||||
*** Test Cases ***
|
||||
Run setup
|
||||
rsmscripts.set_general_config_resource_status_false
|
||||
|
||||
Prepare Ran In Connected Status
|
||||
|
||||
Put Http Stop Request To RSM
|
||||
Put Request Resource Status Stop
|
||||
Integer response status 204
|
||||
|
||||
Verify RSM RAN Info Status Is Stop And True In Redis
|
||||
${result}= rsmscripts.verify_rsm_ran_info_stop_true
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
Verify RSM Enable Resource Status Is False In General Configuration In Redis
|
||||
${result}= rsmscripts.verify_general_config_enable_resource_status_false
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
prepare logs for tests
|
||||
Remove log files
|
||||
Save logs
|
||||
|
||||
Verify RSM Resource Status Request Message Not Sent
|
||||
${result} find_rmr_message.verify_logs ${EXECDIR} ${rsm_log_filename} ${RIC_RES_STATUS_REQ_message_type_successfully_sent} ${RAN_NAME_test1}
|
||||
Should Be Equal As Strings ${result} False
|
@@ -0,0 +1,36 @@
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 AT&T Intellectual Property.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
*** Settings ***
|
||||
Documentation Keywords file
|
||||
Library ../Scripts/cleanup_db.py
|
||||
Resource ../Resource/resource.robot
|
||||
Library Collections
|
||||
Library OperatingSystem
|
||||
Library json
|
||||
Library RequestsLibrary
|
||||
|
||||
|
||||
|
||||
*** Keywords ***
|
||||
Prepare Ran In Connected Status
|
||||
Create Session x2setup ${url}
|
||||
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
|
||||
${resp}= Post Request x2setup /v1/nodeb/x2-setup data=${json_setup_rsm_tests} headers=${headers}
|
||||
Should Be Equal As Strings ${resp.status_code} 204
|
||||
|
@@ -0,0 +1,55 @@
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 AT&T Intellectual Property.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
*** Settings ***
|
||||
Suite Setup Prepare Enviorment
|
||||
Resource ../Resource/resource.robot
|
||||
Resource ../Resource/Keywords.robot
|
||||
Resource ../Resource/scripts_variables.robot
|
||||
Resource resource_status_keywords.robot
|
||||
Library ../Scripts/rsmscripts.py
|
||||
Library ../Scripts/find_rmr_message.py
|
||||
Library OperatingSystem
|
||||
Library REST ${url_rsm}
|
||||
Suite Teardown Delete All Sessions
|
||||
|
||||
|
||||
*** Test Cases ***
|
||||
Run setup
|
||||
Prepare Ran In Connected Status
|
||||
|
||||
Put Http Start Request To RSM
|
||||
Put Request Resource Status Start
|
||||
Integer response status 204
|
||||
|
||||
Verify RSM RAN Info Status Is Start And True In Redis
|
||||
Sleep 1s
|
||||
${result}= rsmscripts.verify_rsm_ran_info_start_true
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
Verify RSM Enable Resource Status Is True In General Configuration In Redis
|
||||
${result}= rsmscripts.verify_general_config_enable_resource_status_true
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
prepare logs for RSM tests
|
||||
Remove log files
|
||||
Save logs
|
||||
|
||||
Verify RSM Resource Status Request Message Sent
|
||||
${result} find_rmr_message.verify_logs ${EXECDIR} ${rsm_log_filename} ${RIC_RES_STATUS_REQ_message_type_successfully_sent} ${RAN_NAME_test1}
|
||||
Should Be Equal As Strings ${result} True
|
@@ -0,0 +1,54 @@
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 AT&T Intellectual Property.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
*** Settings ***
|
||||
Suite Setup Prepare Enviorment
|
||||
Resource ../Resource/resource.robot
|
||||
Resource ../Resource/Keywords.robot
|
||||
Resource ../Resource/scripts_variables.robot
|
||||
Resource resource_status_keywords.robot
|
||||
Library ../Scripts/rsmscripts.py
|
||||
Library ../Scripts/find_rmr_message.py
|
||||
Library OperatingSystem
|
||||
Library REST ${url_rsm}
|
||||
Suite Teardown Delete All Sessions
|
||||
|
||||
|
||||
*** Test Cases ***
|
||||
Run setup
|
||||
Prepare Ran In Connected Status
|
||||
|
||||
Put Http Stop Request To RSM
|
||||
Put Request Resource Status Stop
|
||||
Integer response status 204
|
||||
|
||||
#Verify RSM RAN Info Status Is Stop And False In Redis
|
||||
#${result}= rsmscripts.verify_rsm_ran_info_stop_false
|
||||
#Should Be Equal As Strings ${result} True
|
||||
|
||||
Verify RSM Enable Resource Status Is False In General Configuration In Redis
|
||||
${result}= rsmscripts.verify_general_config_enable_resource_status_false
|
||||
Should Be Equal As Strings ${result} True
|
||||
|
||||
prepare logs for tests
|
||||
Remove log files
|
||||
Save logs
|
||||
|
||||
Verify RSM Resource Status Request Message Sent
|
||||
${result} find_rmr_message.verify_logs ${EXECDIR} ${rsm_log_filename} ${RIC_RES_STATUS_REQ_message_type_successfully_sent} ${RAN_NAME_test1}
|
||||
Should Be Equal As Strings ${result} True
|
Reference in New Issue
Block a user