-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
bundle.go
405 lines (356 loc) · 11.5 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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
package js
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"net/url"
"runtime"
"github.com/dop251/goja"
"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/js/eventloop"
"go.k6.io/k6/lib"
"go.k6.io/k6/lib/consts"
"go.k6.io/k6/loader"
"go.k6.io/k6/metrics"
)
// 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
// TODO: maybe just have a reference to the Bundle? or save and pass rtOpts?
env map[string]string
exports map[string]goja.Callable
moduleVUImpl *moduleVUImpl
pgm programWithSource
}
func (bi *BundleInstance) getCallableExport(name string) goja.Callable {
return bi.exports[name]
}
func (bi *BundleInstance) getExported(name string) goja.Value {
return bi.pgm.exports.Get(name)
}
// NewBundle creates a new bundle from a source file and a filesystem.
func NewBundle(
piState *lib.TestPreInitState, src *loader.SourceData, filesystems map[string]afero.Fs,
) (*Bundle, error) {
compatMode, err := lib.ValidateCompatibilityMode(piState.RuntimeOptions.CompatibilityMode.String)
if err != nil {
return nil, err
}
// Compile sources, both ES5 and ES6 are supported.
code := string(src.Data)
c := compiler.New(piState.Logger)
c.Options = compiler.Options{
CompatibilityMode: compatMode,
Strict: true,
SourceMapLoader: generateSourceMapLoader(piState.Logger, filesystems),
}
pgm, _, err := c.Compile(code, src.URL.String(), false)
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(piState.Logger, rt, c, compatMode, filesystems, loader.Dir(src.URL)),
RuntimeOptions: piState.RuntimeOptions,
CompatibilityMode: compatMode,
exports: make(map[string]goja.Callable),
registry: piState.Registry,
}
if err = bundle.instantiate(piState.Logger, rt, bundle.BaseInitContext, 0); err != nil {
return nil, err
}
err = bundle.getExports(piState.Logger, rt, true)
if err != nil {
return nil, err
}
return &bundle, nil
}
// NewBundleFromArchive creates a new bundle from an lib.Archive.
func NewBundleFromArchive(piState *lib.TestPreInitState, arc *lib.Archive) (*Bundle, error) {
if arc.Type != "js" {
return nil, fmt.Errorf("expected bundle type 'js', got '%s'", arc.Type)
}
rtOpts := piState.RuntimeOptions // copy the struct from the TestPreInitState
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(piState.Logger)
c.Options = compiler.Options{
Strict: true,
CompatibilityMode: compatMode,
SourceMapLoader: generateSourceMapLoader(piState.Logger, arc.Filesystems),
}
pgm, _, err := c.Compile(string(arc.Data), arc.FilenameURL.String(), false)
if err != nil {
return nil, err
}
rt := goja.New()
initctx := NewInitContext(piState.Logger, rt, c, compatMode, 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: piState.Registry,
}
if err = bundle.instantiate(piState.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(piState.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 {
pgm := b.BaseInitContext.programs[b.Filename.String()] // this is the main script and it's always present
exportsV := pgm.module.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) (*BundleInstance, error) {
// 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.
vuImpl := &moduleVUImpl{runtime: goja.New()}
init := newBoundInitContext(b.BaseInitContext, vuImpl)
if err := b.instantiate(logger, vuImpl.runtime, init, vuID); err != nil {
return nil, err
}
rt := vuImpl.runtime
pgm := init.programs[b.Filename.String()] // this is the main script and it's always present
bi := &BundleInstance{
Runtime: rt,
exports: make(map[string]goja.Callable),
env: b.RuntimeOptions.Env,
moduleVUImpl: vuImpl,
pgm: pgm,
}
// Grab any exported functions that could be executed. These were
// already pre-validated in cmd.validateScenarioConfig(), just get them here.
exports := pgm.module.Get("exports").ToObject(rt)
for k := range b.exports {
fn, _ := goja.AssertFunction(exports.Get(k))
bi.exports[k] = fn
}
jsOptions := exports.Get("options")
var jsOptionsObj *goja.Object
if jsOptions == nil || goja.IsNull(jsOptions) || goja.IsUndefined(jsOptions) {
jsOptionsObj = rt.NewObject()
err := exports.Set("options", jsOptionsObj)
if err != nil {
return nil, fmt.Errorf("couldn't set exported options with merged values: %w", err)
}
} else {
jsOptionsObj = jsOptions.ToObject(rt)
}
var instErr error
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) initializeProgramObject(rt *goja.Runtime, init *InitContext) programWithSource {
pgm := programWithSource{
pgm: b.Program,
src: b.Source,
exports: rt.NewObject(),
module: rt.NewObject(),
}
_ = pgm.module.Set("exports", pgm.exports)
init.programs[b.Filename.String()] = pgm
return pgm
}
func (b *Bundle) instantiate(logger logrus.FieldLogger, rt *goja.Runtime, init *InitContext, vuID uint64) (err error) {
rt.SetFieldNameMapper(common.FieldNameMapper{})
rt.SetRandSource(common.NewRandSource())
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", newConsole(logger))
if init.compatibilityMode == lib.CompatibilityModeExtended {
rt.Set("global", rt.GlobalObject())
}
initenv := &common.InitEnvironment{
Logger: logger,
FileSystems: init.filesystems,
CWD: init.pwd,
Registry: b.registry,
}
unbindInit := b.setInitGlobals(rt, init)
init.moduleVUImpl.ctx = context.Background()
init.moduleVUImpl.initEnv = initenv
init.moduleVUImpl.eventLoop = eventloop.New(init.moduleVUImpl)
pgm := b.initializeProgramObject(rt, init)
err = common.RunWithPanicCatching(logger, rt, func() error {
return init.moduleVUImpl.eventLoop.Start(func() error {
f, errRun := rt.RunProgram(b.Program)
if errRun != nil {
return errRun
}
if call, ok := goja.AssertFunction(f); ok {
if _, errRun = call(pgm.exports, pgm.module, pgm.exports); errRun != nil {
return errRun
}
return nil
}
panic("Somehow a commonjs main module is not wrapped in a function")
})
})
if err != nil {
var exception *goja.Exception
if errors.As(err, &exception) {
err = &scriptException{inner: exception}
}
return err
}
exportsV := pgm.module.Get("exports")
if goja.IsNull(exportsV) {
return errors.New("exports must be an object")
}
pgm.exports = exportsV.ToObject(rt)
init.programs[b.Filename.String()] = pgm
unbindInit()
init.moduleVUImpl.ctx = nil
init.moduleVUImpl.initEnv = nil
// If we've already initialized the original VU init context, forbid
// any subsequent VUs to open new files
if vuID == 0 {
init.allowOnlyOpenedFiles()
}
rt.SetRandSource(common.NewRandSource())
return nil
}
func (b *Bundle) setInitGlobals(rt *goja.Runtime, init *InitContext) (unset func()) {
mustSet := func(k string, v interface{}) {
if err := rt.Set(k, v); err != nil {
panic(fmt.Errorf("failed to set '%s' global object: %w", k, err))
}
}
mustSet("require", init.Require)
mustSet("open", init.Open)
return func() {
mustSet("require", goja.Undefined())
mustSet("open", goja.Undefined())
}
}
func generateSourceMapLoader(logger logrus.FieldLogger, filesystems map[string]afero.Fs,
) func(path string) ([]byte, error) {
return func(path string) ([]byte, error) {
u, err := url.Parse(path)
if err != nil {
return nil, err
}
data, err := loader.Load(logger, filesystems, u, path)
if err != nil {
return nil, err
}
return data.Data, nil
}
}