1. refactor kubesphere dependency service client creation, we can disable dependency by config 2. dependencies can be configured by configuration file 3. refactor cmd package using cobra.Command, so we can use hypersphere to invoke command sepearately. Later we only need to build one image to contains all kubesphere core components. One command to rule them all! 4. live reloading configuration currently not implemented
634 lines
15 KiB
Go
634 lines
15 KiB
Go
/*
|
|
Copyright 2019 The KubeSphere Authors.
|
|
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 devops
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func Test_NoScmPipelineConfig(t *testing.T) {
|
|
inputs := []*NoScmPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
DisableConcurrent: true,
|
|
},
|
|
}
|
|
for _, input := range inputs {
|
|
outputString, err := createPipelineConfigXml(input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parsePipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_NoScmPipelineConfig_Discarder(t *testing.T) {
|
|
inputs := []*NoScmPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
Discarder: &DiscarderProperty{
|
|
"3", "5",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
Discarder: &DiscarderProperty{
|
|
"3", "",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
Discarder: &DiscarderProperty{
|
|
"", "21321",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
Discarder: &DiscarderProperty{
|
|
"", "",
|
|
},
|
|
},
|
|
}
|
|
for _, input := range inputs {
|
|
outputString, err := createPipelineConfigXml(input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parsePipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_NoScmPipelineConfig_Param(t *testing.T) {
|
|
inputs := []*NoScmPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
Parameters: &Parameters{
|
|
&Parameter{
|
|
Name: "d",
|
|
DefaultValue: "a\nb",
|
|
Type: "choice",
|
|
Description: "fortest",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
Parameters: &Parameters{
|
|
&Parameter{
|
|
Name: "a",
|
|
DefaultValue: "abc",
|
|
Type: "string",
|
|
Description: "fortest",
|
|
},
|
|
&Parameter{
|
|
Name: "b",
|
|
DefaultValue: "false",
|
|
Type: "boolean",
|
|
Description: "fortest",
|
|
},
|
|
&Parameter{
|
|
Name: "c",
|
|
DefaultValue: "password \n aaa",
|
|
Type: "text",
|
|
Description: "fortest",
|
|
},
|
|
&Parameter{
|
|
Name: "d",
|
|
DefaultValue: "a\nb",
|
|
Type: "choice",
|
|
Description: "fortest",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, input := range inputs {
|
|
outputString, err := createPipelineConfigXml(input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parsePipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_NoScmPipelineConfig_Trigger(t *testing.T) {
|
|
inputs := []*NoScmPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
TimerTrigger: &TimerTrigger{
|
|
Cron: "1 1 1 * * *",
|
|
},
|
|
},
|
|
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
RemoteTrigger: &RemoteTrigger{
|
|
Token: "abc",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
Jenkinsfile: "node{echo 'hello'}",
|
|
TimerTrigger: &TimerTrigger{
|
|
Cron: "1 1 1 * * *",
|
|
},
|
|
RemoteTrigger: &RemoteTrigger{
|
|
Token: "abc",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, input := range inputs {
|
|
outputString, err := createPipelineConfigXml(input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parsePipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_MultiBranchPipelineConfig(t *testing.T) {
|
|
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "git",
|
|
GitSource: &GitSource{},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
GitHubSource: &GithubSource{},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "single_svn",
|
|
SingleSvnSource: &SingleSvnSource{},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "svn",
|
|
SvnSource: &SvnSource{},
|
|
},
|
|
}
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_MultiBranchPipelineConfig_Discarder(t *testing.T) {
|
|
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "git",
|
|
Discarder: &DiscarderProperty{
|
|
DaysToKeep: "1",
|
|
NumToKeep: "2",
|
|
},
|
|
GitSource: &GitSource{},
|
|
},
|
|
}
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_MultiBranchPipelineConfig_TimerTrigger(t *testing.T) {
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "git",
|
|
TimerTrigger: &TimerTrigger{
|
|
Interval: "12345566",
|
|
},
|
|
GitSource: &GitSource{},
|
|
},
|
|
}
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_MultiBranchPipelineConfig_Source(t *testing.T) {
|
|
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "git",
|
|
TimerTrigger: &TimerTrigger{
|
|
Interval: "12345566",
|
|
},
|
|
GitSource: &GitSource{
|
|
Url: "https://github.com/kubesphere/devops",
|
|
CredentialId: "git",
|
|
DiscoverBranches: true,
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
TimerTrigger: &TimerTrigger{
|
|
Interval: "12345566",
|
|
},
|
|
GitHubSource: &GithubSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "bitbucket_server",
|
|
TimerTrigger: &TimerTrigger{
|
|
Interval: "12345566",
|
|
},
|
|
BitbucketServerSource: &BitbucketServerSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "svn",
|
|
TimerTrigger: &TimerTrigger{
|
|
Interval: "12345566",
|
|
},
|
|
SvnSource: &SvnSource{
|
|
Remote: "https://api.svn.com/bcd",
|
|
CredentialId: "svn",
|
|
Excludes: "truck",
|
|
Includes: "tag/*",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "single_svn",
|
|
TimerTrigger: &TimerTrigger{
|
|
Interval: "12345566",
|
|
},
|
|
SingleSvnSource: &SingleSvnSource{
|
|
Remote: "https://api.svn.com/bcd",
|
|
CredentialId: "svn",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_MultiBranchPipelineCloneConfig(t *testing.T) {
|
|
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "git",
|
|
GitSource: &GitSource{
|
|
Url: "https://github.com/kubesphere/devops",
|
|
CredentialId: "git",
|
|
DiscoverBranches: true,
|
|
CloneOption: &GitCloneOption{
|
|
Shallow: false,
|
|
Depth: 3,
|
|
Timeout: 20,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
GitHubSource: &GithubSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
CloneOption: &GitCloneOption{
|
|
Shallow: false,
|
|
Depth: 3,
|
|
Timeout: 20,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func Test_MultiBranchPipelineRegexFilter(t *testing.T) {
|
|
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "git",
|
|
GitSource: &GitSource{
|
|
Url: "https://github.com/kubesphere/devops",
|
|
CredentialId: "git",
|
|
DiscoverBranches: true,
|
|
RegexFilter: ".*",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
GitHubSource: &GithubSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
RegexFilter: ".*",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func Test_MultiBranchPipelineMultibranchTrigger(t *testing.T) {
|
|
|
|
inputs := []*MultiBranchPipeline{
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
GitHubSource: &GithubSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
RegexFilter: ".*",
|
|
},
|
|
MultiBranchJobTrigger: &MultiBranchJobTrigger{
|
|
CreateActionJobsToTrigger: "abc",
|
|
DeleteActionJobsToTrigger: "ddd",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
GitHubSource: &GithubSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
RegexFilter: ".*",
|
|
},
|
|
MultiBranchJobTrigger: &MultiBranchJobTrigger{
|
|
CreateActionJobsToTrigger: "abc",
|
|
},
|
|
},
|
|
{
|
|
Name: "",
|
|
Description: "for test",
|
|
ScriptPath: "Jenkinsfile",
|
|
SourceType: "github",
|
|
GitHubSource: &GithubSource{
|
|
Owner: "kubesphere",
|
|
Repo: "devops",
|
|
CredentialId: "github",
|
|
ApiUri: "https://api.github.com",
|
|
DiscoverBranches: 1,
|
|
DiscoverPRFromOrigin: 2,
|
|
DiscoverPRFromForks: &DiscoverPRFromForks{
|
|
Strategy: 1,
|
|
Trust: 1,
|
|
},
|
|
RegexFilter: ".*",
|
|
},
|
|
MultiBranchJobTrigger: &MultiBranchJobTrigger{
|
|
DeleteActionJobsToTrigger: "ddd",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, input := range inputs {
|
|
outputString, err := createMultiBranchPipelineConfigXml("", input)
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
output, err := parseMultiBranchPipelineConfigXml(outputString)
|
|
|
|
if err != nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
if !reflect.DeepEqual(input, output) {
|
|
t.Fatalf("input [%+v] output [%+v] should equal ", input, output)
|
|
}
|
|
}
|
|
|
|
}
|