| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | import FreeCAD |
| |
|
| | import Path |
| | import CAMTests.PathTestUtils as PathTestUtils |
| | from Path.Post.Processor import PostProcessorFactory |
| |
|
| |
|
| | Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule()) |
| | Path.Log.trackModule(Path.Log.thisModule()) |
| |
|
| |
|
| | class TestMach3Mach4Post(PathTestUtils.PathTestBase): |
| | """Test the mach3_mach4_post.py postprocessor.""" |
| |
|
| | @classmethod |
| | def setUpClass(cls) -> None: |
| | """setUpClass()... |
| | |
| | This method is called upon instantiation of this test class. Add code |
| | and objects here that are needed for the duration of the test() methods |
| | in this class. In other words, set up the 'global' test environment |
| | here; use the `setUp()` method to set up a 'local' test environment. |
| | This method does not have access to the class `self` reference, but it |
| | is able to call static methods within this same class. |
| | """ |
| |
|
| | FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") |
| | cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd") |
| | cls.job = cls.doc.getObject("Job") |
| | cls.post = PostProcessorFactory.get_post_processor(cls.job, "mach3_mach4") |
| | |
| | for op in cls.job.Operations.Group: |
| | if op.Label == "Profile": |
| | |
| | cls.profile_op = op |
| | return |
| |
|
| | @classmethod |
| | def tearDownClass(cls) -> None: |
| | """tearDownClass()... |
| | |
| | This method is called prior to destruction of this test class. Add |
| | code and objects here that cleanup the test environment after the |
| | test() methods in this class have been executed. This method does not |
| | have access to the class `self` reference. This method is able to |
| | call static methods within this same class. |
| | """ |
| | FreeCAD.closeDocument(cls.doc.Name) |
| | FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") |
| |
|
| | |
| |
|
| | def setUp(self) -> None: |
| | """setUp()... |
| | |
| | This method is called prior to each `test()` method. Add code and |
| | objects here that are needed for multiple `test()` methods. |
| | """ |
| | |
| | self.maxDiff = None |
| | |
| | self.post.reinitialize() |
| |
|
| | def tearDown(self) -> None: |
| | """tearDown()... |
| | |
| | This method is called after each test() method. Add cleanup instructions here. |
| | Such cleanup instructions will likely undo those in the setUp() method. |
| | """ |
| | pass |
| |
|
| | def single_compare(self, path, expected, args, debug=False): |
| | """Perform a test with a single line of gcode comparison.""" |
| | nl = "\n" |
| | self.job.PostProcessorArgs = args |
| | |
| | self.profile_op.Path = Path.Path(path) |
| | |
| | gcode = self.post.export()[0][1] |
| | if debug: |
| | print(f"--------{nl}{gcode}--------{nl}") |
| | |
| | self.assertEqual(gcode.splitlines()[4], expected) |
| |
|
| | def multi_compare(self, path, expected, args, debug=False): |
| | """Perform a test with multiple lines of gcode comparison.""" |
| | nl = "\n" |
| | self.job.PostProcessorArgs = args |
| | |
| | self.profile_op.Path = Path.Path(path) |
| | |
| | gcode = self.post.export()[0][1] |
| | if debug: |
| | print(f"--------{nl}{gcode}--------{nl}") |
| | self.assertEqual(gcode, expected) |
| |
|
| | def test000(self) -> None: |
| | """Test Output Generation. |
| | Empty path. Produces only the preamble and postable. |
| | """ |
| | nl = "\n" |
| |
|
| | self.profile_op.Path = Path.Path([]) |
| |
|
| | |
| | |
| | |
| | self.job.PostProcessorArgs = "--no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | self.assertTrue(len(gcode.splitlines()) == 26) |
| |
|
| | |
| | expected = """(Begin preamble) |
| | G17 G54 G40 G49 G80 G90 |
| | G21 |
| | (Begin operation: Fixture) |
| | (Machine: mach3_4, mm/min) |
| | G54 |
| | (Finish operation: Fixture) |
| | (Begin operation: TC: Default Tool) |
| | (Machine: mach3_4, mm/min) |
| | (TC: Default Tool) |
| | (Begin toolchange) |
| | M5 |
| | M6 T1 |
| | G43 H1 |
| | (Finish operation: TC: Default Tool) |
| | (Begin operation: Profile) |
| | (Machine: mach3_4, mm/min) |
| | (Finish operation: Profile) |
| | (Begin postamble) |
| | M05 |
| | G17 G54 G90 G80 G40 |
| | M2 |
| | """ |
| |
|
| | |
| | self.job.PostProcessorArgs = "--no-header --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | self.assertEqual(gcode, expected) |
| |
|
| | |
| | expected = """G17 G54 G40 G49 G80 G90 |
| | G21 |
| | G54 |
| | M5 |
| | M6 T1 |
| | G43 H1 |
| | M05 |
| | G17 G54 G90 G80 G40 |
| | M2 |
| | """ |
| |
|
| | |
| | self.job.PostProcessorArgs = "--no-header --no-comments --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | self.assertEqual(gcode, expected) |
| |
|
| | def test010(self): |
| | """Test command Generation. |
| | Test Precision |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("G0 X10 Y20 Z30") |
| |
|
| | self.profile_op.Path = Path.Path([c]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[17] |
| | expected = "G0 X10.000 Y20.000 Z30.000" |
| | self.assertEqual(result, expected) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --precision=2 --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[17] |
| | expected = "G0 X10.00 Y20.00 Z30.00" |
| | self.assertEqual(result, expected) |
| |
|
| | def test020(self): |
| | """ |
| | Test Line Numbers |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("G0 X10 Y20 Z30") |
| |
|
| | self.profile_op.Path = Path.Path([c]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --line-numbers --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[17] |
| | expected = "N270 G0 X10.000 Y20.000 Z30.000" |
| | self.assertEqual(result, expected) |
| |
|
| | def test030(self): |
| | """ |
| | Test Pre-amble |
| | """ |
| | nl = "\n" |
| |
|
| | self.profile_op.Path = Path.Path([]) |
| |
|
| | self.job.PostProcessorArgs = ( |
| | "--no-header --no-comments --preamble='G18 G55' --no-show-editor" |
| | ) |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[0] |
| | self.assertEqual(result, "G18 G55") |
| |
|
| | def test040(self): |
| | """ |
| | Test Post-amble |
| | """ |
| | nl = "\n" |
| |
|
| | self.profile_op.Path = Path.Path([]) |
| |
|
| | self.job.PostProcessorArgs = ( |
| | "--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor" |
| | ) |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[-2] |
| | self.assertEqual(result, "G0 Z50") |
| | self.assertEqual(gcode.splitlines()[-1], "M2") |
| |
|
| | def test050(self): |
| | """ |
| | Test inches |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("G0 X10 Y20 Z30") |
| |
|
| | self.profile_op.Path = Path.Path([c]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --inches --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | self.assertEqual(gcode.splitlines()[2], "G20") |
| |
|
| | result = gcode.splitlines()[17] |
| | expected = "G0 X0.3937 Y0.7874 Z1.1811" |
| | self.assertEqual(result, expected) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --inches --precision=2 --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[17] |
| | expected = "G0 X0.39 Y0.79 Z1.18" |
| | self.assertEqual(result, expected) |
| |
|
| | def test060(self): |
| | """ |
| | Test test modal |
| | Suppress the command name if the same as previous |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("G0 X10 Y20 Z30") |
| | c1 = Path.Command("G0 X10 Y30 Z30") |
| |
|
| | self.profile_op.Path = Path.Path([c, c1]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --modal --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[18] |
| | expected = "X10.000 Y30.000 Z30.000" |
| | self.assertEqual(result, expected) |
| |
|
| | def test070(self): |
| | """ |
| | Test axis modal |
| | Suppress the axis coordinate if the same as previous |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("G0 X10 Y20 Z30") |
| | c1 = Path.Command("G0 X10 Y30 Z30") |
| |
|
| | self.profile_op.Path = Path.Path([c, c1]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --axis-modal --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[18] |
| | expected = "G0 Y30.000" |
| | self.assertEqual(result, expected) |
| |
|
| | def test080(self): |
| | """ |
| | Test tool change |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("M6 T2") |
| | c2 = Path.Command("M3 S3000") |
| |
|
| | self.profile_op.Path = Path.Path([c, c2]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | split_gcode = gcode.splitlines() |
| | self.assertEqual(split_gcode[18], "M5") |
| | self.assertEqual(split_gcode[19], "M6 T2") |
| | self.assertEqual(split_gcode[20], "G43 H2") |
| | self.assertEqual(split_gcode[21], "M3 S3000") |
| |
|
| | |
| | self.job.PostProcessorArgs = "--no-header --no-tlo --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | self.assertEqual(gcode.splitlines()[19], "M3 S3000") |
| |
|
| | def test090(self): |
| | """ |
| | Test comment |
| | """ |
| | nl = "\n" |
| |
|
| | c = Path.Command("(comment)") |
| |
|
| | self.profile_op.Path = Path.Path([c]) |
| |
|
| | self.job.PostProcessorArgs = "--no-header --no-show-editor" |
| | gcode = self.post.export()[0][1] |
| | |
| | result = gcode.splitlines()[17] |
| | expected = "(comment)" |
| | self.assertEqual(result, expected) |
| |
|