forked from Team254/cheesy-arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_lower_thirds_test.go
55 lines (46 loc) · 1.89 KB
/
setup_lower_thirds_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
// Copyright 2014 Team 254. All Rights Reserved.
// Author: [email protected] (Patrick Fairbank)
package main
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestSetupLowerThirds(t *testing.T) {
clearDb()
defer clearDb()
var err error
db, err = OpenDatabase(testDbPath)
assert.Nil(t, err)
defer db.Close()
eventSettings, _ = db.GetEventSettings()
mainArena.Setup()
db.CreateLowerThird(&LowerThird{0, "Top Text 1", "Bottom Text 1"})
db.CreateLowerThird(&LowerThird{0, "Top Text 2", "Bottom Text 2"})
recorder := getHttpResponse("/setup/lower_thirds")
assert.Equal(t, 200, recorder.Code)
assert.Contains(t, recorder.Body.String(), "Top Text 1")
assert.Contains(t, recorder.Body.String(), "Bottom Text 2")
recorder = postHttpResponse("/setup/lower_thirds", "action=delete&id=1")
assert.Equal(t, 302, recorder.Code)
recorder = getHttpResponse("/setup/lower_thirds")
assert.Equal(t, 200, recorder.Code)
assert.NotContains(t, recorder.Body.String(), "Top Text 1")
assert.Contains(t, recorder.Body.String(), "Bottom Text 2")
recorder = postHttpResponse("/setup/lower_thirds", "action=save&topText=Text 3&bottomText=")
assert.Equal(t, 302, recorder.Code)
recorder = getHttpResponse("/setup/lower_thirds")
assert.Equal(t, 200, recorder.Code)
assert.Contains(t, recorder.Body.String(), "Text 3")
lowerThird, _ := db.GetLowerThirdById(3)
assert.NotNil(t, lowerThird)
recorder = postHttpResponse("/setup/lower_thirds", "action=show&topText=Text 4&bottomText=&id=3")
assert.Equal(t, 302, recorder.Code)
recorder = getHttpResponse("/setup/lower_thirds")
assert.Equal(t, 200, recorder.Code)
assert.Contains(t, recorder.Body.String(), "Text 4")
lowerThird, _ = db.GetLowerThirdById(3)
assert.Equal(t, "Text 4", lowerThird.TopText)
assert.Equal(t, "", lowerThird.BottomText)
recorder = postHttpResponse("/setup/lower_thirds", "action=hide&id=3")
assert.Equal(t, 302, recorder.Code)
}