[ 
https://issues.apache.org/jira/browse/ARIA-105?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15931671#comment-15931671
 ] 

ASF GitHub Bot commented on ARIA-105:
-------------------------------------

Github user mxmrlv commented on a diff in the pull request:

    https://github.com/apache/incubator-ariatosca/pull/72#discussion_r106806321
  
    --- Diff: tests/modeling/test_models.py ---
    @@ -663,66 +646,45 @@ def _node(self, storage, node, is_host, ip, 
host_fk=None):
             kwargs = dict(
                 name='node',
                 node_template=node,
    +            type=storage.type.list()[0],
                 runtime_properties={},
                 state='',
    -            service_instance=storage.service_instance.list()[0]
    +            service=storage.service.list()[0]
             )
             if ip:
                 kwargs['runtime_properties']['ip'] = ip
             if is_host:
                 kwargs['host_fk'] = 1
             elif host_fk:
                 kwargs['host_fk'] = host_fk
    -        node_instance = Node(**kwargs)
    -        storage.node.put(node_instance)
    -        return node_instance
    +        node = Node(**kwargs)
    +        storage.node.put(node)
    +        return node
     
     
    -class TestRelationshipInstance(object):
    +class TestRelationship(object):
         @pytest.mark.parametrize(
    -        'is_valid, source_requirement_index, target_node_id, 
target_capability_name, type_name, '
    -        'template_name, type_hierarchy, source_position, target_position',
    +        'is_valid, source_position, target_position',
             [
    -            (False, m_cls, 'target_node_id', 'target_cap_name', 
'type_name', 'template_name', [], 0,
    -             0),
    -            (False, 0, m_cls, 'target_cap_name', 'type_name', 
'template_name', [], 0, 0),
    -            (False, 0, 'target_node_id', m_cls, 'type_name', 
'template_name', [], 0, 0),
    -            (False, 0, 'target_node_id', 'target_cap_name', m_cls, 
'template_name', [], 0, 0),
    -            (False, 0, 'target_node_id', 'target_cap_name', 'type_name', 
m_cls, [], 0, 0),
    -            (False, 0, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', m_cls, 0,
    -             0),
    -            (False, 0, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', [], m_cls,
    -             0),
    -            (False, 0, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', [], 0,
    -             m_cls),
    -
    -            (True, 0, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', [], 0, 0),
    -            (True, None, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', [], 0,
    -             0),
    -            (True, 0, None, 'target_cap_name', 'type_name', 
'template_name', [], 0, 0),
    -            (True, 0, 'target_node_id', None, 'type_name', 
'template_name', [], 0, 0),
    -            (True, 0, 'target_node_id', 'target_cap_name', None, 
'template_name', [], 0, 0),
    -            (True, 0, 'target_node_id', 'target_cap_name', 'type_name', 
None, [], 0, 0),
    -            (True, 0, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', [], None,
    -             0),
    -            (True, 0, 'target_node_id', 'target_cap_name', 'type_name', 
'template_name', [], 0,
    -             None),
    +            (False, m_cls, 0),
    --- End diff --
    
    what happened to the rest of the test cases?


> Integrate new models into parser
> --------------------------------
>
>                 Key: ARIA-105
>                 URL: https://issues.apache.org/jira/browse/ARIA-105
>             Project: AriaTosca
>          Issue Type: Task
>            Reporter: Ran Ziv
>            Assignee: Tal Liron
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to