Add functional test for utf-8 decode issues
Change-Id: Ifb5100ab2a933f112e76e131cd91ea711b4d1348 Depends-On: https://review.openstack.org/435667 Depends-On: https://review.openstack.org/643504 Story: 2005237 Task: 30025
This commit is contained in:
parent
faacff2d7e
commit
e9e8b7407d
@ -14,6 +14,21 @@
|
||||
from heat_integrationtests.functional import functional_base
|
||||
|
||||
|
||||
class SimpleStackValidationTest(functional_base.FunctionalTestsBase):
|
||||
|
||||
def test_validate_json_content(self):
|
||||
template = u'''
|
||||
heat_template_version: rocky
|
||||
resources:
|
||||
server:
|
||||
type: OS::Heat::TestResource
|
||||
properties:
|
||||
value: =%da
|
||||
'''
|
||||
self.stack_create(template=template,
|
||||
expected_status='CREATE_COMPLETE')
|
||||
|
||||
|
||||
class StackValidationTest(functional_base.FunctionalTestsBase):
|
||||
|
||||
def setUp(self):
|
||||
|
Loading…
Reference in New Issue
Block a user