mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 14:34:26 +00:00
395 lines
7.6 KiB
Go
395 lines
7.6 KiB
Go
// Copyright 2018 Drone.IO Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/model"
|
|
"github.com/woodpecker-ci/woodpecker/remote"
|
|
)
|
|
|
|
func TestMultilineEnvsubst(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: &model.Build{
|
|
Message: `aaa
|
|
bbb`,
|
|
},
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
xxx:
|
|
image: scratch
|
|
yyy: ${DRONE_COMMIT_MESSAGE}
|
|
`)},
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
yyy: ${DRONE_COMMIT_MESSAGE}
|
|
`)},
|
|
}}
|
|
|
|
if buildItems, err := b.Build(); err != nil {
|
|
t.Fatal(err)
|
|
} else {
|
|
fmt.Println(buildItems)
|
|
}
|
|
}
|
|
|
|
func TestMultiPipeline(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: &model.Build{},
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
xxx:
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems) != 2 {
|
|
t.Fatal("Should have generated 2 buildItems")
|
|
}
|
|
}
|
|
|
|
func TestDependsOn(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: &model.Build{},
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Name: "lint", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Name: "test", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
deploy:
|
|
image: scratch
|
|
|
|
depends_on:
|
|
- lint
|
|
- test
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems[0].DependsOn) != 2 {
|
|
t.Fatal("Should have 3 dependencies")
|
|
}
|
|
if buildItems[0].DependsOn[1] != "test" {
|
|
t.Fatal("Should depend on test")
|
|
}
|
|
}
|
|
|
|
func TestRunsOn(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: &model.Build{},
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
deploy:
|
|
image: scratch
|
|
|
|
runs_on:
|
|
- success
|
|
- failure
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems[0].RunsOn) != 2 {
|
|
t.Fatal("Should run on success and failure")
|
|
}
|
|
if buildItems[0].RunsOn[1] != "failure" {
|
|
t.Fatal("Should run on failure")
|
|
}
|
|
}
|
|
|
|
func TestBranchFilter(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: &model.Build{Branch: "dev"},
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
xxx:
|
|
image: scratch
|
|
branches: master
|
|
`)},
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems) != 2 {
|
|
t.Fatal("Should have generated 2 buildItems")
|
|
}
|
|
if buildItems[0].Proc.State != model.StatusSkipped {
|
|
t.Fatal("Should not run on dev branch")
|
|
}
|
|
for _, child := range buildItems[0].Proc.Children {
|
|
if child.State != model.StatusSkipped {
|
|
t.Fatal("Children should skipped status too")
|
|
}
|
|
}
|
|
if buildItems[1].Proc.State != model.StatusPending {
|
|
t.Fatal("Should run on dev branch")
|
|
}
|
|
}
|
|
|
|
func TestZeroSteps(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
build := &model.Build{Branch: "dev"}
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: build,
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Data: []byte(`
|
|
skip_clone: true
|
|
pipeline:
|
|
build:
|
|
when:
|
|
branch: notdev
|
|
image: scratch
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems) != 0 {
|
|
t.Fatal("Should not generate a build item if there are no steps")
|
|
}
|
|
}
|
|
|
|
func TestZeroStepsAsMultiPipelineDeps(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
build := &model.Build{Branch: "dev"}
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: build,
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Name: "zerostep", Data: []byte(`
|
|
skip_clone: true
|
|
pipeline:
|
|
build:
|
|
when:
|
|
branch: notdev
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Name: "justastep", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Name: "shouldbefiltered", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
depends_on: [ zerostep ]
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems) != 1 {
|
|
t.Fatal("Zerostep and the step that depends on it should not generate a build item")
|
|
}
|
|
if "justastep" != buildItems[0].Proc.Name {
|
|
t.Fatal("justastep should have been generated")
|
|
}
|
|
}
|
|
|
|
func TestZeroStepsAsMultiPipelineTransitiveDeps(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
build := &model.Build{Branch: "dev"}
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: build,
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Name: "zerostep", Data: []byte(`
|
|
skip_clone: true
|
|
pipeline:
|
|
build:
|
|
when:
|
|
branch: notdev
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Name: "justastep", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
&remote.FileMeta{Name: "shouldbefiltered", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
depends_on: [ zerostep ]
|
|
`)},
|
|
&remote.FileMeta{Name: "shouldbefilteredtoo", Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
depends_on: [ shouldbefiltered ]
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(buildItems) != 1 {
|
|
t.Fatal("Zerostep and the step that depends on it, and the one depending on it should not generate a build item")
|
|
}
|
|
if "justastep" != buildItems[0].Proc.Name {
|
|
t.Fatal("justastep should have been generated")
|
|
}
|
|
}
|
|
|
|
func TestTree(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
build := &model.Build{}
|
|
|
|
b := procBuilder{
|
|
Repo: &model.Repo{},
|
|
Curr: build,
|
|
Last: &model.Build{},
|
|
Netrc: &model.Netrc{},
|
|
Secs: []*model.Secret{},
|
|
Regs: []*model.Registry{},
|
|
Link: "",
|
|
Yamls: []*remote.FileMeta{
|
|
&remote.FileMeta{Data: []byte(`
|
|
pipeline:
|
|
build:
|
|
image: scratch
|
|
`)},
|
|
},
|
|
}
|
|
|
|
buildItems, err := b.Build()
|
|
build = setBuildStepsOnBuild(build, buildItems)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(build.Procs) != 3 {
|
|
t.Fatal("Should generate three in total")
|
|
}
|
|
if build.Procs[1].PPID != 1 {
|
|
t.Fatal("Clone step should be a children of the stage")
|
|
}
|
|
if build.Procs[2].PPID != 1 {
|
|
t.Fatal("Build step should be a children of the stage")
|
|
}
|
|
}
|