class TestGrid(unittest.TestCase): def setUp(self): self.table = Table((0, 0), 3, 3) for x in range(3): self.table.set_col_width(x, 3.0) self.table.set_row_height(x, 3.0) def test_grid_coords(self): grid = Grid(self.table) left, right, top, bottom = grid.cell_coords(1, 1, span=(1, 1)) self.assertAlmostEqual(left, 3., places=4) self.assertAlmostEqual(right, 6., places=4) self.assertAlmostEqual(top, -3., places=4) self.assertAlmostEqual(bottom, -6., places=4) def test_grid_coords_span(self): grid = Grid(self.table) left, right, top, bottom = grid.cell_coords(0, 0, span=(2, 2)) self.assertAlmostEqual(left, 0., places=4) self.assertAlmostEqual(right, 6., places=4) self.assertAlmostEqual(top, 0., places=4) self.assertAlmostEqual(bottom, -6., places=4) def test_draw_cell_background(self): grid = Grid(self.table) self.table.new_cell_style('fill', bgcolor=17) cell = self.table.get_cell(0, 0) cell.stylename='fill' self.assertTrue('SOLID' in self.table.__dxf__())
def test_cell_style(self): table = Table((0, 0), 10, 10) style = table.new_cell_style('extra', textcolor=199) style = table.get_cell_style('extra') self.assertEqual(style['textcolor'], 199) self.assertRaises(KeyError, table.get_cell_style, 'extraextra')