mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 11:35:51 +00:00
bde26196d0
Signed-off-by: Cosmin Cojocar <gcojocar@adobe.com>
45 lines
1.4 KiB
Go
45 lines
1.4 KiB
Go
package gosec_test
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"github.com/securego/gosec/v2/cmd/vflag"
|
|
)
|
|
|
|
var _ = Describe("Cli", func() {
|
|
Context("vflag test", func() {
|
|
It("value must be empty as parameter value contains invalid character", func() {
|
|
os.Args = []string{"gosec", "-flag1=-incorrect"}
|
|
f := vflag.ValidatedFlag{}
|
|
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ContinueOnError)
|
|
flag.Var(&f, "falg1", "")
|
|
flag.CommandLine.Init("flag1", flag.ContinueOnError)
|
|
flag.Parse()
|
|
Expect(flag.Parsed()).Should(BeTrue())
|
|
Expect(f.Value).Should(Equal(``))
|
|
})
|
|
It("value must be empty as parameter value contains invalid character without equal sign", func() {
|
|
os.Args = []string{"gosec", "-test2= -incorrect"}
|
|
f := vflag.ValidatedFlag{}
|
|
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ContinueOnError)
|
|
flag.Var(&f, "test2", "")
|
|
flag.CommandLine.Init("test2", flag.ContinueOnError)
|
|
flag.Parse()
|
|
Expect(flag.Parsed()).Should(BeTrue())
|
|
Expect(f.Value).Should(Equal(``))
|
|
})
|
|
It("value must not be empty as parameter value contains valid character", func() {
|
|
os.Args = []string{"gosec", "-test3=correct"}
|
|
f := vflag.ValidatedFlag{}
|
|
flag.Var(&f, "test3", "")
|
|
flag.CommandLine.Init("test3", flag.ContinueOnError)
|
|
flag.Parse()
|
|
Expect(flag.Parsed()).Should(BeTrue())
|
|
Expect(f.Value).Should(Equal(`correct`))
|
|
})
|
|
})
|
|
})
|