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
|
package config
import (
"reflect"
"testing"
)
func TestLoadFile(t *testing.T) {
_, err := LoadFile("test_data/non-existant")
if err == nil {
t.Fatal("non-existant config file failed without error")
}
_, err = LoadFile("test_data/invalid_yaml")
if err == nil {
t.Fatal("invalid_yaml config file failed without error")
}
config, err := LoadFile("../example/complete.yaml")
want := Config{
App: App{
WorkingDirectory: "var/",
MaxUsers: 512,
AllowRegistration: true,
MaxNickLen: 15,
MenuMaxIdleTime: 600,
PostLoginCommands: []string{
"mkdir %w/userdata/%u",
"mkdir %w/userdata/%u/dumplog",
"mkdir %w/userdata/%u/ttyrec",
},
},
Menus: []Menu{
Menu{
Banner: "Shell Game Launcher - Anonymous access%n======================================",
XOffset: 5,
YOffset: 2,
MenuEntries: []MenuEntry{
MenuEntry{
Key: "l",
Label: "login",
Action: "login",
},
MenuEntry{
Key: "r",
Label: "register",
Action: "register",
},
MenuEntry{
Key: "w",
Label: "watch",
Action: "watch_menu",
},
MenuEntry{
Key: "s",
Label: "scores",
Action: "scores",
},
MenuEntry{
Key: "q",
Label: "quit",
Action: "quit",
},
},
},
Menu{
Banner: "Shell Game Launcher%n===================",
XOffset: 5,
YOffset: 2,
MenuEntries: []MenuEntry{
MenuEntry{
Key: "p",
Label: "play Nethack 3.7",
Action: "play nethack3.7",
},
MenuEntry{
Key: "o",
Label: "edit game options",
Action: "options",
},
MenuEntry{
Key: "w",
Label: "watch",
Action: "watch_menu",
},
MenuEntry{
Key: "s",
Label: "scores",
Action: "scores",
},
MenuEntry{
Key: "q",
Label: "quit",
Action: "quit",
},
},
},
},
Games: map[string]Game{
"nethack3.7": Game{
ChrootPath: "/opt/nethack",
FileMode: "0666",
},
},
}
if err != nil || !reflect.DeepEqual(want, config) {
t.Fatalf("complete example failed:\nerror %v\nwant:%+v\ngot: %+v", err, want, config)
}
}
|