Update functional test WordPress_Single_Instance_With_EIP
to use the new verify_wordpress which checks that the wordpress
homepage specified in the stack output looks OK
Change-Id: I6b839e95f2c9fc8d89a22c062c393d6f14fb5df9
Signed-off-by: Steven Hardy <shardy@redhat.com>
#
import util
+import verify
import nose
from nose.plugins.attrib import attr
break
assert found == 1
+ # Verify the output URL parses as expected, ie check that
+ # the wordpress installation is operational
+ stack_url = func_utils.get_stack_output("WebsiteURL")
+ print "Got stack output WebsiteURL=%s, verifying" % stack_url
+ ver = verify.VerifyStack()
+ assert True == ver.verify_wordpress(stack_url)
+
func_utils.cleanup()