コード例 #1
0
 def test_add_column(self):
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         columns=[VectorData(name='test_'+t,
                             description='test_'+t+' description',
                             data=np.arange(10)) for t in ['c1', 'c2', 'c3']])
     # Test successful add
     adt.add_column(name='testA', description='testA', data=np.arange(10))
     self.assertTupleEqual(adt.colnames,  ('test_c1', 'test_c2', 'test_c3', 'testA'))
コード例 #2
0
 def test_add_column_bad_category(self):
     """Test add column with bad category"""
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         columns=[VectorData(name='test_'+t,
                             description='test_'+t+' description',
                             data=np.arange(10)) for t in ['c1', 'c2', 'c3']])
     with self.assertRaises(KeyError) as ke:
         adt.add_column(category='mycat', name='testA', description='testA', data=np.arange(10))
     self.assertEqual(str(ke.exception), "'Category mycat not in table'")
コード例 #3
0
 def test_add_column_bad_length(self):
     """Test add column that is too short"""
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         columns=[VectorData(name='test_'+t,
                             description='test_'+t+' description',
                             data=np.arange(10)) for t in ['c1', 'c2', 'c3']])
     # Test successful add
     with self.assertRaises(ValueError) as ve:
         adt.add_column(name='testA', description='testA', data=np.arange(8))
     self.assertEqual(str(ve.exception), "column must have the same number of rows as 'id'")
コード例 #4
0
 def test_add_row(self):
     """Test adding a row to a non_empty table"""
     category_names = ['test1', ]
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2']]
                                ) for val in category_names]
     temp = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories,
         columns=[VectorData(name='main_' + t,
                             description='main_'+t+'_description',
                             data=np.arange(num_rows)) for t in ['c1', 'c2']])
     self.assertListEqual(temp.categories, category_names)
     # Test successful add
     temp.add_row(test1=dict(c1=1, c2=2), main_c1=3, main_c2=5)
     self.assertListEqual(temp[10].iloc[0].tolist(), [3, 5, 10, 1, 2])
     # Test successful add version 2
     temp.add_row(data=dict(test1=dict(c1=1, c2=2), main_c1=4, main_c2=5))
     self.assertListEqual(temp[11].iloc[0].tolist(), [4, 5, 11, 1, 2])
     # Test missing categories data
     with self.assertRaises(KeyError) as ke:
         temp.add_row(main_c1=3, main_c2=5)
     self.assertTrue("row data keys don't match" in str(ke.exception))
コード例 #5
0
    def test_init_with_custom_nonempty_categories_and_main(self):
        """
        Test that we can create a non-empty table with custom non-empty categories
        """
        category_names = ['test1', 'test2', 'test3']
        num_rows = 10
        categories = [DynamicTable(name=val,
                                   description=val+" description",
                                   columns=[VectorData(name=t,
                                                       description=val+t+' description',
                                                       data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                   ) for val in category_names]
        temp = AlignedDynamicTable(
            name='test_aligned_table',
            description='Test aligned container',
            category_tables=categories,
            columns=[VectorData(name='main_' + t,
                                description='main_'+t+'_description',
                                data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']])

        self.assertEqual(temp.categories, category_names)
        self.assertTrue('test1' in temp)  # test that contains category works
        self.assertTrue(('test1', 'c1') in temp)  # test that contains a column works
        with self.assertRaises(ValueError):  # test the error case of a tuple with len !-2
            ('test1', 'c1', 't3') in temp
        self.assertTupleEqual(temp.colnames, ('main_c1', 'main_c2', 'main_c3'))
コード例 #6
0
 def test_add_category(self):
     """Test that we can correct a non-empty category to an existing table"""
     category_names = ['test1', 'test2', 'test3']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories[0:2])
     self.assertListEqual(adt.categories, category_names[0:2])
     adt.add_category(categories[-1])
     self.assertListEqual(adt.categories, category_names)
コード例 #7
0
 def test_init_with_custom_empty_categories(self):
     """Test that we can create an empty table with custom categories"""
     category_names = ['test1', 'test2', 'test3']
     categories = [DynamicTable(name=val, description=val+" description") for val in category_names]
     AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories)
コード例 #8
0
 def test_add_category_already_in_table(self):
     category_names = ['test1', 'test2', 'test2']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories[0:2])
     self.assertListEqual(adt.categories, category_names[0:2])
     with self.assertRaises(ValueError) as ve:
         adt.add_category(categories[-1])
     self.assertEqual(str(ve.exception), "Category test2 already in the table")
コード例 #9
0
 def test_init_categories_without_category_tables_error(self):
     # Test raise error if categories is given without category_tables
     with self.assertRaises(ValueError) as ve:
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             categories=['cat1', 'cat2'])
     self.assertEqual(str(ve.exception), "Categories provided but no category_tables given")
コード例 #10
0
    def test_to_dataframe(self):
        """Test that the to_dataframe method works"""
        category_names = ['test1', 'test2', 'test3']
        num_rows = 10
        categories = [DynamicTable(name=val,
                                   description=val+" description",
                                   columns=[VectorData(name=t,
                                                       description=val+t+' description',
                                                       data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                   ) for val in category_names]
        adt = AlignedDynamicTable(
            name='test_aligned_table',
            description='Test aligned container',
            category_tables=categories,
            columns=[VectorData(name='main_' + t,
                                description='main_'+t+'_description',
                                data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']])

        # Test the to_dataframe method with default settings
        tdf = adt.to_dataframe()
        self.assertListEqual(tdf.index.data.tolist(), list(range(10)))
        self.assertTupleEqual(tdf.index.name, ('test_aligned_table', 'id'))
        expected_cols = [('test_aligned_table', 'main_c1'),
                         ('test_aligned_table', 'main_c2'),
                         ('test_aligned_table', 'main_c3'),
                         ('test1', 'id'), ('test1', 'c1'), ('test1', 'c2'), ('test1', 'c3'),
                         ('test2', 'id'), ('test2', 'c1'), ('test2', 'c2'), ('test2', 'c3'),
                         ('test3', 'id'), ('test3', 'c1'), ('test3', 'c2'), ('test3', 'c3')]
        tdf_cols = tdf.columns.tolist()
        for v in zip(expected_cols, tdf_cols):
            self.assertTupleEqual(v[0], v[1])

        # test the to_dataframe method with ignore_category_ids set to True
        tdf = adt.to_dataframe(ignore_category_ids=True)
        self.assertListEqual(tdf.index.data.tolist(), list(range(10)))
        self.assertTupleEqual(tdf.index.name, ('test_aligned_table', 'id'))
        expected_cols = [('test_aligned_table', 'main_c1'),
                         ('test_aligned_table', 'main_c2'),
                         ('test_aligned_table', 'main_c3'),
                         ('test1', 'c1'), ('test1', 'c2'), ('test1', 'c3'),
                         ('test2', 'c1'), ('test2', 'c2'), ('test2', 'c3'),
                         ('test3', 'c1'), ('test3', 'c2'), ('test3', 'c3')]
        tdf_cols = tdf.columns.tolist()
        for v in zip(expected_cols, tdf_cols):
            self.assertTupleEqual(v[0], v[1])
コード例 #11
0
 def test_init_length_mismatch_between_categories_and_category_tables(self):
     # Test length mismatch between categories and category_tables
     with self.assertRaises(ValueError) as ve:
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             categories=['cat1', 'cat2'],
             category_tables=[])
     self.assertEqual(str(ve.exception), "0 category_tables given but 2 categories specified")
コード例 #12
0
 def test_add_column_to_subcategory(self):
     """Test adding a column to a subcategory"""
     category_names = ['test1', 'test2', 'test3']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories)
     self.assertListEqual(adt.categories, category_names)
     # Test successful add
     adt.add_column(category='test2', name='testA', description='testA', data=np.arange(10))
     self.assertTupleEqual(adt.get_category('test2').colnames, ('test2c1', 'test2c2', 'test2c3', 'testA'))
コード例 #13
0
 def test_get_item(self):
     """Test getting elements from the table"""
     category_names = ['test1', ]
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows) + i + 3)
                                         for i, t in enumerate(['c1', 'c2'])]
                                ) for val in category_names]
     temp = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories,
         columns=[VectorData(name='main_' + t,
                             description='main_'+t+'_description',
                             data=np.arange(num_rows)+2) for t in ['c1', 'c2']])
     self.assertListEqual(temp.categories, category_names)
     # Test slicing with a single index
     self.assertListEqual(temp[5].iloc[0].tolist(), [7, 7, 5, 8, 9])
     # Test slice with list
     self.assertListEqual(temp[[5, 7]].iloc[0].tolist(), [7, 7, 5, 8, 9])
     self.assertListEqual(temp[[5, 7]].iloc[1].tolist(), [9, 9, 7, 10, 11])
     # Test slice with slice
     self.assertListEqual(temp[5:7].iloc[0].tolist(), [7, 7, 5, 8, 9])
     self.assertListEqual(temp[5:7].iloc[1].tolist(), [8, 8, 6, 9, 10])
     # Test slice with numpy index arrya
     self.assertListEqual(temp[np.asarray([5, 8])].iloc[0].tolist(), [7, 7, 5, 8, 9])
     self.assertListEqual(temp[np.asarray([5, 8])].iloc[1].tolist(), [10, 10, 8, 11, 12])
     # Test slicing for a single column
     self.assertListEqual(temp['main_c1'][:].tolist(), (np.arange(num_rows)+2).tolist())
     # Test slicing for a single category
     assert_frame_equal(temp['test1'], categories[0].to_dataframe())
     # Test getting the main table
     assert_frame_equal(temp[None], temp.to_dataframe())
     # Test getting a specific column
     self.assertListEqual(temp['test1', 'c1'][:].tolist(), (np.arange(num_rows) + 3).tolist())
     # Test getting a specific cell
     self.assertEqual(temp[None, 'main_c1', 1], 3)
     # Test bad selection tuple
     with self.assertRaises(ValueError):
         temp[('main_c1',)]
         raise ValueError("Expected tuple of length 2 or 3 with (category, selection, row) as value.")
コード例 #14
0
 def test_add_category_misaligned_rows(self):
     """Test that we can correct a non-empty category to an existing table"""
     category_names = ['test1', 'test2']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     adt = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories)
     self.assertListEqual(adt.categories, category_names)
     with self.assertRaises(ValueError) as ve:
         adt.add_category(DynamicTable(name='test3',
                                       description='test3_description',
                                       columns=[VectorData(name='test3_'+t,
                                                           description='test3 '+t+' description',
                                                           data=np.arange(num_rows - 2)) for t in ['c1', 'c2', 'c3']
                                                ]))
     self.assertEqual(str(ve.exception), "New category DynamicTable does not align, it has 8 rows expected 10")
コード例 #15
0
 def test_init_duplicate_category_table_name(self):
     # Test duplicate table name
     with self.assertRaises(ValueError) as ve:
         categories = [DynamicTable(name=val,
                                    description=val+" description",
                                    columns=[VectorData(name=val+t,
                                                        description=val+t+' description',
                                                        data=np.arange(10)) for t in ['c1', 'c2', 'c3']]
                                    ) for val in ['test1', 'test1', 'test3']]
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             categories=['test1', 'test2', 'test3'],
             category_tables=categories)
     self.assertEqual(str(ve.exception), "Duplicate table name test1 found in input dynamic_tables")
コード例 #16
0
 def test_init_with_custom_nonempty_categories(self):
     """Test that we can create an empty table with custom categories"""
     category_names = ['test1', 'test2', 'test3']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     temp = AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container',
         category_tables=categories)
     self.assertEqual(temp.categories, category_names)
コード例 #17
0
 def test_init_with_duplicate_custom_categories(self):
     """Test that we can create an empty table with custom categories"""
     category_names = ['test1', 'test1']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     with self.assertRaises(ValueError):
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             category_tables=categories)
コード例 #18
0
 def test_init_category_table_names_do_not_match_categories(self):
     # Construct some categories for testing
     category_names = ['test1', 'test2', 'test3']
     num_rows = 10
     categories = [DynamicTable(name=val,
                                description=val+" description",
                                columns=[VectorData(name=val+t,
                                                    description=val+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                ) for val in category_names]
     # Test add category_table that is not listed in the categories list
     with self.assertRaises(ValueError) as ve:
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             categories=['test1', 'test2', 't3'],  # bad name for 'test3'
             category_tables=categories)
     self.assertEqual(str(ve.exception), "DynamicTable test3 does not appear in categories ['test1', 'test2', 't3']")
コード例 #19
0
 def test_init_misaligned_category_tables(self):
     # Test misaligned category tables
     with self.assertRaises(ValueError) as ve:
         categories = [DynamicTable(name=val,
                                    description=val+" description",
                                    columns=[VectorData(name=val+t,
                                                        description=val+t+' description',
                                                        data=np.arange(10)) for t in ['c1', 'c2', 'c3']]
                                    ) for val in ['test1', 'test2']]
         categories.append(DynamicTable(name='test3',
                                        description="test3 description",
                                        columns=[VectorData(name='test3 '+t,
                                                            description='test3 '+t+' description',
                                                            data=np.arange(8)) for t in ['c1', 'c2', 'c3']]))
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             categories=['test1', 'test2', 'test3'],
             category_tables=categories)
     self.assertEqual(str(ve.exception), "Category DynamicTable test3 does not align, it has 8 rows expected 10")
コード例 #20
0
 def test_init_with_custom_misaligned_categories(self):
     """Test that we cannot create an empty table with custom categories"""
     num_rows = 10
     val1 = 'test1'
     val2 = 'test2'
     categories = [DynamicTable(name=val1,
                                description=val1+" description",
                                columns=[VectorData(name=val1+t,
                                                    description=val1+t+' description',
                                                    data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]),
                   DynamicTable(name=val1,
                                description=val1+" description",
                                columns=[VectorData(name=val2+t,
                                                    description=val2+t+' description',
                                                    data=np.arange(num_rows+1)) for t in ['c1', 'c2', 'c3']])
                   ]
     with self.assertRaises(ValueError):
         AlignedDynamicTable(
             name='test_aligned_table',
             description='Test aligned container',
             category_tables=categories)
コード例 #21
0
    def test_round_trip_container(self):
        """Test read and write the container by itself"""
        category_names = ['test1', 'test2', 'test3']
        num_rows = 10
        categories = [DynamicTable(name=val,
                                   description=val+" description",
                                   columns=[VectorData(name=t,
                                                       description=val+t+' description',
                                                       data=np.arange(num_rows)) for t in ['c1', 'c2', 'c3']]
                                   ) for val in category_names]
        curr = AlignedDynamicTable(
            name='test_aligned_table',
            description='Test aligned container',
            category_tables=categories)

        with NWBHDF5IO(self.path, 'w') as io:
            io.write(curr)

        with NWBHDF5IO(self.path, 'r') as io:
            incon = io.read()
            self.assertListEqual(incon.categories, curr.categories)
            for n in category_names:
                assert_frame_equal(incon[n], curr[n])
コード例 #22
0
 def test_init(self):
     """Test that just checks that populating the tables with data works correctly"""
     AlignedDynamicTable(
         name='test_aligned_table',
         description='Test aligned container')