Esempio n. 1
0
    def test_NullCommand(self):
        """Using None for your gcode will result in both the comand and the comment being None, with no parameters"""

        gcodeParts = GcodeParts(None)
        self.assertTrue(gcodeParts.Command is None)
        self.assertTrue(gcodeParts.Comment is None)
        self.assertTrue(len(gcodeParts.Parameters) == 0)
Esempio n. 2
0
 def test_CommandAndParameters(self):
     """Test a command and a single parameter without comments, make sure they are returned and that the comment is None."""
     gcodeParts = GcodeParts("THECOMMAND param1")
     self.assertTrue(gcodeParts.Command == "THECOMMAND")
     self.assertTrue(gcodeParts.Comment is None)
     self.assertTrue(len(gcodeParts.Parameters) == 1)
     self.assertTrue(gcodeParts.Parameters[0] == "param1")
Esempio n. 3
0
 def test_CommandOnlyWhitespaceAfter(self):
     """Ensure that gcode with a command only (no parameters or coments) followed by whitespace returns the command, a null comment, and no parameters"""
     gcodeParts = GcodeParts("THECOMMANDWITHTABSANDSPACESAFTER		     ")
     self.assertTrue(
         gcodeParts.Command == "THECOMMANDWITHTABSANDSPACESAFTER")
     self.assertTrue(gcodeParts.Comment is None)
     self.assertTrue(len(gcodeParts.Parameters) == 0)
Esempio n. 4
0
 def test_gcode(self):
     """Test a command, make sure the original gcode is stored properly."""
     gcodeParts = GcodeParts(
         "	THECOMMAND		param1   param2  param3 param4		;   The Comment")
     self.assertTrue(
         gcodeParts.Gcode ==
         "	THECOMMAND		param1   param2  param3 param4		;   The Comment")
Esempio n. 5
0
 def test_CommandOnly(self):
     """Ensure that gcode with a command only (no parameters or coments) returns the command, a null comment,
     and no parameters """
     gcode_parts = GcodeParts("THECOMMAND")
     self.assertTrue(gcode_parts.Command == "THECOMMAND")
     self.assertTrue(gcode_parts.Comment is None)
     self.assertTrue(len(gcode_parts.Parameters) == 0)
Esempio n. 6
0
 def test_CommentOnly(self):
     """Ensure that gcode consisting of only a semicolon and a comment contain a null command, the comment,
     and no parameters """
     gcode_parts = GcodeParts(";Here is a comment")
     self.assertTrue(gcode_parts.Command is None)
     self.assertTrue(gcode_parts.Comment == "Here is a comment")
     self.assertTrue(len(gcode_parts.Parameters) == 0)
Esempio n. 7
0
 def test_SemicolonOnly(self):
     """If only a semicolon is given, the command should be None and the comment should be the empty string,
     with no parameters """
     gcode_parts = GcodeParts(";")
     self.assertTrue(gcode_parts.Command is None)
     self.assertTrue(gcode_parts.Comment == "")
     self.assertTrue(len(gcode_parts.Parameters) == 0)
Esempio n. 8
0
 def test_CommandAndCommentWhitespace(self):
     """Ensure that gcode with a command, a comment, and whitespace around both the command and comment returns
     the trimmed command and the untrimmed comment with no parameters. """
     gcode_parts = GcodeParts("	THECOMMAND	;	The Comment		")
     self.assertTrue(gcode_parts.Command == "THECOMMAND")
     self.assertTrue(gcode_parts.Comment == "	The Comment		")
     self.assertTrue(len(gcode_parts.Parameters) == 0)
Esempio n. 9
0
 def test_WhitespaceAndComment(self):
     """Ensure that gcode consisting of whitespace,a semicolon and a comment contain a null command, the comment, and no parameters"""
     gcodeParts = GcodeParts(
         "			;Here is a comment preceeded by spaces and tabs.")
     self.assertTrue(gcodeParts.Command is None)
     self.assertTrue(gcodeParts.Comment ==
                     "Here is a comment preceeded by spaces and tabs.")
     self.assertTrue(len(gcodeParts.Parameters) == 0)
Esempio n. 10
0
 def test_CommandAndParameters(self):
     """Test a command and 4 parameters without comments, make sure they are returned and that the comment is None."""
     gcodeParts = GcodeParts("THECOMMAND param1 param2 param3 param4")
     self.assertTrue(gcodeParts.Command == "THECOMMAND")
     self.assertTrue(gcodeParts.Comment is None)
     self.assertTrue(len(gcodeParts.Parameters) == 4)
     self.assertTrue(gcodeParts.Parameters[0] == "param1")
     self.assertTrue(gcodeParts.Parameters[1] == "param2")
     self.assertTrue(gcodeParts.Parameters[2] == "param3")
     self.assertTrue(gcodeParts.Parameters[3] == "param4")
Esempio n. 11
0
 def test_CommandParametersAndCommentWhitespace(self):
     """Test a command, 4 parameters and a comment, make sure they are all returned and that the command and parameters are trimmed, and that the comment is untrimmed."""
     gcodeParts = GcodeParts(
         "	THECOMMAND		param1   param2  param3 param4		;   The Comment")
     self.assertTrue(gcodeParts.Command == "THECOMMAND")
     self.assertTrue(gcodeParts.Comment == "   The Comment")
     self.assertTrue(len(gcodeParts.Parameters) == 4)
     self.assertTrue(gcodeParts.Parameters[0] == "param1")
     self.assertTrue(gcodeParts.Parameters[1] == "param2")
     self.assertTrue(gcodeParts.Parameters[2] == "param3")
     self.assertTrue(gcodeParts.Parameters[3] == "param4")
Esempio n. 12
0
 def test_CommandAndComment(self):
     """Ensure that gcode with a command and a comment return both the command, the comment, and no parameters."""
     gcodeParts = GcodeParts("THECOMMAND;The Comment")
     self.assertTrue(gcodeParts.Command == "THECOMMAND")
     self.assertTrue(gcodeParts.Comment == "The Comment")
     self.assertTrue(len(gcodeParts.Parameters) == 0)