-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcreator_test.go
106 lines (99 loc) · 2.87 KB
/
creator_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
package pymlstate
import (
"bytes"
. "github.com/smartystreets/goconvey/convey"
"gopkg.in/sensorbee/sensorbee.v0/core"
"gopkg.in/sensorbee/sensorbee.v0/data"
"testing"
)
func TestCreatePyMLState(t *testing.T) {
ctx := &core.Context{}
Convey("Given a state creator", t, func() {
sc := StateCreator{}
Convey("When create a pymlstate with empty parameter", func() {
params := data.Map{}
_, err := sc.CreateState(ctx, params)
Convey("Then creator should return an error", func() {
So(err, ShouldNotBeNil)
})
})
Convey("When create a pymlstate with base parameters", func() {
params := data.Map{
"module_path": data.String("./"),
"module_name": data.String("_test_pymlstate"),
"class_name": data.String("TestClass"),
}
s, err := sc.CreateState(ctx, params)
So(err, ShouldBeNil)
Reset(func() {
s.Terminate(ctx)
})
Convey("Then the state should be set up with default parameter", func() {
ps, ok := s.(*State)
So(ok, ShouldBeTrue)
So(ps.params.BatchSize, ShouldEqual, 1)
})
})
Convey("When create a pymlstate with customized parameters", func() {
params := data.Map{
"module_path": data.String("./"),
"module_name": data.String("_test_pymlstate"),
"class_name": data.String("TestClass"),
"batch_train_size": data.Int(50),
}
s, err := sc.CreateState(ctx, params)
So(err, ShouldBeNil)
Reset(func() {
s.Terminate(ctx)
})
Convey("Then the state should be set up with customized parameter", func() {
ps, ok := s.(*State)
So(ok, ShouldBeTrue)
So(ps.params.BatchSize, ShouldEqual, 50)
So(len(ps.bucket), ShouldEqual, 0)
So(cap(ps.bucket), ShouldEqual, 50)
})
})
})
}
func TestLoadPyMLState(t *testing.T) {
cc := &core.ContextConfig{}
ctx := core.NewContext(cc)
Convey("Given a state creator", t, func() {
sc := StateCreator{}
Convey("When create a pymlstate for confirm loading", func() {
params := data.Map{
"module_path": data.String("./"),
"module_name": data.String("_test_pymlstate"),
"class_name": data.String("TestClass"),
"batch_train_size": data.Int(50),
}
s, err := sc.CreateState(ctx, params)
So(err, ShouldBeNil)
Reset(func() {
s.Terminate(ctx)
})
err = ctx.SharedStates.Add("test_pymlstate_load", "py", s)
So(err, ShouldBeNil)
Convey("And when save the state", func() {
ps, ok := s.(*State)
So(ok, ShouldBeTrue)
buf := bytes.NewBuffer(nil)
err := ps.Save(ctx, buf, data.Map{})
So(err, ShouldBeNil)
Convey("And when load the state", func() {
s2, err := sc.LoadState(ctx, buf, data.Map{})
So(err, ShouldBeNil)
Reset(func() {
s2.Terminate(ctx)
})
Convey("Then the state should be loaded validly", func() {
ps2, ok := s2.(*State)
So(ok, ShouldBeTrue)
So(ps2.params.BatchSize, ShouldEqual, 50)
})
})
})
})
})
}