blob: bf97fbf6778973949e05d17c03c29d1e30c64b10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
*** Settings ***
Library OperatingSystem
Library RequestsLibrary
Library json
Check Distributed KV Store API Docker Container
[Documentation] Checks if DKV docker container is running
${rc} ${output}= Run and Return RC and Output docker ps
Log To Console *********************
Log To Console retrurn_code = ${rc}
Log To Console output = ${output}
Should Be Equal As Integers ${rc} 0
Should Contain ${output} nexus3.onap.org:10003/onap/music/distributed-kv-store
DKV LoadDefaultProperties
[Documentation] Loads default configuration files into Consul
Create Session dkv ${DKV_HOSTNAME}:${DKV_PORT}
&{headers}= Create Dictionary Content-Type=application/json Accept=application/json
${resp}= Get Request dkv /v1/config/load-default headers=${headers}
Log To Console *********************
Log To Console response = ${resp}
Log To Console body = ${resp.text}
Should Be Equal As Integers ${resp.status_code} 200
DKV FetchDefaultProperties
[Documentation] Fetches all default keys from Consul
Create Session dkv ${DKV_HOSTNAME}:${DKV_PORT}
&{headers}= Create Dictionary Content-Type=application/json Accept=application/json
${resp}= Get Request dkv /v1/getconfigs headers=${headers}
Log To Console *********************
Log To Console response = ${resp}
Log To Console body = ${resp.text}
Should Be Equal As Integers ${resp.status_code} 200
DKV RegisterDomain
[Documentation] Send a POST request to create a domain
Create Session dkv ${DKV_HOSTNAME}:${DKV_PORT}
${data}= Get Binary File ${CURDIR}${/}data${/}register_domain.json
&{headers}= Create Dictionary Content-Type=application/json Accept=application/json
${resp}= Post Request dkv v1/register data=${data} headers=${headers}
Log To Console *********************
Log To Console response = ${resp}
Log To Console body = ${resp.text}
Should Be Equal As Integers ${resp.status_code} 200
*** Keywords ***
|