/* 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) } } } func Test_ParsePipelineConfigChoiceParameters(t *testing.T) { case1 := ` BIOGRAPHY PERSON PASSWORD TOGGLE false 7 10 -1 -1 PERSON Who should I say hello to? Mr Jenkins false BIOGRAPHY Enter some information about the person false TOGGLE Toggle this value true PASSWORD Enter a password {AQAAABAAAAAQHD/HoXKklrRKtlQ5ylr1lgN1dj7im57I8SGfkLIe17s=} 1 x 1 2 3 true false ` case2 := ` BIOGRAPHY PERSON PASSWORD TOGGLE false 7 10 -1 -1 PERSON Who should I say hello to? Mr Jenkins false BIOGRAPHY Enter some information about the person false TOGGLE Toggle this value true PASSWORD Enter a password {AQAAABAAAAAQHD/HoXKklrRKtlQ5ylr1lgN1dj7im57I8SGfkLIe17s=} 1 x 1 2 3 true false ` case1Pipeline, err := parsePipelineConfigXml(case1) if err != nil { t.Fatal(err) } case2Pipeline, err := parsePipelineConfigXml(case2) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(case1Pipeline, case2Pipeline) { t.Fatalf("case1 [%+v] case2 [%+v] should equal ", case1Pipeline, case2Pipeline) } } func Test_ValidatePipelineConfig(t *testing.T) { rightInput := []*ProjectPipeline{ { Type: "pipeline", Pipeline: &NoScmPipeline{ Name: "test", Parameters: nil, Jenkinsfile: "echo 1", }, }, { Type: "multi-branch-pipeline", MultiBranchPipeline: &MultiBranchPipeline{ Name: "multibranch-test", Description: "xx", }, }, { Type: "pipeline", Pipeline: &NoScmPipeline{ Name: "test2", Description: "", Discarder: nil, Parameters: &Parameters{ &Parameter{ Name: "xx", Type: "yy", }, &Parameter{ Name: "tt", DefaultValue: "", Type: "", Description: "ccc", }, }, DisableConcurrent: false, TimerTrigger: nil, RemoteTrigger: nil, Jenkinsfile: "", }, }, } errorInput := []*ProjectPipeline{ { Type: "xx", Pipeline: &NoScmPipeline{ Name: "", Parameters: nil, Jenkinsfile: "echo 1", }, }, { Type: "pipeline", Pipeline: &NoScmPipeline{ Name: "", Parameters: nil, Jenkinsfile: "echo 1", }, }, { Type: "multi-branch-pipeline", MultiBranchPipeline: &MultiBranchPipeline{ Name: "", Description: "xx", }, }, { Type: "pipeline", Pipeline: &NoScmPipeline{ Name: "test2", Description: "", Discarder: nil, Parameters: &Parameters{ &Parameter{ Name: "", Type: "yy", }, &Parameter{ Name: "tt", Description: "ccc", }, }, Jenkinsfile: "", }, }, } for _, input := range rightInput { err := ValidatePipelineConfig(input) if err != nil { t.Fatal(err) } } for _, input := range errorInput { err := ValidatePipelineConfig(input) if err == nil { t.Fatalf("%+v, is an error configuration", input) } } }