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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
|
#!/usr/bin/env bats
load test_helper
@test "vcsim rbvmomi" {
if ! ruby -e "require 'rbvmomi'" ; then
skip "requires rbvmomi"
fi
vcsim_env
ruby ./vcsim_test.rb "$(govc env -x GOVC_URL_PORT)"
}
@test "vcsim examples" {
vcsim_env
# compile + run examples against vcsim
for main in ../../examples/*/main.go ; do
run go run "$main" -insecure -url "$GOVC_URL"
assert_success
done
}
@test "vcsim about" {
vcsim_env -dc 2 -cluster 3 -vm 0 -ds 0
url="https://$(govc env GOVC_URL)"
run curl -skf "$url/about"
assert_matches "CurrentTime" # 1 param (without Context)
assert_matches "TerminateSession" # 2 params (with Context)
run curl -skf "$url/debug/vars"
assert_success
model=$(curl -sfk "$url/debug/vars" | jq .vcsim.Model)
[ "$(jq .Datacenter <<<"$model")" == "2" ]
[ "$(jq .Cluster <<<"$model")" == "6" ]
[ "$(jq .Machine <<<"$model")" == "0" ]
[ "$(jq .Datastore <<<"$model")" == "0" ]
}
@test "vcsim host placement" {
vcsim_start -dc 0
# https://github.com/vmware/govmomi/issues/1258
id=$(new_id)
govc datacenter.create DC0
govc cluster.create comp
govc cluster.add -cluster comp -hostname test.host.com -username user -password pass
govc cluster.add -cluster comp -hostname test2.host.com -username user -password pass
govc datastore.create -type local -name vol6 -path "$BATS_TMPDIR" test.host.com
govc pool.create comp/Resources/testPool
govc vm.create -c 1 -ds vol6 -g centos64Guest -pool testPool -m 4096 "$id"
govc vm.destroy "$id"
}
@test "vcsim host config.port" {
vcsim_start -dc 0
url=$(govc env GOVC_URL)
port=$(govc env -x GOVC_URL_PORT)
vcsim_stop
vcsim_start -l "$url" # reuse free port selection from above
run govc object.collect -s -type h host/DC0_H0 summary.config.port
assert_success "$port"
ports=$(govc object.collect -s -type h / summary.config.port | uniq -u | wc -l)
assert_equal 0 "$ports" # all host ports should be the same value
vcsim_stop
VCSIM_HOST_PORT_UNIQUE=true vcsim_start -l "$url"
hosts=$(curl -sk "https://$url/debug/vars" | jq .vcsim.Model.Host)
ports=$(govc object.collect -s -type h / summary.config.port | uniq -u | wc -l)
assert_equal "$ports" "$hosts" # all host ports should be unique
grep -v "$port" <<<"$ports" # host ports should not include vcsim port
}
@test "vcsim set vm properties" {
vcsim_env
vm=/DC0/vm/DC0_H0_VM0
run govc object.collect $vm guest.ipAddress
assert_success ""
run govc vm.change -vm $vm -e SET.guest.ipAddress=10.0.0.1
assert_success
run govc object.collect -s $vm guest.ipAddress
assert_success "10.0.0.1"
run govc vm.ip $vm
assert_success "10.0.0.1"
run govc object.collect -s $vm summary.guest.ipAddress
assert_success "10.0.0.1"
netip=$(govc object.collect -json -s $vm guest.net | jq -r .[].Val.GuestNicInfo[].IpAddress[0])
[ "$netip" = "10.0.0.1" ]
run govc vm.info -vm.ip 10.0.0.1
assert_success
run govc object.collect -s $vm guest.hostName
assert_success ""
run govc vm.change -vm $vm -e SET.guest.hostName=localhost.localdomain
assert_success
run govc object.collect -s $vm guest.hostName
assert_success "localhost.localdomain"
run govc object.collect -s $vm summary.guest.hostName
assert_success "localhost.localdomain"
run govc vm.info -vm.dns localhost.localdomain
assert_success
uuid=$(uuidgen)
run govc vm.change -vm $vm -e SET.config.uuid="$uuid"
assert_success
run govc object.collect -s $vm config.uuid
assert_success "$uuid"
govc import.ovf -options - "$GOVC_IMAGES/$TTYLINUX_NAME.ovf" <<EOF
{
"PropertyMapping": [
{
"Key": "SET.guest.ipAddress",
"Value": "10.0.0.42"
}
],
"PowerOn": true,
"WaitForIP": true
}
EOF
run govc vm.ip "$TTYLINUX_NAME"
assert_success "10.0.0.42"
run govc vm.destroy "$TTYLINUX_NAME"
assert_success
govc import.ovf -options - "$GOVC_IMAGES/$TTYLINUX_NAME.ovf" <<EOF
{
"PropertyMapping": [
{
"Key": "ip0",
"Value": "10.0.0.43"
}
],
"PowerOn": true,
"WaitForIP": true
}
EOF
run govc vm.ip "$TTYLINUX_NAME"
assert_success "10.0.0.43"
}
@test "vcsim vm.create" {
vcsim_env
# VM uuids are stable, based on path to .vmx
run govc object.collect -s vm/DC0_H0_VM0 config.uuid config.instanceUuid
assert_success "$(printf "265104de-1472-547c-b873-6dc7883fb6cb\nb4689bed-97f0-5bcd-8a4c-07477cc8f06f")"
dups=$(govc object.collect -s -type m / config.uuid | sort | uniq -d | wc -l)
assert_equal 0 "$dups"
run govc object.collect -s host/DC0_H0/DC0_H0 summary.hardware.uuid
assert_success dcf7fb3c-4a1c-5a05-b730-5e09f3704e2f
dups=$(govc object.collect -s -type m / summary.hardware.uuid | sort | uniq -d | wc -l)
assert_equal 0 "$dups"
run govc vm.create foo.yakity
assert_success
run govc vm.create bar.yakity
assert_success
}
@test "vcsim issue #1251" {
vcsim_env
govc object.collect -type ComputeResource -n 1 / name &
pid=$!
run govc object.rename /DC0/host/DC0_C0 DC0_C0b
assert_success
wait $pid
govc object.collect -type ClusterComputeResource -n 1 / name &
pid=$!
run govc object.rename /DC0/host/DC0_C0b DC0_C0
assert_success
wait $pid
}
docker_name() {
echo "vcsim-$1-$(govc object.collect -s "vm/$1" config.uuid)"
}
@test "vcsim run container" {
if ! docker version ; then
skip "docker client not installed"
fi
vcsim_env -autostart=false
vm=DC0_H0_VM0
name=$(docker_name $vm)
if docker inspect "$name" ; then
flunk "$vm container still exists"
fi
run govc vm.change -vm $vm -e RUN.container=nginx
assert_success
run govc vm.power -on $vm
assert_success
if ! docker inspect "$name" ; then
flunk "$vm container does not exist"
fi
ip=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' "$name")
run govc object.collect -s vm/$vm guest.ipAddress
assert_success "$ip"
run govc object.collect -s vm/$vm summary.guest.ipAddress
assert_success "$ip"
netip=$(govc object.collect -json -s vm/$vm guest.net | jq -r .[].Val.GuestNicInfo[].IpAddress[0])
[ "$netip" = "$ip" ]
run govc vm.power -s $vm
assert_success
run docker inspect -f '{{.State.Status}}' "$name"
assert_success "exited"
run govc vm.power -on $vm
assert_success
run docker inspect -f '{{.State.Status}}' "$name"
assert_success "running"
run govc vm.destroy $vm
assert_success
if docker inspect "$name" ; then
flunk "$vm container still exists"
fi
vm=DC0_H0_VM1
name=$(docker_name $vm)
# test json encoded args
run govc vm.change -vm $vm -e RUN.container="[\"-v\", \"$PWD:/usr/share/nginx/html:ro\", \"nginx\"]"
assert_success
# test bash -c args parsing
run govc vm.change -vm $vm -e RUN.container="-v '$PWD:/usr/share/nginx/html:ro' nginx"
assert_success
run govc vm.power -on $vm
assert_success
run docker inspect "$name"
assert_success
ip=$(govc object.collect -s vm/$vm guest.ipAddress)
run docker run --rm curlimages/curl curl -f "http://$ip/vcsim.bats"
assert_success
# test suspend/resume
run docker inspect -f '{{.State.Status}}' "$name"
assert_success "running"
run govc vm.power -suspend $vm
assert_success
run docker inspect -f '{{.State.Status}}' "$name"
assert_success "paused"
run govc vm.power -on $vm
assert_success
run docker inspect -f '{{.State.Status}}' "$name"
assert_success "running"
run docker volume inspect "$name"
assert_success
run govc vm.destroy $vm
assert_success
run docker volume inspect "$name"
assert_failure
vm=DC0_C0_RP0_VM0
name=$(docker_name $vm)
run govc vm.change -vm $vm -e RUN.container="busybox grep VMware- /sys/class/dmi/id/product_serial"
assert_success
run govc vm.power -on $vm
assert_success
run docker inspect -f '{{.State.ExitCode}}' "$name"
assert_success "0"
run govc vm.destroy $vm
assert_success
vm=DC0_C0_RP0_VM1
name=$(docker_name $vm)
run govc vm.change -vm $vm -e RUN.container="busybox sh -c 'sleep \$VMX_GUESTINFO_SLEEP'" -e guestinfo.sleep=500
assert_success
run govc vm.power -on $vm
assert_success
run docker inspect -f '{{.State.Status}}' "$name"
assert_success "running"
# stopping vcsim should remove the containers and volumes
vcsim_stop
run docker inspect "$name"
assert_failure
run docker volume inspect "$name"
assert_failure
}
@test "vcsim listen" {
vcsim_start -dc 0
url=$(govc option.ls vcsim.server.url)
[[ "$url" == *"https://127.0.0.1:"* ]]
vcsim_stop
vcsim_start -dc 0 -l 0.0.0.0:0
url=$(govc option.ls vcsim.server.url)
[[ "$url" != *"https://127.0.0.1:"* ]]
[[ "$url" != *"https://[::]:"* ]]
vcsim_stop
}
@test "vcsim vapi auth" {
vcsim_env
url=$(govc env GOVC_URL)
run curl -fsk "https://$url/rest/com/vmware/cis/tagging/tag"
[ "$status" -ne 0 ] # not authenticated
run curl -fsk -X POST "https://$url/rest/com/vmware/cis/session"
[ "$status" -ne 0 ] # no basic auth header
run curl -fsk -X POST --user user: "https://$url/rest/com/vmware/cis/session"
[ "$status" -ne 0 ] # no password
run curl -fsk -X POST --user "$USER:pass" "https://$url/rest/com/vmware/cis/session"
assert_success # login with user:pass
id=$(jq -r .value <<<"$output")
run curl -fsk "https://$url/rest/com/vmware/cis/session"
[ "$status" -ne 0 ] # no header or cookie
run curl -fsk "https://$url/rest/com/vmware/cis/session" -H "vmware-api-session-id:$id"
assert_success # valid session header
user=$(jq -r .value.user <<<"$output")
assert_equal "$USER" "$user"
}
@test "vcsim auth" {
vcsim_start -username nobody -password nothing
run govc ls
assert_success
run env GOVC_USERNAME=nobody GOVC_PASSWORD=nothing govc ls -u "$(govc env GOVC_URL)"
assert_success
run govc ls -u "user:pass@$(govc env GOVC_URL)"
assert_failure
run env GOVC_USERNAME=user GOVC_PASSWORD=pass govc ls -u "$(govc env GOVC_URL)"
assert_failure
vcsim_stop
dir=$($mktemp --tmpdir -d govc-test-XXXXX)
echo nobody > "$dir/username"
echo nothing > "$dir/password"
vcsim_start -username "$dir/username" -password "$dir/password"
run govc ls
assert_success
run env GOVC_USERNAME="$dir/username" GOVC_PASSWORD="$dir/password" govc ls -u "$(govc env GOVC_URL)"
assert_success
run govc ls -u "user:pass@$(govc env GOVC_URL)"
assert_failure
vcsim_stop
rm -rf "$dir"
}
@test "vcsim ovftool" {
if ! ovftool -h >/dev/null ; then
skip "requires ovftool"
fi
vcsim_env
url=$(govc env GOVC_URL)
run ovftool --noSSLVerify --acceptAllEulas -ds=LocalDS_0 --network=DC0_DVPG0 "$GOVC_IMAGES/$TTYLINUX_NAME.ova" "vi://user:pass@$url/DC0/host/DC0_C0/DC0_C0_H1"
assert_success
run govc vm.destroy "$TTYLINUX_NAME"
assert_success
}
@test "vcsim model load" {
vcsim_start
dir="$BATS_TMPDIR/$(new_id)"
govc object.save -v -d "$dir"
vcsim_stop
vcsim_env -load "$dir"
rm -rf "$dir"
govc object.collect -s -type h / configManager.networkSystem | xargs -n1 -I% govc object.collect -s % dnsConfig
objs=$(govc find / | wc -l)
assert_equal 23 "$objs"
run govc host.portgroup.add -host DC0_H0 -vswitch vSwitch0 bridge
assert_success # issue #2016
}
@test "vcsim trace file" {
file="$BATS_TMPDIR/$(new_id).trace"
vcsim_start -trace-file "$file"
run govc ls
assert_success
vcsim_stop
run ls -l "$file"
assert_success
rm "$file"
}
|