131 lines
3.5 KiB
Go
131 lines
3.5 KiB
Go
/*
|
|
Copyright 2020 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 (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"kubesphere.io/kubesphere/pkg/simple/client/devops"
|
|
"kubesphere.io/kubesphere/pkg/simple/client/devops/fake"
|
|
)
|
|
|
|
const baseUrl = "http://127.0.0.1/kapis/devops.kubesphere.io/v1alpha2/"
|
|
|
|
func TestGetNodesDetail(t *testing.T) {
|
|
fakeData := make(map[string]interface{})
|
|
PipelineRunNodes := []devops.PipelineRunNodes{
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "1",
|
|
Result: "SUCCESS",
|
|
},
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "2",
|
|
Result: "SUCCESS",
|
|
},
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "3",
|
|
Result: "SUCCESS",
|
|
},
|
|
}
|
|
|
|
NodeSteps := []devops.NodeSteps{
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "1",
|
|
Result: "SUCCESS",
|
|
},
|
|
}
|
|
|
|
fakeData["project1-pipeline1-run1"] = PipelineRunNodes
|
|
fakeData["project1-pipeline1-run1-1"] = NodeSteps
|
|
fakeData["project1-pipeline1-run1-2"] = NodeSteps
|
|
fakeData["project1-pipeline1-run1-3"] = NodeSteps
|
|
|
|
devopsClient := fake.NewFakeDevops(fakeData)
|
|
|
|
devopsOperator := NewDevopsOperator(devopsClient, nil, nil, nil, nil)
|
|
|
|
httpReq, _ := http.NewRequest(http.MethodGet, baseUrl+"devops/project1/pipelines/pipeline1/runs/run1/nodesdetail/?limit=10000", nil)
|
|
|
|
nodesDetails, err := devopsOperator.GetNodesDetail("project1", "pipeline1", "run1", httpReq)
|
|
if err != nil || nodesDetails == nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
|
|
for _, v := range nodesDetails {
|
|
if v.Steps[0].ID == "" {
|
|
t.Fatalf("Can not get any step.")
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGetBranchNodesDetail(t *testing.T) {
|
|
fakeData := make(map[string]interface{})
|
|
|
|
BranchPipelineRunNodes := []devops.BranchPipelineRunNodes{
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "1",
|
|
Result: "SUCCESS",
|
|
},
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "2",
|
|
Result: "SUCCESS",
|
|
},
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "3",
|
|
Result: "SUCCESS",
|
|
},
|
|
}
|
|
|
|
BranchNodeSteps := []devops.NodeSteps{
|
|
{
|
|
DisplayName: "Deploy to Kubernetes",
|
|
ID: "1",
|
|
Result: "SUCCESS",
|
|
},
|
|
}
|
|
|
|
fakeData["project1-pipeline1-branch1-run1"] = BranchPipelineRunNodes
|
|
fakeData["project1-pipeline1-branch1-run1-1"] = BranchNodeSteps
|
|
fakeData["project1-pipeline1-branch1-run1-2"] = BranchNodeSteps
|
|
fakeData["project1-pipeline1-branch1-run1-3"] = BranchNodeSteps
|
|
|
|
devopsClient := fake.NewFakeDevops(fakeData)
|
|
|
|
devopsOperator := NewDevopsOperator(devopsClient, nil, nil, nil, nil)
|
|
|
|
httpReq, _ := http.NewRequest(http.MethodGet, baseUrl+"devops/project1/pipelines/pipeline1/branchs/branch1/runs/run1/nodesdetail/?limit=10000", nil)
|
|
|
|
nodesDetails, err := devopsOperator.GetBranchNodesDetail("project1", "pipeline1", "branch1", "run1", httpReq)
|
|
if err != nil || nodesDetails == nil {
|
|
t.Fatalf("should not get error %+v", err)
|
|
}
|
|
|
|
for _, v := range nodesDetails {
|
|
if v.Steps[0].ID == "" {
|
|
t.Fatalf("Can not get any step.")
|
|
}
|
|
}
|
|
}
|