mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 14:01:26 +00:00
e79ad00826
Officially support labels for pipelines and agents to improve pipeline picking. * add pipeline labels * update, improve docs and add migration * update proto file --- closes #304 & #860
103 lines
2 KiB
Go
103 lines
2 KiB
Go
package schema_test
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/schema"
|
|
)
|
|
|
|
func TestSchema(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testTable := []struct {
|
|
name string
|
|
testFile string
|
|
fail bool
|
|
}{
|
|
{
|
|
name: "Branches",
|
|
testFile: ".woodpecker/test-branches.yml",
|
|
},
|
|
{
|
|
name: "Branches Array",
|
|
testFile: ".woodpecker/test-branches-array.yml",
|
|
},
|
|
{
|
|
name: "Branches exclude & include",
|
|
testFile: ".woodpecker/test-branches-exclude-include.yml",
|
|
},
|
|
{
|
|
name: "Clone",
|
|
testFile: ".woodpecker/test-clone.yml",
|
|
},
|
|
{
|
|
name: "Clone skip",
|
|
testFile: ".woodpecker/test-clone-skip.yml",
|
|
},
|
|
{
|
|
name: "Matrix",
|
|
testFile: ".woodpecker/test-matrix.yml",
|
|
},
|
|
{
|
|
name: "Multi Pipeline",
|
|
testFile: ".woodpecker/test-multi.yml",
|
|
},
|
|
{
|
|
name: "Plugin",
|
|
testFile: ".woodpecker/test-plugin.yml",
|
|
},
|
|
{
|
|
name: "Run on",
|
|
testFile: ".woodpecker/test-run-on.yml",
|
|
},
|
|
{
|
|
name: "Service",
|
|
testFile: ".woodpecker/test-service.yml",
|
|
},
|
|
{
|
|
name: "Step",
|
|
testFile: ".woodpecker/test-step.yml",
|
|
},
|
|
{
|
|
name: "When",
|
|
testFile: ".woodpecker/test-when.yml",
|
|
},
|
|
{
|
|
name: "Workspace",
|
|
testFile: ".woodpecker/test-workspace.yml",
|
|
},
|
|
{
|
|
name: "Platform",
|
|
testFile: ".woodpecker/test-platform.yml",
|
|
},
|
|
{
|
|
name: "Labels",
|
|
testFile: ".woodpecker/test-labels.yml",
|
|
},
|
|
{
|
|
name: "Broken Config",
|
|
testFile: ".woodpecker/test-broken.yml",
|
|
fail: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range testTable {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
fi, err := os.Open(tt.testFile)
|
|
assert.NoError(t, err, "could not open test file")
|
|
defer fi.Close()
|
|
configErrors, err := schema.Lint(fi)
|
|
if tt.fail {
|
|
if len(configErrors) == 0 {
|
|
assert.Error(t, err, "Expected config errors but got none")
|
|
}
|
|
} else {
|
|
assert.NoError(t, err, fmt.Sprintf("Validation failed: %v", configErrors))
|
|
}
|
|
})
|
|
}
|
|
}
|