forked from trustmaster/goflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins_test.go
More file actions
148 lines (136 loc) · 2.67 KB
/
plugins_test.go
File metadata and controls
148 lines (136 loc) · 2.67 KB
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
package goflow
import (
"io/ioutil"
"log"
"os"
"path"
"reflect"
"testing"
)
func TestBadParams(t *testing.T) {
log.SetOutput(ioutil.Discard)
paths := []string{"boogie"}
_, err := LoadComponents(paths, NewFactory())
if err != nil {
t.Error("LoadComponenets succeeded with bad parameters")
}
paths = []string{"/usr/lib", "/lib"}
_, err = LoadComponents(paths, NewFactory())
if err != nil {
t.Error("LoadComponenets succeeded with bad parameters")
}
}
func createFactory(t *testing.T) *Factory {
testPlugs := path.Join(os.Getenv("GOPATH"), "bin")
paths := []string{testPlugs}
factory := NewFactory()
plugs, err := LoadComponents(paths, factory)
if err != nil {
t.Error("Failed loading compononents in ./test_plugins", err)
}
if len(plugs) == 0 {
t.Error("No plugins found in directory", testPlugs)
}
//fmt.Println("Opened plugs", plugs)
return factory
}
func TestOpening(t *testing.T) {
factory := createFactory(t)
if factory.Size() != 3 {
t.Error("Wrong number of plugins in factory")
}
any, err := factory.Create("Plug1")
if err != nil {
t.Error("Failed to create object Plug1", err)
}
plug1 := any.(PlugIn)
expected := make(map[string]interface{})
expected["inputs"] = [5]int{1, 2, 3, 4, 5}
plug1.SetParams(expected)
recieved := plug1.GetParams()
if !reflect.DeepEqual(recieved, expected) {
t.Error("Recieved bad meta data expected", expected, "got", recieved)
}
//fmt.Println(plug1.Info())
}
var testJSON = `{
"properties": {
"name": "testJSON"
},
"processes": {
"gen1": {
"component": "NGen",
"Parameters" : {
"inputs" : [1,2,3,4,5,6,7,8,9,10]
}
},
"gen2": {
"component": "NGen",
"Parameters" : {
"inputs" : [10,20,30,40,50,60,70,80,90,100]
}
},
"adder": {
"component": "Adder"
}
},
"connections": [
{
"tgt": {
"process": "gen1",
"port": "Init"
}
},
{
"tgt": {
"process": "gen2",
"port": "Init"
}
},
{
"src": {
"process": "gen1",
"port": "Out"
},
"tgt": {
"process": "adder",
"port": "Left"
}
},
{
"src": {
"process": "gen2",
"port": "Out"
},
"tgt": {
"process": "adder",
"port": "Right"
}
}
],
"exports": [
{
"private": "adder.Out",
"public": "Out"
}
]
}`
//TestGraph something
func TestLoadGraph(t *testing.T) {
factory := createFactory(t)
net := ParseJSON([]byte(testJSON), factory)
if net == nil {
t.Error("Could not load JSON")
}
out := make(chan int)
net.SetOutPort("Out", out)
Run(net)
test := [10]int{11, 22, 33, 44, 55, 66, 77, 88, 99, 110}
for _, v := range test {
result := <-out
if result != v {
t.Errorf("Wrong results: expected %d got %d", v, result)
}
}
//<-wait
}