예제 #1
0
 def test_config_from_dict_raises_error_if_dataset_ambiguous(self):
     with self.assertRaises(ValueError):
         VitessceConfig.from_dict({
             "version":
             "1.0.4",
             "name":
             "Test name",
             "description":
             "Test description",
             "datasets": [{
                 'uid':
                 'A',
                 'name':
                 'My First Dataset',
                 'files': [{
                     'url': 'http://cells-1.json',
                     'type': 'cells',
                     'fileType': 'cells.json'
                 }]
             }, {
                 'uid':
                 'B',
                 'name':
                 'My Second Dataset',
                 'files': [{
                     'url': 'http://cells-2.json',
                     'type': 'cells',
                     'fileType': 'cells.json'
                 }]
             }],
             'coordinationSpace': {
                 'dataset': {
                     'A': 'A'
                 },
                 'spatialZoom': {
                     'ABC': 11
                 },
             },
             "layout": [
                 {
                     "component": "spatial",
                     "props": {
                         "cellRadius": 50
                     },
                     "coordinationScopes": {
                         "spatialZoom": 'ABC'
                     },
                     "x": 5,
                     "y": 0,
                     "w": 4,
                     "h": 4
                 },
             ],
             "initStrategy":
             "auto"
         })
예제 #2
0
    def test_config_from_dict(self):
        vc = VitessceConfig.from_dict({
            "version":
            "1.0.4",
            "name":
            "Test name",
            "description":
            "Test description",
            "datasets": [{
                'uid':
                'A',
                'name':
                'My First Dataset',
                'files': [{
                    'url': 'http://cells.json',
                    'type': 'cells',
                    'fileType': 'cells.json'
                }]
            }],
            'coordinationSpace': {
                'dataset': {
                    'A': 'A'
                },
                'spatialZoom': {
                    'ABC': 11
                },
            },
            "layout": [
                {
                    "component": "spatial",
                    "props": {
                        "cellRadius": 50
                    },
                    "coordinationScopes": {
                        "spatialZoom": 'ABC'
                    },
                    "x": 5,
                    "y": 0,
                    "w": 4,
                    "h": 4
                },
            ],
            "initStrategy":
            "auto"
        })

        my_second_dataset = vc.add_dataset(name='My Second Dataset')

        vc_dict = vc.to_dict()
        vc_json = json.dumps(vc_dict)

        self.assertEqual(
            vc_dict, {
                "version":
                "1.0.4",
                "name":
                "Test name",
                "description":
                "Test description",
                "datasets": [{
                    'uid':
                    'A',
                    'name':
                    'My First Dataset',
                    'files': [{
                        'url': 'http://cells.json',
                        'type': 'cells',
                        'fileType': 'cells.json'
                    }]
                }, {
                    'uid': 'B',
                    'name': 'My Second Dataset',
                    'files': []
                }],
                'coordinationSpace': {
                    'dataset': {
                        'A': 'A',
                        'B': 'B'
                    },
                    'spatialZoom': {
                        'ABC': 11,
                    },
                },
                "layout": [
                    {
                        "component": "spatial",
                        "props": {
                            "cellRadius": 50
                        },
                        "coordinationScopes": {
                            "spatialZoom": 'ABC'
                        },
                        "x": 5,
                        "y": 0,
                        "w": 4,
                        "h": 4
                    },
                ],
                "initStrategy":
                "auto"
            })