194 lines
4.3 KiB
Go
194 lines
4.3 KiB
Go
/*
|
|
Copyright 2019 The Volcano 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 queue
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"volcano.sh/volcano/pkg/apis/scheduling/v1beta1"
|
|
)
|
|
|
|
func getTestQueueHTTPServer(t *testing.T) *httptest.Server {
|
|
|
|
response := v1beta1.Queue{}
|
|
|
|
response.Name = "testQueue"
|
|
response.Spec.Weight = int32(2)
|
|
|
|
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
val, err := json.Marshal(response)
|
|
if err == nil {
|
|
w.Write(val)
|
|
}
|
|
})
|
|
return httptest.NewServer(handler)
|
|
}
|
|
|
|
func getTestQueueListHTTPServer(t *testing.T) *httptest.Server {
|
|
|
|
response := v1beta1.QueueList{}
|
|
|
|
response.Items = []v1beta1.Queue{
|
|
{
|
|
ObjectMeta: v1.ObjectMeta{
|
|
Name: "testQueue",
|
|
},
|
|
Spec: v1beta1.QueueSpec{
|
|
Weight: int32(2),
|
|
},
|
|
},
|
|
}
|
|
|
|
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
val, err := json.Marshal(response)
|
|
if err == nil {
|
|
w.Write(val)
|
|
}
|
|
})
|
|
return httptest.NewServer(handler)
|
|
}
|
|
|
|
func getCommonFlags(master string) commonFlags {
|
|
return commonFlags{
|
|
Master: master,
|
|
}
|
|
}
|
|
|
|
func TestCreateQueue(t *testing.T) {
|
|
InitCreateFlags(&cobra.Command{})
|
|
server := getTestQueueHTTPServer(t)
|
|
defer server.Close()
|
|
|
|
createQueueFlags.commonFlags = getCommonFlags(server.URL)
|
|
createQueueFlags.Name = "testQueue"
|
|
createQueueFlags.Weight = int32(2)
|
|
|
|
testCases := []struct {
|
|
Name string
|
|
ExpectValue error
|
|
}{
|
|
{
|
|
Name: "CreateQueue",
|
|
ExpectValue: nil,
|
|
},
|
|
}
|
|
for _, testcase := range testCases {
|
|
err := CreateQueue()
|
|
if err != nil {
|
|
t.Errorf("(%s): expected: %v, got %v ", testcase.Name, testcase.ExpectValue, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGetQueue(t *testing.T) {
|
|
InitGetFlags(&cobra.Command{})
|
|
server := getTestQueueHTTPServer(t)
|
|
defer server.Close()
|
|
|
|
getQueueFlags.commonFlags = getCommonFlags(server.URL)
|
|
|
|
testCases := []struct {
|
|
Name string
|
|
ExpectValue error
|
|
QueueName string
|
|
}{
|
|
{
|
|
Name: "GetQueue",
|
|
ExpectValue: nil,
|
|
QueueName: "testQueue",
|
|
},
|
|
{
|
|
Name: "",
|
|
ExpectValue: fmt.Errorf("name is mandatory to get the particular queue details"),
|
|
QueueName: "",
|
|
},
|
|
}
|
|
for _, testcase := range testCases {
|
|
getQueueFlags.Name = testcase.QueueName
|
|
err := GetQueue()
|
|
if err != nil && (err.Error() != testcase.ExpectValue.Error()) {
|
|
t.Errorf("(%s): expected: %v, got %v ", testcase.Name, testcase.ExpectValue, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestListQueue_empty(t *testing.T) {
|
|
InitListFlags(&cobra.Command{})
|
|
server := getTestQueueHTTPServer(t)
|
|
defer server.Close()
|
|
|
|
listQueueFlags.commonFlags = getCommonFlags(server.URL)
|
|
|
|
testCases := []struct {
|
|
Name string
|
|
ExpectValue error
|
|
QueueName string
|
|
}{
|
|
{
|
|
Name: "GetQueue",
|
|
ExpectValue: nil,
|
|
},
|
|
}
|
|
for _, testcase := range testCases {
|
|
err := ListQueue()
|
|
if err != nil && (err.Error() != testcase.ExpectValue.Error()) {
|
|
t.Errorf("(%s): expected: %v, got %v ", testcase.Name, testcase.ExpectValue, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestListQueue_nonempty(t *testing.T) {
|
|
InitListFlags(&cobra.Command{})
|
|
server := getTestQueueListHTTPServer(t)
|
|
defer server.Close()
|
|
|
|
listQueueFlags.commonFlags = getCommonFlags(server.URL)
|
|
|
|
testCases := []struct {
|
|
Name string
|
|
ExpectValue error
|
|
QueueName string
|
|
}{
|
|
{
|
|
Name: "GetQueue",
|
|
ExpectValue: nil,
|
|
QueueName: "testQueue",
|
|
},
|
|
{
|
|
Name: "",
|
|
ExpectValue: fmt.Errorf("name is mandatory to get the particular queue details"),
|
|
QueueName: "",
|
|
},
|
|
}
|
|
for _, testcase := range testCases {
|
|
err := ListQueue()
|
|
if err != nil && err.Error() != testcase.ExpectValue.Error() {
|
|
t.Errorf("(%s): expected: %v, got %v ", testcase.Name, testcase.ExpectValue, err)
|
|
}
|
|
}
|
|
}
|