mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
204d05f447
close #1192
107 lines
2.2 KiB
Go
107 lines
2.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: "Map and Sequence Merge", // https://woodpecker-ci.org/docs/next/usage/advanced-yaml-syntax
|
|
testFile: ".woodpecker/test-merge-map-and-sequence.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))
|
|
}
|
|
})
|
|
}
|
|
}
|