예제 #1
0
 def test_filter_used_properties_reference_public(self):
     util = HeatInputUtil()
     heat_yml = '''
     parameters: 
       propA: 
         type: string
       propB_public:
         type: string
     '''
     orig_props = PropValueMap({
         'propA': {
             'type': 'string',
             'value': 'testA'
         },
         'propB': {
             'type': 'key',
             'keyName': 'keyB',
             'privateKey': 'thisIsPrivate',
             'publicKey': 'thisIsPublic'
         },
         'propC': {
             'type': 'string',
             'value': 'testC'
         }
     })
     new_props = util.filter_used_properties(heat_yml, orig_props)
     self.assertEqual(new_props, {
         'propA': 'testA',
         'propB_public': 'thisIsPublic'
     })
예제 #2
0
 def test_filter_used_properties_prop_value_map(self):
     util = HeatInputUtil()
     heat_yml = '''
     parameters: 
       propA: 
         type: string
       propB:
         type: string
     '''
     orig_props = PropValueMap({
         'propA': {
             'type': 'string',
             'value': 'testA'
         },
         'propB': {
             'type': 'string',
             'value': 'testB'
         },
         'propC': {
             'type': 'string',
             'value': 'testC'
         }
     })
     new_props = util.filter_used_properties(heat_yml, orig_props)
     self.assertEqual(new_props, {'propA': 'testA', 'propB': 'testB'})
예제 #3
0
 def test_filter_used_properties(self):
     util = HeatInputUtil()
     heat_yml = '''
     parameters: 
       propA: 
         type: string
       propB:
         type: string
     '''
     orig_props = {'propA': 'testA', 'propB': 'testB', 'propC': 'testC'}
     new_props = util.filter_used_properties(heat_yml, orig_props)
     self.assertEqual(new_props, {'propA': 'testA', 'propB': 'testB'})
예제 #4
0
 def test_filter_used_properties_allows_private_key_suffix_on_non_key_property(
         self):
     util = HeatInputUtil()
     heat_yml = '''
     parameters: 
       propA_private:
         type: string
     '''
     orig_props = PropValueMap(
         {'propA_private': {
             'type': 'string',
             'value': 'testA'
         }})
     new_props = util.filter_used_properties(heat_yml, orig_props)
     self.assertEqual(new_props, {'propA_private': 'testA'})
예제 #5
0
 def test_filter_used_properties_supports_no_public_key(self):
     util = HeatInputUtil()
     heat_yml = '''
     parameters: 
       propA_public:
         type: string
     '''
     orig_props = PropValueMap({
         'propA': {
             'type': 'key',
             'keyName': 'keyA',
             'privateKey': 'thisIsPrivate'
         }
     })
     # The property has no public key, so nothing is added to the used properties. Let Heat determine if this parameter is required
     # (and ultimately throw an error if it is)
     new_props = util.filter_used_properties(heat_yml, orig_props)
     self.assertEqual(new_props, {})
예제 #6
0
 def get_heat_input_util(self):
     return HeatInputUtil()