-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheffects_test.go
42 lines (35 loc) · 1.07 KB
/
effects_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
package animation
import (
"fmt"
"image/color"
"testing"
"time"
)
func TestInterpolateSolid(t *testing.T) {
effect := NewInterpolateSolid(color.RGBA{0x00, 0x00, 0x00, 0xff}, color.RGBA{0xff, 0xff, 0xff, 0xff}, time.Duration(1000))
startTime := time.Now()
effect.Start(startTime)
buf := make([]color.RGBA, 1)
result, done := effect.Frame(buf, startTime)
val := result[0]
if val.R != 0x00 || val.G != 0x00 || val.B != 0x00 || val.A != 0xff {
t.Errorf("Value at start time not equal to start color: %v", val)
}
if done {
t.Errorf("Done at start time")
}
result, done = effect.Frame(buf, startTime.Add(time.Duration(500)))
fmt.Printf("Halfway point: %v\n", result[0])
result, done = effect.Frame(buf, startTime.Add(time.Duration(1000)))
val = result[0]
if val.R != 0xff || val.G != 0xff || val.B != 0xff || val.A != 0xff {
t.Errorf("Value at end time not equal to end color: %v", val)
}
if done {
t.Errorf("Done on last real frame")
}
_, done = effect.Frame(buf, startTime.Add(time.Duration(10001)))
if !done {
t.Errorf("Not done after duration + 1")
}
}