blob: 1673baa601a56d1548379fd0a7772b6ea838a217 [file] [log] [blame]
JosephKeenand181b0e2021-10-01 10:40:47 +01001/*
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 ***
22Documentation NCMP
23
24Library Collections
25Library OperatingSystem
26Library RequestsLibrary
27Library BuiltIn
28
tragaitdd6021e2021-10-19 16:46:21 +010029Suite Setup Create Session CPS_URL http://${CPS_CORE_HOST}:${CPS_CORE_PORT}
JosephKeenand181b0e2021-10-01 10:40:47 +010030
31*** Variables ***
32
33${auth} Basic Y3BzdXNlcjpjcHNyMGNrcyE=
34${ncmpBasePath} /ncmp
35${netconf} NETCONF
36
37*** Test Cases ***
38
39Get 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
DylanB95EST8c9b4a22021-11-23 15:16:15 +000048Create to bookstore using passthrough-running
JosephKeenand181b0e2021-10-01 10:40:47 +010049 ${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}
DylanB95EST8c9b4a22021-11-23 15:16:15 +000051 ${jsonData}= Get Binary File ${DATADIR}${/}bookstoreCreateExample.json
JosephKeenand181b0e2021-10-01 10:40:47 +010052 ${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${jsonData}
53 Should Be Equal As Strings ${response.status_code} 201
54
DylanB95EST8c9b4a22021-11-23 15:16:15 +000055Verify create to bookstore using passthrough-running
JosephKeenand181b0e2021-10-01 10:40:47 +010056 ${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']}
DylanB95EST8c9b4a22021-11-23 15:16:15 +000062 IF "${item['code']}" == "01"
63 Should Be Equal As Strings "${item['name']}" "Sci-Fi"
64 Should Be Equal As Strings "${item['books']}[0][title]" "A Sci-Fi book"
65 END
66 IF "${item['code']}" == "02"
67 Should Be Equal As Strings "${item['name']}" "Horror"
68 Should Be Equal As Strings "${item['books']}[0][title]" "A Horror book"
JosephKeenand181b0e2021-10-01 10:40:47 +010069 END
70 END
DylanB95EST8c9b4a22021-11-23 15:16:15 +000071
72Update Bookstore using passthrough-running for Category 01
73 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore/categories=01
74 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
75 ${jsonData}= Get Binary File ${DATADIR}${/}bookstoreUpdateExample.json
76 ${response}= PUT On Session CPS_URL ${uri} headers=${headers} data=${jsonData}
77 Should Be Equal As Strings ${response.status_code} 200
78
79Verify update to bookstore using passthrough-running updated category 01
80 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore/categories=01
81 ${headers}= Create Dictionary Authorization=${auth}
82 ${response}= Get On Session CPS_URL ${uri} headers=${headers}
83 ${responseJson}= Set Variable ${response.json()}
84 Should Be Equal As Strings ${response.status_code} 200
85 FOR ${item} IN @{responseJson['stores:categories']}
86 IF "${item['code']}" == "01"
87 Should Be Equal As Strings "${item['name']}" "Updated Sci-Fi Category Name"
88 END
89 END
90
91Verify update to bookstore using passthrough-running did not remove category 02
92 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore
93 ${headers}= Create Dictionary Authorization=${auth}
94 ${response}= Get On Session CPS_URL ${uri} headers=${headers}
95 ${responseJson}= Set Variable ${response.json()}
96 Should Be Equal As Strings ${response.status_code} 200
97 ${schemaCount}= Get length ${responseJson['stores:bookstore']['categories']}
DylanB95ESTf0712fb2021-11-30 15:07:35 +000098 Should Be Equal As Numbers ${schemaCount} 2
99
100Delete Bookstore using passthrough-running for Category 01
101 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore/categories=01
102 ${headers}= Create Dictionary Content-Type=application/json Authorization=${auth}
JosephKeenan82ebf532021-12-08 18:16:44 +0000103 ${response}= DELETE On Session CPS_URL ${uri} headers=${headers} data={}
DylanB95ESTf0712fb2021-11-30 15:07:35 +0000104 Should Be Equal As Strings ${response.status_code} 204
105
106Verify delete to bookstore using passthrough-running removed only category 01
107 ${uri}= Set Variable ${ncmpBasePath}/v1/ch/PNFDemo/data/ds/ncmp-datastore:passthrough-running?resourceIdentifier=stores:bookstore
108 ${headers}= Create Dictionary Authorization=${auth}
109 ${response}= Get On Session CPS_URL ${uri} headers=${headers}
110 ${responseJson}= Set Variable ${response.json()}
111 Should Be Equal As Strings ${response.status_code} 200
112 ${schemaCount}= Get length ${responseJson['stores:bookstore']['categories']}
113 Should Be Equal As Numbers ${schemaCount} 1
114 FOR ${item} IN @{responseJson['stores:bookstore']['categories']}
115 IF "${item['code']}" == "02"
116 Should Be Equal As Strings "${item['name']}" "Horror"
117 END
118 END