blob: bb881f6a67a0a83c50804bb291d996a1b9f99550 [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
28
DylanB95EST61a1e762022-01-10 16:28:33 +000029Suite Setup Create Session CPS_URL http://${CPS_CORE_HOST}:${CPS_CORE_PORT}
JosephKeenand181b0e2021-10-01 10:40:47 +010030
31*** Variables ***
32
DylanB95EST61a1e762022-01-10 16:28:33 +000033${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE=
34${ncmpInventoryBasePath} /ncmpInventory
35${ncmpBasePath} /ncmp
36${dmiUrl} http://${DMI_HOST}:${DMI_PORT}
halil.cakal16c87b22024-02-06 11:54:51 +000037${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"}]}
38${updatePayload} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","updatedCmHandles":[{"cmHandle":"ietfYang-PNFDemo","cmHandleProperties":{"Book1":"Romance Book"},"publicCmHandleProperties":{"Contact":"newemailforstore@bookstore.com"}}]}
39${deletePayload} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","removedCmHandles":["CmHandleForDelete"]}
JosephKeenand181b0e2021-10-01 10:40:47 +010040
JosephKeenand181b0e2021-10-01 10:40:47 +010041*** Test Cases ***
DylanB95ESTe5573382022-01-27 17:12:52 +000042Register data node and sync modules.
DylanB95EST61a1e762022-01-10 16:28:33 +000043 ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch
JosephKeenand181b0e2021-10-01 10:40:47 +010044 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
halil.cakal16c87b22024-02-06 11:54:51 +000045 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${createPayload}
Renu Kumarib14f04b2022-03-28 10:22:41 -040046 Should Be Equal As Strings ${response.status_code} 200
JosephKeenand181b0e2021-10-01 10:40:47 +010047
DylanB95ESTe5573382022-01-27 17:12:52 +000048Get CM Handle details and confirm it has been registered.
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000049 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo
DylanB95ESTe5573382022-01-27 17:12:52 +000050 ${headers}= Create Dictionary Authorization=${auth}
51 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
52 ${responseJson}= Set Variable ${response.json()}
53 ${schemaCount}= Get length ${responseJson}
54 Should Be Equal As Strings ${response.status_code} 200
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000055 IF "${responseJson['cmHandle']}" == "ietfYang-PNFDemo"
DylanB95ESTe5573382022-01-27 17:12:52 +000056 FOR ${item} IN @{responseJson['publicCmHandleProperties']}
57 Should Be Equal As Strings "${item['Contact']}" "storeemail@bookstore.com"
58 END
59 END
60
61Update data node and sync modules.
62 ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch
63 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
halil.cakal16c87b22024-02-06 11:54:51 +000064 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${updatePayload}
Renu Kumarib14f04b2022-03-28 10:22:41 -040065 Should Be Equal As Strings ${response.status_code} 200
DylanB95ESTe5573382022-01-27 17:12:52 +000066
67Get CM Handle details and confirm it has been updated.
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000068 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo
DylanB95ESTe5573382022-01-27 17:12:52 +000069 ${headers}= Create Dictionary Authorization=${auth}
70 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
71 ${responseJson}= Set Variable ${response.json()}
72 ${schemaCount}= Get length ${responseJson}
73 Should Be Equal As Strings ${response.status_code} 200
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000074 IF "${responseJson['cmHandle']}" == "ietfYang-PNFDemo"
DylanB95ESTe5573382022-01-27 17:12:52 +000075 FOR ${item} IN @{responseJson['publicCmHandleProperties']}
76 Should Be Equal As Strings "${item['Contact']}" "newemailforstore@bookstore.com"
77 END
78 END
79
halil.cakal16c87b22024-02-06 11:54:51 +000080Delete cm handle
81 ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch
82 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
83 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${deletePayload}
84 Should Be Equal As Strings ${response.status_code} 200
85
86Get cm handle details and confirm it has been deleted
87 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/CmHandleForDelete
88 ${headers}= Create Dictionary Authorization=${auth}
89 ${response}= GET On Session CPS_URL ${uri} headers=${headers} expected_status=404
90
DylanB95EST61a1e762022-01-10 16:28:33 +000091Get modules for registered data node
sourabh_sourabh02d8bf82024-01-04 17:01:27 +000092 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/ietfYang-PNFDemo/modules
DylanB95EST61a1e762022-01-10 16:28:33 +000093 ${headers}= Create Dictionary Authorization=${auth}
94 ${response}= GET On Session CPS_URL ${uri} headers=${headers}
JosephKeenand181b0e2021-10-01 10:40:47 +010095 Should Be Equal As Strings ${response.status_code} 200
JvD_Ericsson14d37302023-12-07 15:33:09 +000096 FOR ${item} IN @{response.json()}
JosephKeenan20b4f9c2021-11-23 12:18:28 +000097 IF "${item['moduleName']}" == "stores"
98 Should Be Equal As Strings "${item['revision']}" "2020-09-15"
JosephKeenan20b4f9c2021-11-23 12:18:28 +000099 END
JvD_Ericsson820235c2024-01-22 13:32:34 +0000100 END