2021-09-27 00:38:15 +00:00
|
|
|
package schema_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-04-19 08:40:48 +00:00
|
|
|
"os"
|
2021-09-27 00:38:15 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2021-10-12 07:25:13 +00:00
|
|
|
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/schema"
|
2021-09-27 00:38:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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",
|
|
|
|
},
|
2022-05-30 23:12:18 +00:00
|
|
|
{
|
|
|
|
name: "Platform",
|
|
|
|
testFile: ".woodpecker/test-platform.yml",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Labels",
|
|
|
|
testFile: ".woodpecker/test-labels.yml",
|
|
|
|
},
|
2023-04-29 12:49:41 +00:00
|
|
|
{
|
|
|
|
name: "Map and Sequence Merge", // https://woodpecker-ci.org/docs/next/usage/advanced-yaml-syntax
|
|
|
|
testFile: ".woodpecker/test-merge-map-and-sequence.yml",
|
|
|
|
},
|
2021-09-27 00:38:15 +00:00
|
|
|
{
|
|
|
|
name: "Broken Config",
|
|
|
|
testFile: ".woodpecker/test-broken.yml",
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range testTable {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2022-04-19 08:40:48 +00:00
|
|
|
fi, err := os.Open(tt.testFile)
|
|
|
|
assert.NoError(t, err, "could not open test file")
|
|
|
|
defer fi.Close()
|
|
|
|
configErrors, err := schema.Lint(fi)
|
2021-09-27 00:38:15 +00:00
|
|
|
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))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|