Пример #1
0
    def test_binary_leq(self):
        byte_code_lt = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                LOAD_CONST,
                1,
                BINARY_LEQ,
                0,
                RETURN,
                1,
            ]),
            constants=[W_Int32(1), W_Int32(0)],
            name="<test_binary_neq>",
            arguments=(),
            variables={},
        )
        byte_code_leq = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                LOAD_CONST,
                0,
                BINARY_LEQ,
                0,
                RETURN,
                1,
            ]),
            constants=[W_Int32(0)],
            name="<test_binary_neq>",
            arguments=(),
            variables={},
        )
        byte_code_gt = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                LOAD_CONST,
                1,
                BINARY_LEQ,
                0,
                RETURN,
                1,
            ]),
            constants=[W_Int32(0), W_Int32(1)],
            name="<test_binary_neq>",
            arguments=(),
            variables={},
        )

        rv = interpreter.CyCy().run(byte_code_lt)
        self.assertEqual(rv, W_Bool(True))

        rv = interpreter.CyCy().run(byte_code_leq)
        self.assertEqual(rv, W_Bool(True))

        rv = interpreter.CyCy().run(byte_code_gt)
        self.assertEqual(rv, W_Bool(False))
Пример #2
0
    def test_it_calls_a_function_with_no_args(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                CALL,
                0,
                RETURN,
                1,
            ]),
            constants=[
                W_Function(
                    name="callee",
                    arity=0,
                    bytecode=Bytecode(
                        name="<the callee's bytecode>",
                        arguments=(),
                        variables={},
                        constants=[W_Int32(42)],
                        tape=compiler.Tape(instructions=[
                            LOAD_CONST,
                            0,
                            RETURN,
                            1,
                        ]),
                    ),
                )
            ],
            name="<test_calls_a_function_with_no_args>",
            arguments=(),
            variables={},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEqual(rv, W_Int32(42))
Пример #3
0
 def test_parse_error(self):
     errors = []
     cycy = interpreter.CyCy(handle_error=errors.append)
     cycy.interpret(["asdf"])
     self.assertEqual(
         errors,
         [
             ParseError(token=Token("IDENTIFIER", "asdf"), source="asdf"),
         ],
     )
Пример #4
0
    def test_it_can_return_no_value(self):
        # this is not the same as a C function returning NULL,
        # it is a void C function that has no return value
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[RETURN, 0]),
            constants=[],
            name="<some test bytecode>",
            arguments=(),
            variables={},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEquals(None, rv)
Пример #5
0
    def test_binary_sub(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST, 0, LOAD_CONST, 1, BINARY_SUB, NO_ARG, RETURN, 1
            ]),
            constants=[W_Int32(1), W_Int32(2)],
            name="<test_binary_add>",
            arguments=(),
            variables={},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEqual(rv, W_Int32(1))
Пример #6
0
    def test_it_handles_load_const(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                RETURN,
                1,
            ]),
            constants=[W_Int32(0)],
            name="<test_load_const>",
            arguments=(),
            variables={},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEqual(rv, W_Int32(0))
Пример #7
0
    def test_jump(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                JUMP,
                6,  # jump to just past LOAD_CONST 1
                LOAD_CONST,
                1,
                RETURN,
                1,
            ]),
            constants=[W_Int32(0), W_Int32(1)],
            name="<test_array_dereferences>",
            arguments=[],
            variables={},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEqual(rv, W_Int32(0))
Пример #8
0
    def test_store_and_load_variable(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                STORE_VARIABLE,
                0,
                LOAD_VARIABLE,
                0,
                RETURN,
                1,
            ]),
            constants=[W_Int32(1)],
            name="<test_binary_add>",
            arguments=(),
            variables={"x": 0},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEqual(rv, W_Int32(1))
Пример #9
0
    def test_it_handles_opcodes_with_args(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                PUTC,
                0,
                RETURN,
                0,
            ]),
            constants=[W_Char("x")],
            name="<some test bytecode>",
            arguments=(),
            variables={},
        )

        with patch.object(os, "write") as os_write:
            interpreter.CyCy().run(byte_code)

            os_write.assert_called_once_with(
                1,  # file descriptor for stdout
                "x",
            )
Пример #10
0
    def test_array_dereferences(self):
        byte_code = Bytecode(
            tape=compiler.Tape(instructions=[
                LOAD_CONST,
                0,
                STORE_VARIABLE,
                0,
                LOAD_CONST,
                1,
                LOAD_VARIABLE,
                0,
                DEREFERENCE,
                NO_ARG,
                RETURN,
                1,
            ]),
            constants=[W_String("bar"), W_Int32(1)],
            name="<test_array_dereferences>",
            arguments=[],
            variables={"foo": ""},
        )

        rv = interpreter.CyCy().run(byte_code)
        self.assertEqual(rv, W_Char("a"))
Пример #11
0
 def test_unknown_function_call(self):
     errors = []
     cycy = interpreter.CyCy(handle_error=errors.append)
     cycy.interpret(["int main(void) { return canhazprint(0); }"])
     self.assertEqual(errors, [compiler.NoSuchFunction("canhazprint")])
Пример #12
0
 def setUp(self):
     self.interpreter = interpreter.CyCy()
     self.parser = self.interpreter.parser
     self.compiler = self.interpreter.compiler