Mercurial > lcfOS
view python/testasm.py @ 195:37ac6c016e0f
Expanded asm subsystem
author | Windel Bouwman |
---|---|
date | Fri, 31 May 2013 21:06:44 +0200 |
parents | b01429a5d695 |
children | ec2b423cdbea |
line wrap: on
line source
#!/usr/bin/python import unittest import libasm import ppci from libasm import AInstruction, ABinop, AUnop, ASymbol, ALabel, ANumber class AssemblerTestCase(unittest.TestCase): """ Tests the assembler parts """ def setUp(self): pass def testLex0(self): """ Check if the lexer is OK """ asmline, toks = 'mov rax, rbx ', ['ID', 'ID', ',', 'ID'] self.assertSequenceEqual([tok.typ for tok in libasm.tokenize(asmline)], toks) def testLex1(self): """ Test if lexer correctly maps some tokens """ asmline, toks = 'lab1: mov rax, rbx ', ['ID', ':', 'ID', 'ID', ',', 'ID'] self.assertSequenceEqual([tok.typ for tok in libasm.tokenize(asmline)], toks) def testLex1(self): """ Test if lexer correctly maps some tokens """ asmline, toks = 'mov 3.13 0xC 13', ['ID', 'REAL', 'NUMBER', 'NUMBER'] self.assertSequenceEqual([tok.typ for tok in libasm.tokenize(asmline)], toks) def testLex2(self): """ Test if lexer fails on a token that is invalid """ asmline = '0z4: mov rax, rbx $ ' with self.assertRaises(ppci.CompilerError): list(libasm.tokenize(asmline)) def testParse(self): asmline = 'lab1: mov rax, rbx' a = libasm.Assembler() a.parse_line(asmline) def testParse2(self): asmline = 'a: mov rax, [rbx + 2]' a = libasm.Assembler() a.parse_line(asmline) output = [] output.append(ALabel('a')) output.append(AInstruction('mov', [ASymbol('rax'), AUnop('[]', ASymbol('rbx') + ANumber(2))])) self.assertSequenceEqual(output, a.output) def testParse3(self): # A label must be optional: asmline = 'mov rax, 1' a = libasm.Assembler() a.parse_line(asmline) output = [] output.append(AInstruction('mov', [ASymbol('rax'), ANumber(1)])) self.assertSequenceEqual(output, a.output) def testParse4(self): # Test 3 operands: asmline = 'add rax, [4*rbx + 22], rcx' a = libasm.Assembler() a.parse_line(asmline) output = [] ops = [] ops.append(ASymbol('rax')) ops.append(AUnop('[]', ANumber(4) * ASymbol('rbx') + ANumber(22))) ops.append(ASymbol('rcx')) output.append(AInstruction('add', ops)) self.assertSequenceEqual(output, a.output) def testParse5(self): # An instruction must be optional: asmline = 'lab1:' a = libasm.Assembler() a.parse_line(asmline) output = [] output.append(ALabel('lab1')) self.assertSequenceEqual(output, a.output) def testX86(self): # TODO pass if __name__ == '__main__': unittest.main()