
If a client says they want the name to be generated, a 409 is not appropriate (since they didn't specify a name). Instead, we should return the next most appropriate error, which is a 5xx error indicating the request failed but the client *should* try again. Since there is no 5xx error that exactly fits this purpose, use 500 with StatusReasonTryAgainLater set. This commit does not implement client retry on TryAgainLater, but clients should retry up to a certain number of times.
179 lines
4.7 KiB
Go
179 lines
4.7 KiB
Go
/*
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
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 errors
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
|
|
)
|
|
|
|
func TestErrorNew(t *testing.T) {
|
|
err := NewAlreadyExists("test", "1")
|
|
if !IsAlreadyExists(err) {
|
|
t.Errorf("expected to be %s", api.StatusReasonAlreadyExists)
|
|
}
|
|
if IsConflict(err) {
|
|
t.Errorf("expected to not be %s", api.StatusReasonConflict)
|
|
}
|
|
if IsNotFound(err) {
|
|
t.Errorf(fmt.Sprintf("expected to not be %s", api.StatusReasonNotFound))
|
|
}
|
|
if IsInvalid(err) {
|
|
t.Errorf("expected to not be %s", api.StatusReasonInvalid)
|
|
}
|
|
if IsBadRequest(err) {
|
|
t.Errorf("expected to not be %s", api.StatusReasonBadRequest)
|
|
}
|
|
if IsForbidden(err) {
|
|
t.Errorf("expected to not be %s", api.StatusReasonForbidden)
|
|
}
|
|
if IsTryAgainLater(err) {
|
|
t.Errorf("expected to not be %s", api.StatusReasonTryAgainLater)
|
|
}
|
|
if IsMethodNotSupported(err) {
|
|
t.Errorf("expected to not be %s", api.StatusReasonMethodNotAllowed)
|
|
}
|
|
|
|
if !IsConflict(NewConflict("test", "2", errors.New("message"))) {
|
|
t.Errorf("expected to be conflict")
|
|
}
|
|
if !IsNotFound(NewNotFound("test", "3")) {
|
|
t.Errorf("expected to be %s", api.StatusReasonNotFound)
|
|
}
|
|
if !IsInvalid(NewInvalid("test", "2", nil)) {
|
|
t.Errorf("expected to be %s", api.StatusReasonInvalid)
|
|
}
|
|
if !IsBadRequest(NewBadRequest("reason")) {
|
|
t.Errorf("expected to be %s", api.StatusReasonBadRequest)
|
|
}
|
|
if !IsForbidden(NewForbidden("test", "2", errors.New("reason"))) {
|
|
t.Errorf("expected to be %s", api.StatusReasonForbidden)
|
|
}
|
|
if !IsTryAgainLater(NewTryAgainLater("test", "reason")) {
|
|
t.Errorf("expected to be %s", api.StatusReasonTryAgainLater)
|
|
}
|
|
if !IsMethodNotSupported(NewMethodNotSupported("foo", "delete")) {
|
|
t.Errorf("expected to be %s", api.StatusReasonMethodNotAllowed)
|
|
}
|
|
}
|
|
|
|
func TestNewInvalid(t *testing.T) {
|
|
testCases := []struct {
|
|
Err *ValidationError
|
|
Details *api.StatusDetails
|
|
}{
|
|
{
|
|
NewFieldDuplicate("field[0].name", "bar"),
|
|
&api.StatusDetails{
|
|
Kind: "kind",
|
|
ID: "name",
|
|
Causes: []api.StatusCause{{
|
|
Type: api.CauseTypeFieldValueDuplicate,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
NewFieldInvalid("field[0].name", "bar", "detail"),
|
|
&api.StatusDetails{
|
|
Kind: "kind",
|
|
ID: "name",
|
|
Causes: []api.StatusCause{{
|
|
Type: api.CauseTypeFieldValueInvalid,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
NewFieldNotFound("field[0].name", "bar"),
|
|
&api.StatusDetails{
|
|
Kind: "kind",
|
|
ID: "name",
|
|
Causes: []api.StatusCause{{
|
|
Type: api.CauseTypeFieldValueNotFound,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
NewFieldNotSupported("field[0].name", "bar"),
|
|
&api.StatusDetails{
|
|
Kind: "kind",
|
|
ID: "name",
|
|
Causes: []api.StatusCause{{
|
|
Type: api.CauseTypeFieldValueNotSupported,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
NewFieldRequired("field[0].name", "bar"),
|
|
&api.StatusDetails{
|
|
Kind: "kind",
|
|
ID: "name",
|
|
Causes: []api.StatusCause{{
|
|
Type: api.CauseTypeFieldValueRequired,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
}
|
|
for i, testCase := range testCases {
|
|
vErr, expected := testCase.Err, testCase.Details
|
|
expected.Causes[0].Message = vErr.Error()
|
|
err := NewInvalid("kind", "name", ValidationErrorList{vErr})
|
|
status := err.(*StatusError).ErrStatus
|
|
if status.Code != 422 || status.Reason != api.StatusReasonInvalid {
|
|
t.Errorf("%d: unexpected status: %#v", i, status)
|
|
}
|
|
if !reflect.DeepEqual(expected, status.Details) {
|
|
t.Errorf("%d: expected %#v, got %#v", i, expected, status.Details)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_reasonForError(t *testing.T) {
|
|
if e, a := api.StatusReasonUnknown, reasonForError(nil); e != a {
|
|
t.Errorf("unexpected reason type: %#v", a)
|
|
}
|
|
}
|
|
|
|
type TestType struct{}
|
|
|
|
func (*TestType) IsAnAPIObject() {}
|
|
|
|
func TestFromObject(t *testing.T) {
|
|
table := []struct {
|
|
obj runtime.Object
|
|
message string
|
|
}{
|
|
{&api.Status{Message: "foobar"}, "foobar"},
|
|
{&TestType{}, "unexpected object: &{}"},
|
|
}
|
|
|
|
for _, item := range table {
|
|
if e, a := item.message, FromObject(item.obj).Error(); e != a {
|
|
t.Errorf("Expected %v, got %v", e, a)
|
|
}
|
|
}
|
|
}
|