forked from JustaPenguin/assetto-server-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
championship_manager_test.go
504 lines (401 loc) · 11.7 KB
/
championship_manager_test.go
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
package servermanager
import (
"encoding/json"
"net/url"
"os"
"path/filepath"
"testing"
"time"
"github.com/JustaPenguin/assetto-server-manager/pkg/udp"
"github.com/JustaPenguin/assetto-server-manager/pkg/udp/replay"
"github.com/etcd-io/bbolt"
)
var TestEntryList = EntryList{
"CAR_0": {
Name: "",
GUID: "",
Team: "Team 1",
Model: "rss_formula_rss_4",
Skin: "",
},
"CAR_1": {
Name: "",
GUID: "",
Team: "Team 1",
Model: "rss_formula_rss_4",
Skin: "",
},
"CAR_2": {
Name: "",
GUID: "",
Team: "Team 2",
Model: "rss_formula_rss_4",
Skin: "",
},
"CAR_3": {
Name: "",
GUID: "",
Team: "Team 2",
Model: "rss_formula_rss_4",
Skin: "",
},
"CAR_4": {
Name: "",
GUID: "",
Team: "Team 2",
Model: "rss_formula_rss_4",
Skin: "",
},
"CAR_5": {
Name: "",
GUID: "",
Team: "Team 2",
Model: "rss_formula_rss_4",
Skin: "",
},
}
type dummyServerProcess struct {
doneCh chan struct{}
}
func (dummyServerProcess) Start(event RaceEvent, udpPluginAddress string, udpPluginLocalPort int, forwardingAddress string, forwardListenPort int) error {
return nil
}
func (dummyServerProcess) Logs() string {
return ""
}
func (d dummyServerProcess) Stop() error {
if d.doneCh != nil {
d.doneCh <- struct{}{}
}
return nil
}
func (dummyServerProcess) Restart() error {
return nil
}
func (dummyServerProcess) IsRunning() bool {
return true
}
func (dummyServerProcess) Event() RaceEvent {
return &ActiveChampionship{}
}
func (dummyServerProcess) UDPCallback(message udp.Message) {
}
func (dummyServerProcess) SendUDPMessage(message udp.Message) error {
return nil
}
func (d dummyServerProcess) NotifyDone(chan struct{}) {
}
func (dummyServerProcess) GetServerConfig() ServerConfig {
return ConfigIniDefault()
}
var championshipEventFixtures = []string{
"barbagello.db",
"red-bull-ring.db",
// @TODO fix me
// "barbagello-no-end-sessions.db",
}
var championshipManager *ChampionshipManager
type dummyNotificationManager struct{}
func (d *dummyNotificationManager) HasNotificationReminders() bool {
return false
}
func (d *dummyNotificationManager) GetNotificationReminders() []int {
var reminders []int
return reminders
}
func (d dummyNotificationManager) SendRaceWeekendReminderMessage(raceWeekend *RaceWeekend, session *RaceWeekendSession, timer int) error {
return nil
}
func (d dummyNotificationManager) SendMessage(title string, msg string) error {
return nil
}
func (d dummyNotificationManager) SendMessageWithLink(title string, msg string, linkText string, link *url.URL) error {
return nil
}
func (d dummyNotificationManager) SendRaceStartMessage(config ServerConfig, event RaceEvent) error {
return nil
}
func (d dummyNotificationManager) GetCarList(cars string) string {
return "nil"
}
func (d dummyNotificationManager) GetTrackInfo(track string, layout string, download bool) string {
return "nil"
}
func (d dummyNotificationManager) SendRaceScheduledMessage(event *CustomRace, date time.Time) error {
return nil
}
func (d dummyNotificationManager) SendRaceCancelledMessage(event *CustomRace, date time.Time) error {
return nil
}
func (d dummyNotificationManager) SendRaceReminderMessage(event *CustomRace, timer int) error {
return nil
}
func (d dummyNotificationManager) SendChampionshipReminderMessage(championship *Championship, event *ChampionshipEvent, timer int) error {
return nil
}
func (d dummyNotificationManager) SaveServerOptions(oldServerOpts *GlobalServerConfig, newServerOpts *GlobalServerConfig) error {
return nil
}
func init() {
config = &Configuration{}
championshipManager = NewChampionshipManager(
NewRaceManager(
NewJSONStore(filepath.Join(os.TempDir(), "asm-race-store"), filepath.Join(os.TempDir(), "asm-race-store-shared")),
dummyServerProcess{},
NewCarManager(NewTrackManager(), false, false),
NewTrackManager(),
&dummyNotificationManager{},
NewRaceControl(NilBroadcaster{}, nilTrackData{}, dummyServerProcess{}, testStore, NewPenaltiesManager(testStore)),
),
&ACSRClient{Enabled: false},
)
}
func doReplay(filename string, multiplier int, callbackFunc udp.CallbackFunc, waitTime time.Duration) error {
db, err := bbolt.Open(filename, 0644, nil)
if err != nil {
return err
}
defer db.Close()
return replay.UDPMessages(db, multiplier, callbackFunc, waitTime)
}
func TestChampionshipManager_ChampionshipEventCallback(t *testing.T) {
ServerInstallPath = filepath.Join("cmd", "server-manager", "assetto")
t.Run("Basic championship flow, closed entrylist", func(t *testing.T) {
// make a championship
champ := NewChampionship("Test Championship")
champ.OpenEntrants = false
cl := NewChampionshipClass("Default")
cl.Entrants = TestEntryList
champ.AddClass(cl)
for range championshipEventFixtures {
e := NewChampionshipEvent()
e.RaceSetup = ConfigIniDefault().CurrentRaceConfig
champ.Events = append(champ.Events, e)
}
if err := championshipManager.UpsertChampionship(champ); err != nil {
t.Error(err)
return
}
for i, sessionFile := range championshipEventFixtures {
t.Run(sessionFile, func(t *testing.T) {
if err := championshipManager.StartEvent(champ.ID.String(), champ.Events[i].ID.String(), false); err != nil {
t.Error(err)
return
}
err := doReplay(filepath.Join("fixtures", sessionFile), 1000,
championshipManager.ChampionshipEventCallback, time.Second)
if err != nil {
t.Error(err)
return
}
checkChampionshipEventCompletion(t, champ.ID.String(), champ.Events[i].ID.String())
})
}
checkAutoPopulatedEntryList(t, champ.ID.String(), 0)
})
t.Run("Basic championship flow, open entrylist", func(t *testing.T) {
// make a championship
champ := NewChampionship("Test Championship")
champ.OpenEntrants = true
cl := NewChampionshipClass("Default")
cl.Entrants = TestEntryList
champ.AddClass(cl)
for range championshipEventFixtures {
e := NewChampionshipEvent()
e.RaceSetup = ConfigIniDefault().CurrentRaceConfig
champ.Events = append(champ.Events, e)
}
if err := championshipManager.UpsertChampionship(champ); err != nil {
t.Error(err)
return
}
for i, sessionFile := range championshipEventFixtures {
t.Run(sessionFile, func(t *testing.T) {
if err := championshipManager.StartEvent(champ.ID.String(), champ.Events[i].ID.String(), false); err != nil {
t.Error(err)
return
}
err := doReplay(filepath.Join("fixtures", sessionFile), 1000,
championshipManager.ChampionshipEventCallback, time.Second)
if err != nil {
t.Error(err)
return
}
checkChampionshipEventCompletion(t, champ.ID.String(), champ.Events[i].ID.String())
})
}
checkAutoPopulatedEntryList(t, champ.ID.String(), 2)
})
t.Run("Basic championship flow, open entrylist with only one free slot", func(t *testing.T) {
// make a championship
champ := NewChampionship("Test Championship")
champ.OpenEntrants = true
cl := NewChampionshipClass("Default")
cl.Entrants = EntryList{
"CAR_0": {
Name: "",
GUID: "",
Team: "Team 1",
Model: "rss_formula_rss_4",
Skin: "",
},
}
champ.AddClass(cl)
for range championshipEventFixtures {
e := NewChampionshipEvent()
e.RaceSetup = ConfigIniDefault().CurrentRaceConfig
champ.Events = append(champ.Events, e)
}
if err := championshipManager.UpsertChampionship(champ); err != nil {
t.Error(err)
return
}
for i, sessionFile := range championshipEventFixtures {
t.Run(sessionFile, func(t *testing.T) {
if err := championshipManager.StartEvent(champ.ID.String(), champ.Events[i].ID.String(), false); err != nil {
t.Error(err)
return
}
err := doReplay(filepath.Join("fixtures", sessionFile), 1000,
championshipManager.ChampionshipEventCallback, time.Second)
if err != nil {
t.Error(err)
return
}
checkChampionshipEventCompletion(t, champ.ID.String(), champ.Events[i].ID.String())
})
}
checkAutoPopulatedEntryList(t, champ.ID.String(), 1)
})
t.Run("Basic championship flow, open entrylist with one free slot for a non-matching car", func(t *testing.T) {
// make a championship
champ := NewChampionship("Test Championship")
champ.OpenEntrants = true
cl := NewChampionshipClass("Default")
cl.Entrants = EntryList{
"CAR_0": {
Name: "",
GUID: "",
Team: "Team 1",
Model: "bmw_m3",
Skin: "",
},
}
champ.AddClass(cl)
for range championshipEventFixtures {
e := NewChampionshipEvent()
e.RaceSetup = ConfigIniDefault().CurrentRaceConfig
champ.Events = append(champ.Events, e)
}
if err := championshipManager.UpsertChampionship(champ); err != nil {
t.Error(err)
return
}
for i, sessionFile := range championshipEventFixtures {
t.Run(sessionFile, func(t *testing.T) {
if err := championshipManager.StartEvent(champ.ID.String(), champ.Events[i].ID.String(), false); err != nil {
t.Error(err)
return
}
err := doReplay(filepath.Join("fixtures", sessionFile), 1000,
championshipManager.ChampionshipEventCallback, time.Second)
if err != nil {
t.Error(err)
return
}
checkChampionshipEventCompletion(t, champ.ID.String(), champ.Events[i].ID.String())
})
}
checkAutoPopulatedEntryList(t, champ.ID.String(), 0)
})
}
func checkAutoPopulatedEntryList(t *testing.T, championshipID string, expected int) {
loadedChampionship, err := championshipManager.LoadChampionship(championshipID)
if err != nil {
t.Error(err)
return
}
numPopulatedEntrants := 0
for _, entrant := range loadedChampionship.AllEntrants() {
if entrant.Name != "" && entrant.GUID != "" {
numPopulatedEntrants++
}
}
if numPopulatedEntrants != expected {
t.Fail()
}
}
func checkChampionshipEventCompletion(t *testing.T, championshipID string, eventID string) {
// now look at the championship event and see if it has a start/end time
loadedChampionship, err := championshipManager.LoadChampionship(championshipID)
if err != nil {
t.Error(err)
return
}
event, _, err := loadedChampionship.EventByID(eventID)
if err != nil {
t.Error(err)
return
}
if event.StartedTime.IsZero() {
t.Logf("Invalid championship event start time (zero)")
t.Fail()
return
}
if event.CompletedTime.IsZero() {
t.Logf("Invalid championship event completed time (zero)")
t.Fail()
return
}
for _, sess := range event.Sessions {
if sess.StartedTime.IsZero() {
t.Logf("Invalid session start time (zero)")
t.Fail()
return
}
if sess.CompletedTime.IsZero() {
t.Logf("Invalid session end time (zero)")
t.Fail()
return
}
}
}
func TestChampionshipManager_ChampionshipEventCallbackOpenChampionshipExample(t *testing.T) {
var champ *Championship
f, err := os.Open(filepath.Join("fixtures", "open-championship", "championship-setup.json"))
if err != nil {
t.Error(err)
return
}
defer f.Close()
err = json.NewDecoder(f).Decode(&champ)
if err != nil {
t.Error(err)
return
}
err = championshipManager.UpsertChampionship(champ)
if err != nil {
t.Error(err)
return
}
eventIDToJSON := map[string]string{
"006e6edd-7e77-4d7e-a2ce-d757adb65d95": filepath.Join("fixtures", "open-championship", "nurburgring_sprint_b.db"),
"c412e271-b3c0-4a71-abbe-954c540260de": filepath.Join("fixtures", "open-championship", "rbr_national.db"),
"09bddc04-45ed-40f7-bc94-73a3fe42f3fb": filepath.Join("fixtures", "open-championship", "suzuka_east.db"),
}
eventNum := 1
for eventID, file := range eventIDToJSON {
err = championshipManager.StartEvent(champ.ID.String(), eventID, false)
if err != nil {
t.Error(err)
return
}
err := doReplay(file, 10000, championshipManager.ChampionshipEventCallback, time.Second)
if err != nil {
t.Error(err)
return
}
checkChampionshipEventCompletion(t, champ.ID.String(), eventID)
eventNum++
}
}