JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 1 | /* |
| 2 | * ============LICENSE_START======================================================= |
| 3 | * Copyright (C) 2021 Nordix Foundation |
| 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 | |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [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 | |
| 33 | ${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE= |
| 34 | ${ncmpBasePath} /ncmp |
| 35 | ${netconf} NETCONF |
| 36 | |
| 37 | *** Test Cases *** |
| 38 | |
| 39 | Get for Passthough Operational (CF, RO) with fields |
| 40 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-operational?resourceIdentifier=ietf-netconf-monitoring:netconf-state&options=(fields=schemas/schema/location) |
| 41 | ${headers}= Create Dictionary Authorization=${auth} |
| 42 | ${response}= Get On Session CPS_URL ${uri} headers=${headers} expected_status=200 |
| 43 | ${responseJson}= Set Variable ${response.json()} |
| 44 | ${schemaCount}= Get length ${responseJson['ietf-netconf-monitoring:netconf-state']['schemas']} |
| 45 | Should Be True ${schemaCount} >0 |
| 46 | Should Contain ${responseJson['ietf-netconf-monitoring:netconf-state']['schemas']['schema'][0]['location']} ${netconf} |
| 47 | |
| 48 | Write to bookstore using passthrough-running |
| 49 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore |
| 50 | ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth} |
| 51 | ${jsonData}= Get Binary File ${DATADIR}${/}bookstoreAddEntry.json |
| 52 | ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${jsonData} |
| 53 | Should Be Equal As Strings ${response.status_code} 201 |
| 54 | |
| 55 | Verify write to bookstore using passthrough-running |
| 56 | ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore |
| 57 | ${headers}= Create Dictionary Authorization=${auth} |
| 58 | ${response}= Get On Session CPS_URL ${uri} headers=${headers} |
| 59 | ${responseJson}= Set Variable ${response.json()} |
| 60 | Should Be Equal As Strings ${response.status_code} 200 |
| 61 | FOR ${item} IN @{responseJson['stores:bookstore']['categories']} |
| 62 | IF "${item['code']}" == "ISBN200123" |
| 63 | Should Be Equal As Strings "${item['books']}[0][title]" "A good book" |
| 64 | END |
| 65 | END |