Skip to content

Commit

Permalink
tests: Skip part of test due to error in podman
Browse files Browse the repository at this point in the history
See containers/podman#3897
I haven't done naughty, since this is not that super important thing to
test and also things that follow are more important for us to test.

Once it is fixed, this commit should be reverted.
  • Loading branch information
marusak committed Aug 28, 2019
1 parent e21a07b commit 5ae2186
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions test/check-application
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,16 @@ class TestApplication(testlib.MachineCase):
b.wait_present('.modal-dialog div:contains("Image name is required")')
b.click(".modal-dialog div .alert .close")
b.wait_not_present(".modal-dialog div .alert")

# HACK: Disable checking for varlink error since it makes podman to coredump
# See https://github.com/containers/libpod/issues/3897
# check varlink error
b.set_input_text("#commit-dialog-image-name", "TEST")
b.click(".modal-dialog div .btn-ctr-commit")
b.wait_present(".modal-dialog div")
b.wait_present('.modal-dialog div:contains("io.podman.ErrorOccurred")')
b.click(".modal-dialog div .alert .close")
b.wait_not_present(".modal-dialog div .alert")
# b.set_input_text("#commit-dialog-image-name", "TEST")
# b.click(".modal-dialog div .btn-ctr-commit")
# b.wait_present(".modal-dialog div")
# b.wait_present('.modal-dialog div:contains("io.podman.ErrorOccurred")')
# b.click(".modal-dialog div .alert .close")
# b.wait_not_present(".modal-dialog div .alert")

# delete image busybox that hasn't been used
b.wait_present('#containers-images tr:contains("busybox:latest")')
Expand Down

0 comments on commit 5ae2186

Please sign in to comment.