package commands import ( "strings" "testing" "c65gm/internal/compiler" "c65gm/internal/preproc" ) func TestAndCommand_WillHandle(t *testing.T) { cmd := &AndCommand{} tests := []struct { name string line string want bool }{ {"old syntax WITH/GIVING", "AND a WITH b GIVING c", true}, {"old syntax WITH/arrow", "AND a WITH b -> c", true}, {"new syntax", "result = x & y", true}, {"not AND", "ADD a TO b GIVING c", false}, {"wrong param count", "AND a b c", false}, {"empty", "", false}, {"new syntax wrong op", "result = x + y", false}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { line := preproc.Line{Text: tt.line, Kind: preproc.Source} got := cmd.WillHandle(line) if got != tt.want { t.Errorf("WillHandle() = %v, want %v", got, tt.want) } }) } } func TestAndCommand_OldSyntax(t *testing.T) { tests := []struct { name string line string setupVars func(*compiler.SymbolTable) wantAsm []string wantErr bool }{ { name: "byte AND byte -> byte (variables)", line: "AND a WITH b GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddVar("b", "", compiler.KindByte, 0x0F) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda a", "\tand b", "\tsta result", }, }, { name: "byte AND byte -> word", line: "AND a WITH b GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddVar("b", "", compiler.KindByte, 0x0F) st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda a", "\tand b", "\tsta result", "\tlda #0", "\tand #0", "\tsta result+1", }, }, { name: "word AND word -> word", line: "AND x WITH y GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("x", "", compiler.KindWord, 0x1234) st.AddVar("y", "", compiler.KindWord, 0x0F0F) st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda x", "\tand y", "\tsta result", "\tlda x+1", "\tand y+1", "\tsta result+1", }, }, { name: "byte AND literal -> byte", line: "AND a WITH $F0 GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda a", "\tand #$f0", "\tsta result", }, }, { name: "literal AND byte -> byte", line: "AND 255 WITH b GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("b", "", compiler.KindByte, 0x0F) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda #$ff", "\tand b", "\tsta result", }, }, { name: "constant folding: 255 AND 15 -> byte", line: "AND 255 WITH 15 GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda #$0f", "\tsta result", }, }, { name: "constant folding: $FFFF AND $0F0F -> word", line: "AND $FFFF WITH $0F0F GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda #$0f", "\tsta result", "\tlda #$0f", "\tsta result+1", }, }, { name: "arrow syntax", line: "AND a WITH b -> result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0) st.AddVar("b", "", compiler.KindByte, 0) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda a", "\tand b", "\tsta result", }, }, { name: "word AND byte -> byte", line: "AND wval WITH bval GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("wval", "", compiler.KindWord, 0x1234) st.AddVar("bval", "", compiler.KindByte, 0xFF) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda wval", "\tand bval", "\tsta result", }, }, { name: "word AND byte -> word", line: "AND wval WITH bval GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("wval", "", compiler.KindWord, 0x1234) st.AddVar("bval", "", compiler.KindByte, 0xFF) st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda wval", "\tand bval", "\tsta result", "\tlda wval+1", "\tand #0", "\tsta result+1", }, }, { name: "error: unknown destination variable", line: "AND a WITH b GIVING unknown", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0) st.AddVar("b", "", compiler.KindByte, 0) }, wantErr: true, }, { name: "error: wrong separator", line: "AND a TO b GIVING result", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0) st.AddVar("b", "", compiler.KindByte, 0) st.AddVar("result", "", compiler.KindByte, 0) }, wantErr: true, }, { name: "error: cannot assign to constant", line: "AND a WITH b GIVING MAXVAL", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0) st.AddVar("b", "", compiler.KindByte, 0) st.AddConst("MAXVAL", "", compiler.KindByte, 255) }, wantErr: true, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { ctx := compiler.NewCompilerContext(&preproc.Pragma{}) tt.setupVars(ctx.SymbolTable) cmd := &AndCommand{} line := preproc.Line{Text: tt.line, Kind: preproc.Source} err := cmd.Interpret(line, ctx) if tt.wantErr { if err == nil { t.Error("expected error, got nil") } return } if err != nil { t.Fatalf("Interpret() error = %v", err) } asm, err := cmd.Generate(ctx) if err != nil { t.Fatalf("Generate() error = %v", err) } if !equalAsm(asm, tt.wantAsm) { t.Errorf("Generate() mismatch\ngot:\n%s\nwant:\n%s", strings.Join(asm, "\n"), strings.Join(tt.wantAsm, "\n")) } }) } } func TestAndCommand_NewSyntax(t *testing.T) { tests := []struct { name string line string setupVars func(*compiler.SymbolTable) wantAsm []string wantErr bool }{ { name: "byte & byte -> byte", line: "result = a & b", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddVar("b", "", compiler.KindByte, 0x0F) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda a", "\tand b", "\tsta result", }, }, { name: "byte & byte -> word", line: "result = a & b", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddVar("b", "", compiler.KindByte, 0x0F) st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda a", "\tand b", "\tsta result", "\tlda #0", "\tand #0", "\tsta result+1", }, }, { name: "word & word -> word", line: "result = x & y", setupVars: func(st *compiler.SymbolTable) { st.AddVar("x", "", compiler.KindWord, 0x1234) st.AddVar("y", "", compiler.KindWord, 0x0F0F) st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda x", "\tand y", "\tsta result", "\tlda x+1", "\tand y+1", "\tsta result+1", }, }, { name: "variable & literal", line: "result = a & $F0", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda a", "\tand #$f0", "\tsta result", }, }, { name: "constant folding", line: "result = 255 & 15", setupVars: func(st *compiler.SymbolTable) { st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda #$0f", "\tsta result", }, }, { name: "constant folding word", line: "result = $FFFF & $1234", setupVars: func(st *compiler.SymbolTable) { st.AddVar("result", "", compiler.KindWord, 0) }, wantAsm: []string{ "\tlda #$34", "\tsta result", "\tlda #$12", "\tsta result+1", }, }, { name: "using constant in expression", line: "result = a & MASK", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0xFF) st.AddConst("MASK", "", compiler.KindByte, 0xF0) st.AddVar("result", "", compiler.KindByte, 0) }, wantAsm: []string{ "\tlda a", "\tand #$f0", "\tsta result", }, }, { name: "error: unknown destination", line: "unknown = a & b", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0) st.AddVar("b", "", compiler.KindByte, 0) }, wantErr: true, }, { name: "error: wrong operator", line: "result = a + b", setupVars: func(st *compiler.SymbolTable) { st.AddVar("a", "", compiler.KindByte, 0) st.AddVar("b", "", compiler.KindByte, 0) st.AddVar("result", "", compiler.KindByte, 0) }, wantErr: true, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { ctx := compiler.NewCompilerContext(&preproc.Pragma{}) tt.setupVars(ctx.SymbolTable) cmd := &AndCommand{} line := preproc.Line{Text: tt.line, Kind: preproc.Source} err := cmd.Interpret(line, ctx) if tt.wantErr { if err == nil { t.Error("expected error, got nil") } return } if err != nil { t.Fatalf("Interpret() error = %v", err) } asm, err := cmd.Generate(ctx) if err != nil { t.Fatalf("Generate() error = %v", err) } if !equalAsm(asm, tt.wantAsm) { t.Errorf("Generate() mismatch\ngot:\n%s\nwant:\n%s", strings.Join(asm, "\n"), strings.Join(tt.wantAsm, "\n")) } }) } } // equalAsm compares two assembly slices for equality func equalAsm(a, b []string) bool { if len(a) != len(b) { return false } for i := range a { if a[i] != b[i] { return false } } return true }