blob: 514076f085bbed4641c3d1001d5b44c9fb90679c [file] [log] [blame]
JosephKeenand181b0e2021-10-01 10:40:47 +01001/*
2 * ============LICENSE_START=======================================================
sourabh_sourabh02d8bf82024-01-04 17:01:27 +00003 * Copyright (C) 2021-2024 Nordix Foundation
JosephKeenand181b0e2021-10-01 10:40:47 +01004 * ================================================================================
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 ***
DylanB95EST61a1e762022-01-10 16:28:33 +000022Documentation NCMP
JosephKeenand181b0e2021-10-01 10:40:47 +010023
24Library Collections
25Library OperatingSystem
26Library RequestsLibrary
27Library BuiltIn
mpriyanka4a55912024-08-14 15:02:45 +010028Library String
JosephKeenand181b0e2021-10-01 10:40:47 +010029
DylanB95EST61a1e762022-01-10 16:28:33 +000030Suite Setup Create Session CPS_URL http://${CPS_CORE_HOST}:${CPS_CORE_PORT}
JosephKeenand181b0e2021-10-01 10:40:47 +010031
32*** Variables ***
33
DylanB95EST61a1e762022-01-10 16:28:33 +000034${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE=
35${ncmpInventoryBasePath} /ncmpInventory
36${ncmpBasePath} /ncmp
37${dmiUrl} http://${DMI_HOST}:${DMI_PORT}
halil.cakal16c87b22024-02-06 11:54:51 +000038${createPayload} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","createdCmHandles":[{"cmHandle":"ietfYang-PNFDemo","cmHandleProperties":{"Book1":"Sci-Fi Book"},"publicCmHandleProperties":{"Contact":"storeemail@bookstore.com", "Contact2":"storeemail2@bookstore.com"}},{"cmHandle":"CmHandleForDelete"}]}
39${updatePayload} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","updatedCmHandles":[{"cmHandle":"ietfYang-PNFDemo","cmHandleProperties":{"Book1":"Romance Book"},"publicCmHandleProperties":{"Contact":"newemailforstore@bookstore.com"}}]}
40${deletePayload} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","removedCmHandles":["CmHandleForDelete"]}
JosephKeenand181b0e2021-10-01 10:40:47 +010041
JosephKeenand181b0e2021-10-01 10:40:47 +010042*** Test Cases ***
DylanB95ESTe5573382022-01-27 17:12:52 +000043Register data node and sync modules.
DylanB95EST61a1e762022-01-10 16:28:33 +000044 ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch
JosephKeenand181b0e2021-10-01 10:40:47 +010045 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
halil.cakal16c87b22024-02-06 11:54:51 +000046 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${createPayload}
Renu Kumarib14f04b2022-03-28 10:22:41 -040047 Should Be Equal As Strings ${response.status_code} 200
JosephKeenand181b0e2021-10-01 10:40:47 +010048
DylanB95ESTe5573382022-01-27 17:12:52 +000049Get CM Handle details and confirm it has been registered.
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000050 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo
DylanB95ESTe5573382022-01-27 17:12:52 +000051 ${headers}= Create Dictionary Authorization=${auth}
52 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
53 ${responseJson}= Set Variable ${response.json()}
54 ${schemaCount}= Get length ${responseJson}
55 Should Be Equal As Strings ${response.status_code} 200
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000056 IF "${responseJson['cmHandle']}" == "ietfYang-PNFDemo"
DylanB95ESTe5573382022-01-27 17:12:52 +000057 FOR ${item} IN @{responseJson['publicCmHandleProperties']}
58 Should Be Equal As Strings "${item['Contact']}" "storeemail@bookstore.com"
59 END
60 END
61
62Update data node and sync modules.
63 ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch
64 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
halil.cakal16c87b22024-02-06 11:54:51 +000065 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${updatePayload}
Renu Kumarib14f04b2022-03-28 10:22:41 -040066 Should Be Equal As Strings ${response.status_code} 200
DylanB95ESTe5573382022-01-27 17:12:52 +000067
68Get CM Handle details and confirm it has been updated.
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000069 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo
DylanB95ESTe5573382022-01-27 17:12:52 +000070 ${headers}= Create Dictionary Authorization=${auth}
71 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
72 ${responseJson}= Set Variable ${response.json()}
73 ${schemaCount}= Get length ${responseJson}
74 Should Be Equal As Strings ${response.status_code} 200
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000075 IF "${responseJson['cmHandle']}" == "ietfYang-PNFDemo"
DylanB95ESTe5573382022-01-27 17:12:52 +000076 FOR ${item} IN @{responseJson['publicCmHandleProperties']}
77 Should Be Equal As Strings "${item['Contact']}" "newemailforstore@bookstore.com"
78 END
79 END
80
halil.cakal16c87b22024-02-06 11:54:51 +000081Delete cm handle
82 ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch
83 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
84 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${deletePayload}
85 Should Be Equal As Strings ${response.status_code} 200
86
87Get cm handle details and confirm it has been deleted
88 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/CmHandleForDelete
89 ${headers}= Create Dictionary Authorization=${auth}
90 ${response}= GET On Session CPS_URL ${uri} headers=${headers} expected_status=404
91
mpriyanka4a55912024-08-14 15:02:45 +010092Check if ietfYang-PNFDemo is READY
93 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo
94 ${headers}= Create Dictionary Authorization=${auth}
95 Wait Until Keyword Succeeds 20sec 200ms Is CM Handle READY ${uri} ${headers} ietfYang-PNFDemo
96
DylanB95EST61a1e762022-01-10 16:28:33 +000097Get modules for registered data node
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000098 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/modules
DylanB95EST61a1e762022-01-10 16:28:33 +000099 ${headers}= Create Dictionary Authorization=${auth}
100 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
JosephKeenand181b0e2021-10-01 10:40:47 +0100101 Should Be Equal As Strings ${response.status_code} 200
mpriyanka4a55912024-08-14 15:02:45 +0100102 ${number_of_items}= Count Items In JSON Response ${response}
103 Should Be True ${number_of_items} > 0
JvD_Ericsson14d37302023-12-07 15:33:09 +0000104 FOR ${item} IN @{response.json()}
JosephKeenan20b4f9c2021-11-23 12:18:28 +0000105 IF "${item['moduleName']}" == "stores"
106 Should Be Equal As Strings "${item['revision']}" "2020-09-15"
JosephKeenan20b4f9c2021-11-23 12:18:28 +0000107 END
mpriyanka4a55912024-08-14 15:02:45 +0100108 END
109
110*** Keywords ***
111
112Is CM Handle READY
113 [Arguments] ${uri} ${headers} ${cmHandle}
114 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
115 Should Be Equal As Strings ${response.status_code} 200
116 ${number_of_items}= Count Items In JSON Response ${response}
117 Should Be True ${number_of_items} > 0
118 FOR ${item} IN ${response.json()}
119 IF "${item['cmHandle']}" == "${cmHandle}"
120 Should Be Equal As Strings ${item['state']['cmHandleState']} READY
121 END
122 END
123
124Count Items In JSON Response
125 [Arguments] ${response}
126 ${json_data}= Evaluate json.loads('${response.content.decode("utf-8")}') json
127 ${number_of_items}= Get Length ${json_data}
128 RETURN ${number_of_items}