Ejemplo n.º 1
0
 def test_step_write_modified_tolerance(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     outfilename = 'tests/test_datasets/test_pipe_out.step'
     step_handler.write(mesh_points, outfilename, 1e-3)
     self.assertEqual(step_handler.outfile, outfilename)
     self.addCleanup(os.remove, outfilename)
Ejemplo n.º 2
0
 def test_step_write_shape_to_file_stp(self):
     shp = BRepPrimAPI_MakeBox(1., 1., 1.).Shape()
     path = 'tests/test_datasets/x.stp'
     step_handler = sh.StepHandler()
     step_handler.write_shape_to_file(shp, path)
     self.assertTrue(os.path.exists(path))
     self.addCleanup(os.remove, path)
Ejemplo n.º 3
0
    def test_step_write_comparison_stp(self):
        step_handler = sh.StepHandler()
        mesh_points = step_handler.parse('tests/test_datasets/test_pipe.stp')
        mesh_points[0][0] = 2.2
        mesh_points[5][1] = 4.3
        mesh_points[9][2] = 0.5
        mesh_points[12][0] = 7.2
        mesh_points[16][1] = -1.2
        mesh_points[31][2] = -3.6

        outfilename = 'tests/test_datasets/test_pipe_out.stp'
        outfilename_expected = 'tests/test_datasets/test_pipe_out_true.stp'

        step_handler.write(mesh_points, outfilename)

        mesh_points = step_handler.parse(outfilename)
        mesh_points_expected = step_handler.parse(outfilename_expected)
        np.testing.assert_array_almost_equal(mesh_points, mesh_points_expected)
        self.addCleanup(os.remove, outfilename)
Ejemplo n.º 4
0
 def test_step_parse_control_point_position_member(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     self.assertListEqual(step_handler._control_point_position,
                          [0, 4, 8, 14, 20, 26, 32])
Ejemplo n.º 5
0
 def test_step_parse_infile(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     self.assertEqual(step_handler.infile,
                      'tests/test_datasets/test_pipe.step')
Ejemplo n.º 6
0
 def test_step_parse_failing_check_extension(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(ValueError):
         mesh_points = step_handler.parse(
             'tests/test_datasets/test_pipe.vtk')
Ejemplo n.º 7
0
 def test_step_write_failing_check_extension(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     with self.assertRaises(ValueError):
         step_handler.write(mesh_points,
                            'tests/test_datasets/test_square.stl')
Ejemplo n.º 8
0
 def test_step_parse_coords_5_stp(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.stp')
     np.testing.assert_almost_equal(mesh_points[-1][2], 0.0)
Ejemplo n.º 9
0
 def test_step_load_shape_from_file_raises_wrong_type(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(TypeError):
         step_handler.load_shape_from_file(None)
Ejemplo n.º 10
0
 def test_step_parse_failing_filename_type(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(TypeError):
         mesh_points = step_handler.parse(5.2)
Ejemplo n.º 11
0
 def test_step_show_failing_outfile_type(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(TypeError):
         step_handler.show(show_file=1.1)
Ejemplo n.º 12
0
 def test_step_plot_failing_outfile_type(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(TypeError):
         step_handler.plot(plot_file=3)
Ejemplo n.º 13
0
 def test_step_plot_save_fig(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     step_handler.plot(save_fig=True)
     self.assertTrue(os.path.isfile('tests/test_datasets/test_pipe.png'))
     self.addCleanup(os.remove, 'tests/test_datasets/test_pipe.png')
Ejemplo n.º 14
0
 def test_step_default_extension_member(self):
     step_handler = sh.StepHandler()
     self.assertListEqual(step_handler.extensions, ['.step', '.stp'])
Ejemplo n.º 15
0
 def test_step_parse_shape_stp(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.stp')
     self.assertTupleEqual(mesh_points.shape, (32, 3))
Ejemplo n.º 16
0
 def test_step_load_shape_correct_stp(self):
     step_handler = sh.StepHandler()
     shape = step_handler.load_shape_from_file(
         'tests/test_datasets/test_pipe.stp')
     self.assertEqual(type(shape), TopoDS_Shape)
Ejemplo n.º 17
0
 def test_step_parse_coords_2(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     np.testing.assert_almost_equal(mesh_points[8][1], -1000.0)
Ejemplo n.º 18
0
 def test_step_write_shape_to_file_raises_wrong_type(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(TypeError):
         step_handler.write_shape_to_file(None, None)
Ejemplo n.º 19
0
 def test_step_write_failing_filename_type(self):
     step_handler = sh.StepHandler()
     mesh_points = step_handler.parse('tests/test_datasets/test_pipe.step')
     with self.assertRaises(TypeError):
         step_handler.write(mesh_points, -2)
Ejemplo n.º 20
0
 def test_step_write_shape_to_file_raises_wrong_extension(self):
     step_handler = sh.StepHandler()
     with self.assertRaises(ValueError):
         step_handler.load_shape_from_file('tests/test_datasets/x.igs')
Ejemplo n.º 21
0
 def test_step_write_failing_infile_instantiation(self):
     step_handler = sh.StepHandler()
     mesh_points = np.zeros((20, 3))
     with self.assertRaises(RuntimeError):
         step_handler.write(mesh_points,
                            'tests/test_datasets/test_pipe_out.step')
Ejemplo n.º 22
0
 def test_step_instantiation(self):
     step_handler = sh.StepHandler()