Adding message to verif manifest was in fact deleted.

This commit is contained in:
Jan Mußler 2020-10-27 22:22:26 +01:00
parent d24c1285b9
commit 067c7b5558
1 changed files with 4 additions and 0 deletions

View File

@ -814,6 +814,7 @@ class EndToEndTestCase(unittest.TestCase):
# this delete attempt should be omitted because of missing annotations
k8s.api.custom_objects_api.delete_namespaced_custom_object(
"acid.zalan.do", "v1", "default", "postgresqls", "acid-minimal-cluster")
time.sleep(5)
# check that pods and services are still there
k8s.wait_for_running_pods(cluster_label, 2)
@ -847,6 +848,9 @@ class EndToEndTestCase(unittest.TestCase):
k8s.api.custom_objects_api.delete_namespaced_custom_object(
"acid.zalan.do", "v1", "default", "postgresqls", "acid-minimal-cluster")
self.eventuallyEqual(lambda: len(k8s.api.custom_objects_api.list_namespaced_custom_object(
"acid.zalan.do", "v1", "default", "postgresqls", label_selector="cluster-name=acid-minimal-cluster")["items"]), 0, "Manifest not deleted")
# check if everything has been deleted
self.eventuallyEqual(lambda: k8s.count_pods_with_label(cluster_label), 0, "Pods not deleted")
self.eventuallyEqual(lambda: k8s.count_services_with_label(cluster_label), 0, "Service not deleted")