JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 1 | /* |
| 2 | * ============LICENSE_START======================================================= |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 3 | * Copyright (C) 2021-2022 Nordix Foundation |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +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 *** |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 22 | Documentation NCMP |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 23 | |
| 24 | Library Collections |
| 25 | Library OperatingSystem |
| 26 | Library RequestsLibrary |
| 27 | Library BuiltIn |
| 28 | |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 29 | Suite Setup Create Session CPS_URL http://${CPS_CORE_HOST}:${CPS_CORE_PORT} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 30 | |
| 31 | *** Variables *** |
| 32 | |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 33 | ${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE= |
| 34 | ${ncmpInventoryBasePath} /ncmpInventory |
| 35 | ${ncmpBasePath} /ncmp |
| 36 | ${dmiUrl} http://${DMI_HOST}:${DMI_PORT} |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 37 | ${jsonDataCreate} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","createdCmHandles":[{"cmHandle":"PNFDemo","cmHandleProperties":{"Book1":"Sci-Fi Book"},"publicCmHandleProperties":{"Contact":"storeemail@bookstore.com"}}]} |
| 38 | ${jsonDataUpdate} {"dmiPlugin":"${dmiUrl}","dmiDataPlugin":"","dmiModelPlugin":"","updatedCmHandles":[{"cmHandle":"PNFDemo","cmHandleProperties":{"Book1":"Romance Book"},"publicCmHandleProperties":{"Contact":"newemailforstore@bookstore.com"}}]} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 39 | |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 40 | *** Test Cases *** |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 41 | Register data node and sync modules. |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 42 | ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 43 | ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth} |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 44 | ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${jsonDataCreate} |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame^] | 45 | Should Be Equal As Strings ${response.status_code} 200 |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 46 | |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 47 | Get CM Handle details and confirm it has been registered. |
| 48 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo |
| 49 | ${headers}= Create Dictionary Authorization=${auth} |
| 50 | ${response}= GET On Session CPS_URL ${uri} headers=${headers} |
| 51 | ${responseJson}= Set Variable ${response.json()} |
| 52 | ${schemaCount}= Get length ${responseJson} |
| 53 | Should Be Equal As Strings ${response.status_code} 200 |
| 54 | IF "${responseJson['cmHandle']}" == "PNFDemo" |
| 55 | FOR ${item} IN @{responseJson['publicCmHandleProperties']} |
| 56 | Should Be Equal As Strings "${item['Contact']}" "storeemail@bookstore.com" |
| 57 | END |
| 58 | END |
| 59 | |
| 60 | Update data node and sync modules. |
| 61 | ${uri}= Set Variable ${ncmpInventoryBasePath}/v1/ch |
| 62 | ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth} |
| 63 | ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${jsonDataUpdate} |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame^] | 64 | Should Be Equal As Strings ${response.status_code} 200 |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 65 | |
| 66 | Get CM Handle details and confirm it has been updated. |
| 67 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo |
| 68 | ${headers}= Create Dictionary Authorization=${auth} |
| 69 | ${response}= GET On Session CPS_URL ${uri} headers=${headers} |
| 70 | ${responseJson}= Set Variable ${response.json()} |
| 71 | ${schemaCount}= Get length ${responseJson} |
| 72 | Should Be Equal As Strings ${response.status_code} 200 |
| 73 | IF "${responseJson['cmHandle']}" == "PNFDemo" |
| 74 | FOR ${item} IN @{responseJson['publicCmHandleProperties']} |
| 75 | Should Be Equal As Strings "${item['Contact']}" "newemailforstore@bookstore.com" |
| 76 | END |
| 77 | END |
| 78 | |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 79 | Get modules for registered data node |
| 80 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/modules |
| 81 | ${headers}= Create Dictionary Authorization=${auth} |
| 82 | ${response}= GET On Session CPS_URL ${uri} headers=${headers} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 83 | ${responseJson}= Set Variable ${response.json()} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 84 | Should Be Equal As Strings ${response.status_code} 200 |
DylanB95EST | 61a1e76 | 2022-01-10 16:28:33 +0000 | [diff] [blame] | 85 | FOR ${item} IN @{responseJson} |
JosephKeenan | 20b4f9c | 2021-11-23 12:18:28 +0000 | [diff] [blame] | 86 | IF "${item['moduleName']}" == "stores" |
| 87 | Should Be Equal As Strings "${item['revision']}" "2020-09-15" |
JosephKeenan | 20b4f9c | 2021-11-23 12:18:28 +0000 | [diff] [blame] | 88 | END |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 89 | END |