mirror of https://github.com/hashicorp/boundary
tests: add hosts CLI tests (#638)
parent
73388d21aa
commit
0f1fbea8f7
@ -0,0 +1,23 @@
|
||||
function create_host_catalog() {
|
||||
local sid=$1
|
||||
local name=$2
|
||||
boundary host-catalogs create static -scope-id $sid -name $name -description 'test host catalog'
|
||||
}
|
||||
|
||||
function read_host_catalog() {
|
||||
boundary hosts read -id $1
|
||||
}
|
||||
|
||||
function delete_host_catalog() {
|
||||
boundary hosts delete -id $1
|
||||
}
|
||||
|
||||
function list_host_catalogs() {
|
||||
boundary host-catalogs list -scope-id $1 -format json
|
||||
}
|
||||
|
||||
function host_catalog_id() {
|
||||
local id=$1
|
||||
local sid=$2
|
||||
strip $(list_host_catalogs $sid | jq -c ".[] | select(.name | contains(\"$id\")) | .[\"id\"]")
|
||||
}
|
||||
@ -0,0 +1,53 @@
|
||||
#!/usr/bin/env bats
|
||||
|
||||
load _auth
|
||||
load _hosts
|
||||
load _helpers
|
||||
|
||||
export NEW_HOST='test'
|
||||
|
||||
@test "boundary/login: can login as default user" {
|
||||
run login $DEFAULT_USER
|
||||
echo "$output"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "boundary/hosts: can create $NEW_HOST host in default host catalog" {
|
||||
run create_host $NEW_HOST $DEFAULT_HOST_CATALOG
|
||||
echo "$output"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "boundary/hosts: can not add already created $NEW_HOST host in default host catalog" {
|
||||
run create_host $NEW_HOST
|
||||
echo "$output"
|
||||
[ "$status" -eq 1 ]
|
||||
}
|
||||
|
||||
@test "boundary/hosts: can read $NEW_HOST host" {
|
||||
local hid=$(host_id $NEW_HOST $DEFAULT_HOST_CATALOG)
|
||||
run read_host $hid
|
||||
echo "$output"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "boundary/host: can delete $NEW_HOST host" {
|
||||
local hid=$(host_id $NEW_HOST $DEFAULT_HOST_CATALOG)
|
||||
run delete_host $hid
|
||||
echo "$output"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "boundary/host: can not delete already deleted $NEW_HOST host" {
|
||||
local hid=$(host_id $NEW_HOST $DEFAULT_HOST_CATALOG)
|
||||
run delete_host $hid
|
||||
echo "$output"
|
||||
[ "$status" -eq 1 ]
|
||||
}
|
||||
|
||||
@test "boundary/hosts: can not read deleted $NEW_HOST host" {
|
||||
local hid=$(host_id $NEW_HOST $DEFAULT_HOST_CATALOG)
|
||||
run read_host $hid
|
||||
echo "$output"
|
||||
[ "$status" -eq 1 ]
|
||||
}
|
||||
Loading…
Reference in new issue