e2e: fix and simplify handler tests

This commit is contained in:
Steffen Vogel 2021-07-16 13:18:29 +02:00
parent 08bf9b1cb4
commit c2d92181c8

View File

@ -4,14 +4,13 @@
setup_suite() {
# shellcheck disable=SC2016
_kubectl patch ds -n kube-system kilo -p '{"spec": {"template":{"spec":{"containers":[{"name":"kilo","args":["--hostname=$(NODE_NAME)","--create-interface=false","--kubeconfig=/etc/kubernetes/kubeconfig","--mesh-granularity=full"]}]}}}}'
block_until_ready_by_name kube-system kilo-userspace
_kubectl wait pod -l app.kubernetes.io/name=adjacency --for=condition=Ready --timeout 3m
}
test_graph_handler() {
assert "curl_pod http://10.4.0.1:1107/graph?format=svg&layout=circo | grep -q '<svg'"
assert "curl_pod http://10.4.0.1:1107/graph&layout=circo | grep -q '<svg'"
assert "curl_pod http://10.4.0.1:1107/graph?layout=circo | grep -q '<svg'"
assert "curl_pod http://10.4.0.1:1107/graph | grep -q '<svg'"
assert _not "curl_pod http://10.4.0.1:1107/graph?format=svg&layout=fake | grep -q '<svg'"
}