-
Notifications
You must be signed in to change notification settings - Fork 3
/
nutest.go
121 lines (97 loc) · 3.07 KB
/
nutest.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
Copyright 2017 The Nuclio Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package nutest
import (
"os"
"github.com/nuclio/zap"
"github.com/nuclio/nuclio-sdk-go"
"github.com/v3io/v3io-go-http"
"github.com/pkg/errors"
"github.com/nuclio/logger"
)
func NewTestContext(function func(context *nuclio.Context, event nuclio.Event)(interface {}, error),
verbose bool, data *DataBind) (*TestContext, error) {
newTest := TestContext{Data:data}
if verbose {
newTest.LogLevel = nucliozap.DebugLevel
} else {
newTest.LogLevel = nucliozap.WarnLevel
}
logger, err := nucliozap.NewNuclioZapCmd("emulator", newTest.LogLevel, os.Stdout)
if err != nil {
return nil, errors.Wrap(err, "Failed to create logger")
}
newTest.Logger = logger
db := map[string]nuclio.DataBinding{}
if data != nil {
container, err := createContainer(logger, data)
if err != nil {
logger.ErrorWith("Failed to createContainer", "err", err)
return nil, errors.Wrap(err, "Failed to createContainer")
}
if data.Name == "" {
data.Name = "db0"
}
db[data.Name] = container
}
newTest.context = nuclio.Context{Logger:logger, DataBinding:db, Platform: &nuclio.Platform{}}
newTest.function = function
return &newTest, nil
}
type TestContext struct {
LogLevel nucliozap.Level
Logger logger.Logger
Data *DataBind
context nuclio.Context
function func(context *nuclio.Context, event nuclio.Event)(interface {}, error)
}
func (tc *TestContext) InitContext(function func(context *nuclio.Context) error) error {
return function(&tc.context)
}
func (tc *TestContext) Invoke(event nuclio.Event) (interface{}, error) {
body, err := tc.function(&tc.context, event)
if err != nil {
tc.Logger.ErrorWith("Function execution failed", "err", err)
return body, err
}
tc.Logger.InfoWith("Function completed","output",body)
return body, err
}
func (tc *TestContext) GetContext() nuclio.Context {
return tc.context
}
func createContainer(logger logger.Logger, db *DataBind) (*v3io.Container, error) {
// create context
context, err := v3io.NewContext(logger, db.Url , 8)
if err != nil {
return nil, errors.Wrap(err, "Failed to create client")
}
// create session
session, err := context.NewSession(db.User, db.Password, "v3test")
if err != nil {
return nil, errors.Wrap(err, "Failed to create session")
}
// create the container
container, err := session.NewContainer(db.Container)
if err != nil {
return nil, errors.Wrap(err, "Failed to create container")
}
return container, nil
}
type DataBind struct {
Name string
Url string
Container string
User string
Password string
}