mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
31 lines
984 B
Go
31 lines
984 B
Go
// Copyright 2014 Team 254. All Rights Reserved.
|
|
// Author: pat@patfairbank.com (Patrick Fairbank)
|
|
|
|
package model
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestEventSettingsReadWrite(t *testing.T) {
|
|
db := setupTestDb(t)
|
|
|
|
eventSettings, err := db.GetEventSettings()
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, EventSettings{Id: 0, Name: "Untitled Event", DisplayBackgroundColor: "#00ff00",
|
|
NumElimAlliances: 8, SelectionRound2Order: "L", SelectionRound3Order: "", TBADownloadEnabled: true,
|
|
ApTeamChannel: 157, ApAdminChannel: 11, ApAdminWpaKey: "1234Five"}, *eventSettings)
|
|
|
|
eventSettings.Name = "Chezy Champs"
|
|
eventSettings.DisplayBackgroundColor = "#ff00ff"
|
|
eventSettings.NumElimAlliances = 6
|
|
eventSettings.SelectionRound2Order = "F"
|
|
eventSettings.SelectionRound3Order = "L"
|
|
err = db.SaveEventSettings(eventSettings)
|
|
assert.Nil(t, err)
|
|
eventSettings2, err := db.GetEventSettings()
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, eventSettings, eventSettings2)
|
|
}
|