File: lex_test.go

package info (click to toggle)
golang-github-digitalocean-go-qemu 0.0~git20250212.ee9b066-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 860 kB
  • sloc: sh: 34; makefile: 3
file content (72 lines) | stat: -rw-r--r-- 2,231 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package lex

import (
	"testing"

	"github.com/digitalocean/go-qemu/qapi-schema/internal/token"
)

func TestLex(t *testing.T) {
	input := `##
# this is a comment
## 1. hello, world

{ 'include': 'block-job.json' }

{ 'enum': 'arch',
  'data': ['x86', 'x86_64', 'arm64'] }`

	wantTokens := []token.Token{
		{Type: token.LeftCurly, Literal: "{"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "include"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.Colon, Literal: ":"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "block-job.json"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.RightCurly, Literal: "}"},
		{Type: token.LeftCurly, Literal: "{"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "enum"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.Colon, Literal: ":"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "arch"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.Comma, Literal: ","},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "data"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.Colon, Literal: ":"},
		{Type: token.LeftSquare, Literal: "["},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "x86"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.Comma, Literal: ","},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "x86_64"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.Comma, Literal: ","},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.AlphaNumeric, Literal: "arm64"},
		{Type: token.SingleQuote, Literal: "'"},
		{Type: token.RightSquare, Literal: "]"},
		{Type: token.RightCurly, Literal: "}"},
		{Type: token.EOF, Literal: ""},
	}

	lex := newLexer(input)

	for num, tt := range wantTokens {
		got := lex.NextToken()

		if tt.Type != got.Type {
			t.Errorf("test [%d] wrong token type - want %q, got %q", num, tt.Type, got.Type)
		}

		if tt.Literal != got.Literal {
			t.Errorf("test [%d] wrong token literal - want %q, got %q", num, tt.Literal, got.Literal)
		}
	}
}