mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-01 22:31:15 +00:00
71b9179078
* Move Vargs to Settings * Allow both until deprecation * Add more tests * Adjust schema * Add missing detach option, fix schema tests Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Anbraten <anton@ju60.de>
133 lines
3.6 KiB
Go
133 lines
3.6 KiB
Go
package linter
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml"
|
|
)
|
|
|
|
func TestLint(t *testing.T) {
|
|
testdata := `
|
|
pipeline:
|
|
build:
|
|
image: docker
|
|
privileged: true
|
|
network_mode: host
|
|
volumes:
|
|
- /tmp:/tmp
|
|
commands:
|
|
- go build
|
|
- go test
|
|
publish:
|
|
image: plugins/docker
|
|
repo: foo/bar
|
|
settings:
|
|
foo: bar
|
|
services:
|
|
redis:
|
|
image: redis
|
|
entrypoint: [ /bin/redis-server ]
|
|
command: [ -v ]
|
|
`
|
|
|
|
conf, err := yaml.ParseString(testdata)
|
|
if err != nil {
|
|
t.Fatalf("Cannot unmarshal yaml %q. Error: %s", testdata, err)
|
|
}
|
|
if err := New(WithTrusted(true)).Lint(conf); err != nil {
|
|
t.Errorf("Expected lint returns no errors, got %q", err)
|
|
}
|
|
}
|
|
|
|
func TestLintErrors(t *testing.T) {
|
|
testdata := []struct {
|
|
from string
|
|
want string
|
|
}{
|
|
{
|
|
from: "",
|
|
want: "Invalid or missing pipeline section",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: '' } }",
|
|
want: "Invalid or missing image",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, privileged: true } }",
|
|
want: "Insufficient privileges to use privileged mode",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, shm_size: 10gb } }",
|
|
want: "Insufficient privileges to override shm_size",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, dns: [ 8.8.8.8 ] } }",
|
|
want: "Insufficient privileges to use custom dns",
|
|
},
|
|
|
|
{
|
|
from: "pipeline: { build: { image: golang, dns_search: [ example.com ] } }",
|
|
want: "Insufficient privileges to use dns_search",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, devices: [ '/dev/tty0:/dev/tty0' ] } }",
|
|
want: "Insufficient privileges to use devices",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, extra_hosts: [ 'somehost:162.242.195.82' ] } }",
|
|
want: "Insufficient privileges to use extra_hosts",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, network_mode: host } }",
|
|
want: "Insufficient privileges to use network_mode",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, networks: [ outside, default ] } }",
|
|
want: "Insufficient privileges to use networks",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, volumes: [ '/opt/data:/var/lib/mysql' ] } }",
|
|
want: "Insufficient privileges to use volumes",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, network_mode: 'container:name' } }",
|
|
want: "Insufficient privileges to use network_mode",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, sysctls: [ net.core.somaxconn=1024 ] } }",
|
|
want: "Insufficient privileges to use sysctls",
|
|
},
|
|
// cannot override entypoint, command for script steps
|
|
{
|
|
from: "pipeline: { build: { image: golang, commands: [ 'go build' ], entrypoint: [ '/bin/bash' ] } }",
|
|
want: "Cannot override container entrypoint",
|
|
},
|
|
{
|
|
from: "pipeline: { build: { image: golang, commands: [ 'go build' ], command: [ '/bin/bash' ] } }",
|
|
want: "Cannot override container command",
|
|
},
|
|
// cannot override entypoint, command for plugin steps
|
|
{
|
|
from: "pipeline: { publish: { image: plugins/docker, repo: foo/bar, entrypoint: [ '/bin/bash' ] } }",
|
|
want: "Cannot override container entrypoint",
|
|
},
|
|
{
|
|
from: "pipeline: { publish: { image: plugins/docker, repo: foo/bar, command: [ '/bin/bash' ] } }",
|
|
want: "Cannot override container command",
|
|
},
|
|
}
|
|
|
|
for _, test := range testdata {
|
|
conf, err := yaml.ParseString(test.from)
|
|
if err != nil {
|
|
t.Fatalf("Cannot unmarshal yaml %q. Error: %s", test.from, err)
|
|
}
|
|
|
|
lerr := New().Lint(conf)
|
|
if lerr == nil {
|
|
t.Errorf("Expected lint error for configuration %q", test.from)
|
|
} else if lerr.Error() != test.want {
|
|
t.Errorf("Want error %q, got %q", test.want, lerr.Error())
|
|
}
|
|
}
|
|
}
|