forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.go
340 lines (298 loc) · 9.79 KB
/
bundle.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2016 Load Impact
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package js
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"net/url"
"runtime"
"github.com/dop251/goja"
"github.com/dop251/goja/parser"
"github.com/sirupsen/logrus"
"github.com/spf13/afero"
"gopkg.in/guregu/null.v3"
"go.k6.io/k6/js/common"
"go.k6.io/k6/js/compiler"
"go.k6.io/k6/lib"
"go.k6.io/k6/lib/consts"
"go.k6.io/k6/lib/metrics"
"go.k6.io/k6/loader"
)
// A Bundle is a self-contained bundle of scripts and resources.
// You can use this to produce identical BundleInstance objects.
type Bundle struct {
Filename *url.URL
Source string
Program *goja.Program
Options lib.Options
BaseInitContext *InitContext
RuntimeOptions lib.RuntimeOptions
CompatibilityMode lib.CompatibilityMode // parsed value
registry *metrics.Registry
exports map[string]goja.Callable
}
// A BundleInstance is a self-contained instance of a Bundle.
type BundleInstance struct {
Runtime *goja.Runtime
Context *context.Context
// TODO: maybe just have a reference to the Bundle? or save and pass rtOpts?
env map[string]string
exports map[string]goja.Callable
}
// NewBundle creates a new bundle from a source file and a filesystem.
func NewBundle(
logger logrus.FieldLogger, src *loader.SourceData, filesystems map[string]afero.Fs, rtOpts lib.RuntimeOptions,
registry *metrics.Registry,
) (*Bundle, error) {
compatMode, err := lib.ValidateCompatibilityMode(rtOpts.CompatibilityMode.String)
if err != nil {
return nil, err
}
// Compile sources, both ES5 and ES6 are supported.
code := string(src.Data)
c := compiler.New(logger)
pgm, _, err := c.Compile(code, src.URL.String(), "", "", true, compatMode)
if err != nil {
return nil, err
}
// Make a bundle, instantiate it into a throwaway VM to populate caches.
rt := goja.New()
bundle := Bundle{
Filename: src.URL,
Source: code,
Program: pgm,
BaseInitContext: NewInitContext(logger, rt, c, compatMode, new(context.Context),
filesystems, loader.Dir(src.URL)),
RuntimeOptions: rtOpts,
CompatibilityMode: compatMode,
exports: make(map[string]goja.Callable),
registry: registry,
}
if err = bundle.instantiate(logger, rt, bundle.BaseInitContext, 0); err != nil {
return nil, err
}
err = bundle.getExports(logger, rt, true)
if err != nil {
return nil, err
}
return &bundle, nil
}
// NewBundleFromArchive creates a new bundle from an lib.Archive.
func NewBundleFromArchive(
logger logrus.FieldLogger, arc *lib.Archive, rtOpts lib.RuntimeOptions, registry *metrics.Registry,
) (*Bundle, error) {
if arc.Type != "js" {
return nil, fmt.Errorf("expected bundle type 'js', got '%s'", arc.Type)
}
if !rtOpts.CompatibilityMode.Valid {
// `k6 run --compatibility-mode=whatever archive.tar` should override
// whatever value is in the archive
rtOpts.CompatibilityMode = null.StringFrom(arc.CompatibilityMode)
}
compatMode, err := lib.ValidateCompatibilityMode(rtOpts.CompatibilityMode.String)
if err != nil {
return nil, err
}
c := compiler.New(logger)
pgm, _, err := c.Compile(string(arc.Data), arc.FilenameURL.String(), "", "", true, compatMode)
if err != nil {
return nil, err
}
rt := goja.New()
initctx := NewInitContext(logger, rt, c, compatMode,
new(context.Context), arc.Filesystems, arc.PwdURL)
env := arc.Env
if env == nil {
// Older archives (<=0.20.0) don't have an "env" property
env = make(map[string]string)
}
for k, v := range rtOpts.Env {
env[k] = v
}
rtOpts.Env = env
bundle := &Bundle{
Filename: arc.FilenameURL,
Source: string(arc.Data),
Program: pgm,
Options: arc.Options,
BaseInitContext: initctx,
RuntimeOptions: rtOpts,
CompatibilityMode: compatMode,
exports: make(map[string]goja.Callable),
registry: registry,
}
if err = bundle.instantiate(logger, rt, bundle.BaseInitContext, 0); err != nil {
return nil, err
}
// Grab exported objects, but avoid overwriting options, which would
// be initialized from the metadata.json at this point.
err = bundle.getExports(logger, rt, false)
if err != nil {
return nil, err
}
return bundle, nil
}
func (b *Bundle) makeArchive() *lib.Archive {
arc := &lib.Archive{
Type: "js",
Filesystems: b.BaseInitContext.filesystems,
Options: b.Options,
FilenameURL: b.Filename,
Data: []byte(b.Source),
PwdURL: b.BaseInitContext.pwd,
Env: make(map[string]string, len(b.RuntimeOptions.Env)),
CompatibilityMode: b.CompatibilityMode.String(),
K6Version: consts.Version,
Goos: runtime.GOOS,
}
// Copy env so changes in the archive are not reflected in the source Bundle
for k, v := range b.RuntimeOptions.Env {
arc.Env[k] = v
}
return arc
}
// getExports validates and extracts exported objects
func (b *Bundle) getExports(logger logrus.FieldLogger, rt *goja.Runtime, options bool) error {
exportsV := rt.Get("exports")
if goja.IsNull(exportsV) || goja.IsUndefined(exportsV) {
return errors.New("exports must be an object")
}
exports := exportsV.ToObject(rt)
for _, k := range exports.Keys() {
v := exports.Get(k)
if fn, ok := goja.AssertFunction(v); ok && k != consts.Options {
b.exports[k] = fn
continue
}
switch k {
case consts.Options:
if !options {
continue
}
data, err := json.Marshal(v.Export())
if err != nil {
return err
}
dec := json.NewDecoder(bytes.NewReader(data))
dec.DisallowUnknownFields()
if err := dec.Decode(&b.Options); err != nil {
if uerr := json.Unmarshal(data, &b.Options); uerr != nil {
return uerr
}
logger.WithError(err).Warn("There were unknown fields in the options exported in the script")
}
case consts.SetupFn:
return errors.New("exported 'setup' must be a function")
case consts.TeardownFn:
return errors.New("exported 'teardown' must be a function")
}
}
if len(b.exports) == 0 {
return errors.New("no exported functions in script")
}
return nil
}
// Instantiate creates a new runtime from this bundle.
func (b *Bundle) Instantiate(logger logrus.FieldLogger, vuID uint64) (bi *BundleInstance, instErr error) {
// TODO: actually use a real context here, so that the instantiation can be killed
// Placeholder for a real context.
ctxPtr := new(context.Context)
// Instantiate the bundle into a new VM using a bound init context. This uses a context with a
// runtime, but no state, to allow module-provided types to function within the init context.
rt := goja.New()
init := newBoundInitContext(b.BaseInitContext, ctxPtr, rt)
if err := b.instantiate(logger, rt, init, vuID); err != nil {
return nil, err
}
bi = &BundleInstance{
Runtime: rt,
Context: ctxPtr,
exports: make(map[string]goja.Callable),
env: b.RuntimeOptions.Env,
}
// Grab any exported functions that could be executed. These were
// already pre-validated in cmd.validateScenarioConfig(), just get them here.
exports := rt.Get("exports").ToObject(rt)
for k := range b.exports {
fn, _ := goja.AssertFunction(exports.Get(k))
bi.exports[k] = fn
}
jsOptions := rt.Get("options")
var jsOptionsObj *goja.Object
if jsOptions == nil || goja.IsNull(jsOptions) || goja.IsUndefined(jsOptions) {
jsOptionsObj = rt.NewObject()
rt.Set("options", jsOptionsObj)
} else {
jsOptionsObj = jsOptions.ToObject(rt)
}
b.Options.ForEachSpecified("json", func(key string, val interface{}) {
if err := jsOptionsObj.Set(key, val); err != nil {
instErr = err
}
})
return bi, instErr
}
// Instantiates the bundle into an existing runtime. Not public because it also messes with a bunch
// of other things, will potentially thrash data and makes a mess in it if the operation fails.
func (b *Bundle) instantiate(logger logrus.FieldLogger, rt *goja.Runtime, init *InitContext, vuID uint64) error {
rt.SetParserOptions(parser.WithDisableSourceMaps)
rt.SetFieldNameMapper(common.FieldNameMapper{})
rt.SetRandSource(common.NewRandSource())
exports := rt.NewObject()
rt.Set("exports", exports)
module := rt.NewObject()
_ = module.Set("exports", exports)
rt.Set("module", module)
env := make(map[string]string, len(b.RuntimeOptions.Env))
for key, value := range b.RuntimeOptions.Env {
env[key] = value
}
rt.Set("__ENV", env)
rt.Set("__VU", vuID)
rt.Set("console", common.Bind(rt, newConsole(logger), init.ctxPtr))
if init.compatibilityMode == lib.CompatibilityModeExtended {
rt.Set("global", rt.GlobalObject())
}
// TODO: get rid of the unused ctxPtr, use a real external context (so we
// can interrupt), build the common.InitEnvironment earlier and reuse it
initenv := &common.InitEnvironment{
Logger: logger,
FileSystems: init.filesystems,
CWD: init.pwd,
Registry: b.registry,
}
ctx := common.WithInitEnv(context.Background(), initenv)
*init.ctxPtr = common.WithRuntime(ctx, rt)
unbindInit := common.BindToGlobal(rt, common.Bind(rt, init, init.ctxPtr))
if _, err := rt.RunProgram(b.Program); err != nil {
var exception *goja.Exception
if errors.As(err, &exception) {
err = &scriptException{inner: exception}
}
return err
}
unbindInit()
*init.ctxPtr = nil
rt.SetRandSource(common.NewRandSource())
return nil
}