Skip to content

Failed

OmeroWeb.test.integration.test_tree.TestTree.test_marshal_images_dataset (from pytest)

Failing for the past 4 builds (Since #64 )
Took 3 sec.

Error Message

AssertionError: assert [{'archived':...': 4584, ...}] == [{'id': 7368,...grp isOwned'}]
  
  At index 0 diff: {'id': 7368, 'archived': None, 'name': 'ImageA', 'ownerId': 4584, 'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned'} != {'id': 7368, 'name': 'ImageA', 'ownerId': 4584, 'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned'}
  
  Full diff:
    [
        {
  +         'archived': None,
            'id': 7368,
            'name': 'ImageA',
            'ownerId': 4584,
            'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned',
        },
        {
  +         'archived': None,
            'id': 7369,
            'name': 'ImageB',
            'ownerId': 4584,
            'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned',
        },
    ]

Stacktrace

self = <test_tree.TestTree object at 0x7f2242336850>
userA = (<omero.clients.BaseClient object at 0x7f22bc705a60>, object #0 (::omero::model::Experimenter)
{
    _id = object #1 (...nnotationLinksSeq = 
    {
    }
    _annotationLinksLoaded = False
    _annotationLinksCountPerOwner = 
    {
    }
})
project_hierarchy_userA_groupA = [object #0 (::omero::model::Project)
{
    _id = object #1 (::omero::RLong)
    {
        _val = 1063
    }
    _detai...{
    }
    _name = object #127 (::omero::RString)
    {
        _val = ImageB
    }
    _description = <object #14>
}]

    def test_marshal_images_dataset(self, userA,
                                    project_hierarchy_userA_groupA):
        """
        Test marshalling images for userA, groupA, datasetA
        """
        conn = get_connection(userA)
        dataset = project_hierarchy_userA_groupA[2]
        images = project_hierarchy_userA_groupA[4:6]
        expected = expected_images(userA, images)
        marshaled = marshal_images(conn=conn,
                                   dataset_id=dataset.id.val)
>       assert marshaled == expected
E       AssertionError: assert [{'archived':...': 4584, ...}] == [{'id': 7368,...grp isOwned'}]
E         
E         At index 0 diff: {'id': 7368, 'archived': None, 'name': 'ImageA', 'ownerId': 4584, 'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned'} != {'id': 7368, 'name': 'ImageA', 'ownerId': 4584, 'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned'}
E         
E         Full diff:
E           [
E               {
E         +         'archived': None,
E                   'id': 7368,
E                   'name': 'ImageA',
E                   'ownerId': 4584,
E                   'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned',
E               },
E               {
E         +         'archived': None,
E                   'id': 7369,
E                   'name': 'ImageB',
E                   'ownerId': 4584,
E                   'permsCss': 'canEdit canAnnotate canLink canDelete canChgrp isOwned',
E               },
E           ]

test/integration/test_tree.py:1822: AssertionError