-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommand_string_test.go
More file actions
170 lines (157 loc) · 4.6 KB
/
Copy pathcommand_string_test.go
File metadata and controls
170 lines (157 loc) · 4.6 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// Copyright 2026 The Zaparoo Project Contributors.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package zapscript_test
import (
"testing"
"github.com/ZaparooProject/go-zapscript"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
)
func TestCommandString(t *testing.T) {
t.Parallel()
tests := []struct {
name string
cmd zapscript.Command
want string
}{
{
name: "name only",
cmd: zapscript.Command{Name: "stop"},
want: "**stop",
},
{
name: "single arg",
cmd: zapscript.Command{Name: "launch", Args: []string{"/games/snes/mario.sfc"}},
want: "**launch:/games/snes/mario.sfc",
},
{
name: "multiple args",
cmd: zapscript.Command{Name: "greet", Args: []string{"hi", "there"}},
want: "**greet:hi,there",
},
{
name: "arg with comma needs quoting",
cmd: zapscript.Command{Name: "say", Args: []string{"hello, world"}},
want: `**say:"hello, world"`,
},
{
name: "arg with colon needs quoting",
cmd: zapscript.Command{Name: "say", Args: []string{"key:value"}},
want: `**say:"key:value"`,
},
{
name: "arg with newline re-escapes",
cmd: zapscript.Command{Name: "echo", Args: []string{"hello\nworld"}},
want: `**echo:"hello^nworld"`,
},
{
name: "arg with tab re-escapes",
cmd: zapscript.Command{Name: "echo", Args: []string{"one\ttwo"}},
want: `**echo:"one^ttwo"`,
},
{
name: "arg with caret re-escapes",
cmd: zapscript.Command{Name: "echo", Args: []string{"2^3"}},
want: `**echo:"2^^3"`,
},
{
name: "with advanced args",
cmd: zapscript.Command{
Name: "launch",
Args: []string{"game.exe"},
AdvArgs: zapscript.NewAdvArgs(map[string]string{"platform": "win"}),
},
want: "**launch:game.exe?platform=win",
},
{
name: "advanced args only",
cmd: zapscript.Command{
Name: "example",
AdvArgs: zapscript.NewAdvArgs(map[string]string{"debug": "true"}),
},
want: "**example?debug=true",
},
{
name: "input.keyboard macro",
cmd: zapscript.Command{Name: "input.keyboard", Args: []string{"a", "b", "c"}},
want: "**input.keyboard:abc",
},
{
name: "input.keyboard with extensions",
cmd: zapscript.Command{Name: "input.keyboard", Args: []string{"{f1}", "a", "{ctrl+q}"}},
want: "**input.keyboard:{f1}a{ctrl+q}",
},
{
name: "input.gamepad macro",
cmd: zapscript.Command{Name: "input.gamepad", Args: []string{"^", "^", "V", "V", "<", ">"}},
want: "**input.gamepad:^^VV<>",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := tt.cmd.String()
if got != tt.want {
t.Errorf("Command.String() = %q, want %q", got, tt.want)
}
})
}
}
func TestCommandString_RoundTrip(t *testing.T) {
t.Parallel()
// Commands that should round-trip: parse → String() → parse → same Command
inputs := []string{
"**stop",
"**launch:/games/snes/mario.sfc",
"**greet:hi,there",
`**say:"hello, world"`,
"**launch:game.exe?platform=win",
"**input.keyboard:abc{f1}{enter}",
"**input.gamepad:^^VV<><>",
"**delay:500",
"**launch.random:SNES",
"**http.get:https://example.com/api",
}
for _, input := range inputs {
t.Run(input, func(t *testing.T) {
t.Parallel()
// Parse the original input
reader1 := zapscript.NewParser(input)
script1, err := reader1.ParseScript()
if err != nil {
t.Fatalf("first parse failed: %v", err)
}
if len(script1.Cmds) != 1 {
t.Fatalf("expected 1 command, got %d", len(script1.Cmds))
}
// Convert to string
str := script1.Cmds[0].String()
// Parse the string output
reader2 := zapscript.NewParser(str)
script2, err := reader2.ParseScript()
if err != nil {
t.Fatalf("second parse of %q failed: %v", str, err)
}
if len(script2.Cmds) != 1 {
t.Fatalf("expected 1 command from re-parse, got %d", len(script2.Cmds))
}
// Compare
if diff := cmp.Diff(script1.Cmds[0], script2.Cmds[0], cmpopts.IgnoreUnexported(zapscript.AdvArgs{})); diff != "" {
t.Errorf("round-trip mismatch (-original +reparsed):\n input: %s\n string(): %s\n%s",
input, str, diff)
}
})
}
}