blob: de26e5f6e76d58631e6b7ebbbf8b3084e7ddd550 (
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
47
48
49
50
51
52
53
|
*** Settings ***
Library OperatingSystem
Library RequestsLibrary
Library json
*** Variables ***
${MESSAGE} {"ping": "ok"}
#global variables
${generatedAID}
*** Test Cases ***
DKV 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:10001/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 ***
|