forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadsource.go
85 lines (78 loc) · 2.87 KB
/
readsource.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
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2019 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 loader
import (
"errors"
"fmt"
"io"
"io/ioutil"
"net/url"
"path/filepath"
"github.com/sirupsen/logrus"
"github.com/spf13/afero"
"go.k6.io/k6/lib/fsext"
)
// ReadSource Reads a source file from any supported destination.
func ReadSource(
logger logrus.FieldLogger, src, pwd string, filesystems map[string]afero.Fs, stdin io.Reader,
) (*SourceData, error) {
if src == "-" {
data, err := ioutil.ReadAll(stdin)
if err != nil {
return nil, err
}
// TODO: don't do it in this way ...
err = afero.WriteFile(filesystems["file"].(fsext.CacheOnReadFs).GetCachingFs(), "/-", data, 0644)
if err != nil {
return nil, fmt.Errorf("caching data read from -: %w", err)
}
return &SourceData{URL: &url.URL{Path: "/-", Scheme: "file"}, Data: data}, err
}
var srcLocalPath string
if filepath.IsAbs(src) {
srcLocalPath = src
} else {
srcLocalPath = filepath.Join(pwd, src)
}
// All paths should start with a / in all fses. This is mostly for windows where it will start
// with a volume name : C:\something.js
srcLocalPath = filepath.Clean(afero.FilePathSeparator + srcLocalPath)
if ok, _ := afero.Exists(filesystems["file"], srcLocalPath); ok {
// there is file on the local disk ... lets use it :)
return Load(logger, filesystems, &url.URL{Scheme: "file", Path: filepath.ToSlash(srcLocalPath)}, src)
}
pwdURL := &url.URL{Scheme: "file", Path: filepath.ToSlash(filepath.Clean(pwd)) + "/"}
srcURL, err := Resolve(pwdURL, filepath.ToSlash(src))
if err != nil {
var noSchemeError noSchemeRemoteModuleResolutionError
if errors.As(err, &noSchemeError) {
// TODO maybe try to wrap the original error here as well, without butchering the message
return nil, fmt.Errorf(nothingWorkedLoadedMsg, noSchemeError.moduleSpecifier, noSchemeError.err)
}
return nil, err
}
result, err := Load(logger, filesystems, srcURL, src)
var noSchemeError noSchemeRemoteModuleResolutionError
if errors.As(err, &noSchemeError) {
// TODO maybe try to wrap the original error here as well, without butchering the message
return nil, fmt.Errorf(nothingWorkedLoadedMsg, noSchemeError.moduleSpecifier, noSchemeError.err)
}
return result, err
}