emaclee | 7c46808 | 2022-08-09 09:03:57 +0100 | [diff] [blame] | 1 | /* |
| 2 | * ============LICENSE_START======================================================= |
sourabh_sourabh | 02d8bf8 | 2024-01-04 17:01:27 +0000 | [diff] [blame] | 3 | * Copyright (C) 2022-2024 Nordix Foundation |
emaclee | 7c46808 | 2022-08-09 09:03:57 +0100 | [diff] [blame] | 4 | * ================================================================================ |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | * SPDX-License-Identifier: Apache-2.0 |
| 18 | * ============LICENSE_END========================================================= |
| 19 | */ |
| 20 | |
| 21 | *** Settings *** |
| 22 | Documentation NCMP |
| 23 | |
| 24 | Library Collections |
| 25 | Library OperatingSystem |
| 26 | Library RequestsLibrary |
| 27 | Library BuiltIn |
| 28 | |
| 29 | Suite Setup Create Session CPS_URL http://${CPS_CORE_HOST}:${CPS_CORE_PORT} |
| 30 | |
| 31 | *** Variables *** |
| 32 | |
| 33 | ${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE= |
| 34 | ${ncmpBasePath} /ncmp |
| 35 | |
| 36 | *** Test Cases *** |
JvD_Ericsson | 820235c | 2024-01-22 13:32:34 +0000 | [diff] [blame] | 37 | |
emaclee | 7c46808 | 2022-08-09 09:03:57 +0100 | [diff] [blame] | 38 | Operational state goes to UNSYNCHRONIZED when data sync (flag) is enabled |
sourabh_sourabh | 02d8bf8 | 2024-01-04 17:01:27 +0000 | [diff] [blame] | 39 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/data-sync |
emaclee | 7c46808 | 2022-08-09 09:03:57 +0100 | [diff] [blame] | 40 | ${params}= Create Dictionary dataSyncEnabled=true |
| 41 | ${headers}= Create Dictionary Authorization=${auth} |
| 42 | ${response}= PUT On Session CPS_URL ${uri} params=${params} headers=${headers} |
| 43 | Should Be Equal As Strings ${response.status_code} 200 |
JvD_Ericsson | 820235c | 2024-01-22 13:32:34 +0000 | [diff] [blame] | 44 | ${verifyUri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/state |
| 45 | ${verifyHeaders}= Create Dictionary Authorization=${auth} |
| 46 | ${verifyResponse}= GET On Session CPS_URL ${verifyUri} headers=${verifyHeaders} |
| 47 | Should Be Equal As Strings ${verifyResponse.json()['state']['dataSyncState']['operational']['syncState']} UNSYNCHRONIZED |
emaclee | 7c46808 | 2022-08-09 09:03:57 +0100 | [diff] [blame] | 48 | |
| 49 | Operational state goes to SYNCHRONIZED after sometime when data sync (flag) is enabled |
JvD_Ericsson | 820235c | 2024-01-22 13:32:34 +0000 | [diff] [blame] | 50 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/state |
| 51 | ${headers}= Create Dictionary Authorization=${auth} |
danielhanrahan | 7e15c5f | 2024-07-22 13:46:32 +0100 | [diff] [blame] | 52 | Wait Until Keyword Succeeds 40sec 100ms Is CM Handle State SYNCHRONIZED ${uri} ${headers} |
JvD_Ericsson | 820235c | 2024-01-22 13:32:34 +0000 | [diff] [blame] | 53 | |
| 54 | *** Keywords *** |
JvD_Ericsson | 820235c | 2024-01-22 13:32:34 +0000 | [diff] [blame] | 55 | |
| 56 | Is CM Handle State SYNCHRONIZED |
| 57 | [Arguments] ${uri} ${headers} |
| 58 | ${response}= GET On Session CPS_URL ${uri} headers=${headers} |
| 59 | Should Be Equal As Strings ${response.json()['state']['dataSyncState']['operational']['syncState']} SYNCHRONIZED |