mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-04 19:35:38 +00:00
Compare commits
5 Commits
5c36c6a6ca
...
ae8ae64c3a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ae8ae64c3a | ||
|
|
e2f1d5ccf7 | ||
|
|
16f149b351 | ||
|
|
5da9215306 | ||
|
|
9317a73dea |
2
.github/workflows/go.yml
vendored
2
.github/workflows/go.yml
vendored
@ -37,7 +37,7 @@ jobs:
|
||||
steps:
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
||||
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
|
||||
with:
|
||||
go-version: '^1.20'
|
||||
id: go
|
||||
|
||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
id-token: write
|
||||
steps:
|
||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
||||
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
|
||||
with:
|
||||
go-version: '^1.20'
|
||||
check-latest: true
|
||||
|
||||
16
cmd/utils.go
16
cmd/utils.go
@ -246,6 +246,20 @@ func maybeFile(str string) bool {
|
||||
return result
|
||||
}
|
||||
|
||||
func expressionLikeArg(str string) bool {
|
||||
return strings.HasPrefix(str, ".") && !strings.HasPrefix(str, "./") && !strings.HasPrefix(str, "../")
|
||||
}
|
||||
|
||||
func firstArgIsExpression(args []string, firstArgIsFile bool) bool {
|
||||
if len(args) == 0 || args[0] == "-" {
|
||||
return false
|
||||
}
|
||||
if !firstArgIsFile {
|
||||
return true
|
||||
}
|
||||
return len(args) > 1 && expressionLikeArg(args[0])
|
||||
}
|
||||
|
||||
func processStdInArgs(args []string) []string {
|
||||
stat, err := os.Stdin.Stat()
|
||||
if err != nil {
|
||||
@ -295,7 +309,7 @@ func processArgs(originalArgs []string) (string, []string, error) {
|
||||
}
|
||||
|
||||
yqlib.GetLogger().Debugf("processed args: %v", args)
|
||||
if expression == "" && len(args) > 0 && args[0] != "-" && !maybeFile(args[0]) {
|
||||
if expression == "" && firstArgIsExpression(args, maybeFirstArgIsAFile) {
|
||||
yqlib.GetLogger().Debugf("assuming expression is '%v'", args[0])
|
||||
expression = args[0]
|
||||
args = args[1:]
|
||||
|
||||
@ -77,6 +77,9 @@ func TestMaybeFile(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestProcessArgs(t *testing.T) {
|
||||
workDir := t.TempDir()
|
||||
t.Chdir(workDir)
|
||||
|
||||
// Create a temporary file for testing
|
||||
tempFile, err := os.CreateTemp("", "test")
|
||||
if err != nil {
|
||||
@ -96,6 +99,13 @@ func TestProcessArgs(t *testing.T) {
|
||||
}
|
||||
tempYqFile.Close()
|
||||
|
||||
if err := os.WriteFile(".version", []byte("boom"), 0o600); err != nil {
|
||||
t.Fatalf("Failed to write .version file: %v", err)
|
||||
}
|
||||
if err := os.WriteFile("data.yml", []byte("version: 1.1.1"), 0o600); err != nil {
|
||||
t.Fatalf("Failed to write data.yml file: %v", err)
|
||||
}
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
args []string
|
||||
@ -132,6 +142,33 @@ func TestProcessArgs(t *testing.T) {
|
||||
expectedArgs: []string{"file1"},
|
||||
expectError: false,
|
||||
},
|
||||
{
|
||||
name: "expression-looking file as first arg before file",
|
||||
args: []string{".version", "data.yml"},
|
||||
forceExpression: "",
|
||||
expressionFile: "",
|
||||
expectedExpr: ".version",
|
||||
expectedArgs: []string{"data.yml"},
|
||||
expectError: false,
|
||||
},
|
||||
{
|
||||
name: "expression-looking file as first arg before stdin",
|
||||
args: []string{".version", "-"},
|
||||
forceExpression: "",
|
||||
expressionFile: "",
|
||||
expectedExpr: ".version",
|
||||
expectedArgs: []string{"-"},
|
||||
expectError: false,
|
||||
},
|
||||
{
|
||||
name: "path-qualified expression-looking file stays file arg",
|
||||
args: []string{"./.version", "data.yml"},
|
||||
forceExpression: "",
|
||||
expressionFile: "",
|
||||
expectedExpr: "",
|
||||
expectedArgs: []string{"./.version", "data.yml"},
|
||||
expectError: false,
|
||||
},
|
||||
{
|
||||
name: "file as first arg",
|
||||
args: []string{tempFile.Name()},
|
||||
|
||||
4
go.mod
4
go.mod
@ -13,13 +13,13 @@ require (
|
||||
github.com/hashicorp/hcl/v2 v2.24.0
|
||||
github.com/jinzhu/copier v0.4.0
|
||||
github.com/magiconair/properties v1.8.10
|
||||
github.com/pelletier/go-toml/v2 v2.4.0
|
||||
github.com/pelletier/go-toml/v2 v2.4.2
|
||||
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
|
||||
github.com/spf13/cobra v1.10.2
|
||||
github.com/spf13/pflag v1.0.10
|
||||
github.com/yuin/gopher-lua v1.1.2
|
||||
github.com/zclconf/go-cty v1.18.1
|
||||
go.yaml.in/yaml/v4 v4.0.0-rc.5
|
||||
go.yaml.in/yaml/v4 v4.0.0-rc.6
|
||||
golang.org/x/mod v0.37.0
|
||||
golang.org/x/net v0.56.0
|
||||
golang.org/x/text v0.38.0
|
||||
|
||||
8
go.sum
8
go.sum
@ -46,8 +46,8 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
|
||||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||
github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0=
|
||||
github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0=
|
||||
github.com/pelletier/go-toml/v2 v2.4.0 h1:Mwu0mAkUKbittDs3/ADDWXqMmq3EOK2VHiuCkV00Row=
|
||||
github.com/pelletier/go-toml/v2 v2.4.0/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
|
||||
github.com/pelletier/go-toml/v2 v2.4.2 h1:M2fKKbmyvI+hGId/D0W64qDBMVhJnNR10O5gIbMc//Q=
|
||||
github.com/pelletier/go-toml/v2 v2.4.2/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
|
||||
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e h1:aoZm08cpOy4WuID//EZDgcC4zIxODThtZNPirFr42+A=
|
||||
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
@ -68,8 +68,8 @@ github.com/zclconf/go-cty v1.18.1/go.mod h1:qpnV6EDNgC1sns/AleL1fvatHw72j+S+nS+M
|
||||
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
|
||||
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
|
||||
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
|
||||
go.yaml.in/yaml/v4 v4.0.0-rc.5 h1:JVliQq9EGOYaTgMi+k8BhUJyqcGk4ZqeuiN1Cirba9c=
|
||||
go.yaml.in/yaml/v4 v4.0.0-rc.5/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0=
|
||||
go.yaml.in/yaml/v4 v4.0.0-rc.6 h1:1h7H1ohdUh93/FyE4YaDa1Zh64K6VVbjF4K6WUxMtH4=
|
||||
go.yaml.in/yaml/v4 v4.0.0-rc.6/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0=
|
||||
golang.org/x/mod v0.37.0 h1:vF1DjpVEshcIqoEaauuHebaLk1O1forxjxBaVn884JQ=
|
||||
golang.org/x/mod v0.37.0/go.mod h1:m8S8VeM9r4dzDwjrKO0a1sZP3YjeMamRRlD+fmR2Q/0=
|
||||
golang.org/x/net v0.56.0 h1:Rw8j/hFzGvJUZwNBXnAtf5sVDVt+65SK2C7IxCxZt5o=
|
||||
|
||||
Loading…
Reference in New Issue
Block a user