
Before this change we have a mish-mash of ways to pass field names around for error generation. Sometimes string fieldnames, sometimes .Prefix(), sometimes neither, often wrong names or not indexed when it should be. Instead of that mess, this is part one of a couple of commits that will make it more strongly typed and hopefully encourage correct behavior. At least you will have to think about field names, which is better than nothing. It turned out to be really hard to do this incrementally.
189 lines
5.6 KiB
Go
189 lines
5.6 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes Authors 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"
|
|
|
|
"k8s.io/kubernetes/pkg/api/unversioned"
|
|
"k8s.io/kubernetes/pkg/runtime"
|
|
"k8s.io/kubernetes/pkg/util/validation"
|
|
)
|
|
|
|
func TestErrorNew(t *testing.T) {
|
|
err := NewAlreadyExists("test", "1")
|
|
if !IsAlreadyExists(err) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonAlreadyExists)
|
|
}
|
|
if IsConflict(err) {
|
|
t.Errorf("expected to not be %s", unversioned.StatusReasonConflict)
|
|
}
|
|
if IsNotFound(err) {
|
|
t.Errorf(fmt.Sprintf("expected to not be %s", unversioned.StatusReasonNotFound))
|
|
}
|
|
if IsInvalid(err) {
|
|
t.Errorf("expected to not be %s", unversioned.StatusReasonInvalid)
|
|
}
|
|
if IsBadRequest(err) {
|
|
t.Errorf("expected to not be %s", unversioned.StatusReasonBadRequest)
|
|
}
|
|
if IsForbidden(err) {
|
|
t.Errorf("expected to not be %s", unversioned.StatusReasonForbidden)
|
|
}
|
|
if IsServerTimeout(err) {
|
|
t.Errorf("expected to not be %s", unversioned.StatusReasonServerTimeout)
|
|
}
|
|
if IsMethodNotSupported(err) {
|
|
t.Errorf("expected to not be %s", unversioned.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", unversioned.StatusReasonNotFound)
|
|
}
|
|
if !IsInvalid(NewInvalid("test", "2", nil)) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonInvalid)
|
|
}
|
|
if !IsBadRequest(NewBadRequest("reason")) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonBadRequest)
|
|
}
|
|
if !IsForbidden(NewForbidden("test", "2", errors.New("reason"))) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonForbidden)
|
|
}
|
|
if !IsUnauthorized(NewUnauthorized("reason")) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonUnauthorized)
|
|
}
|
|
if !IsServerTimeout(NewServerTimeout("test", "reason", 0)) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonServerTimeout)
|
|
}
|
|
if time, ok := SuggestsClientDelay(NewServerTimeout("test", "doing something", 10)); time != 10 || !ok {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonServerTimeout)
|
|
}
|
|
if time, ok := SuggestsClientDelay(NewTimeoutError("test reason", 10)); time != 10 || !ok {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonTimeout)
|
|
}
|
|
if !IsMethodNotSupported(NewMethodNotSupported("foo", "delete")) {
|
|
t.Errorf("expected to be %s", unversioned.StatusReasonMethodNotAllowed)
|
|
}
|
|
}
|
|
|
|
func TestNewInvalid(t *testing.T) {
|
|
testCases := []struct {
|
|
Err *validation.Error
|
|
Details *unversioned.StatusDetails
|
|
}{
|
|
{
|
|
validation.NewDuplicateError(validation.NewFieldPath("field[0].name"), "bar"),
|
|
&unversioned.StatusDetails{
|
|
Kind: "kind",
|
|
Name: "name",
|
|
Causes: []unversioned.StatusCause{{
|
|
Type: unversioned.CauseTypeFieldValueDuplicate,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
validation.NewInvalidError(validation.NewFieldPath("field[0].name"), "bar", "detail"),
|
|
&unversioned.StatusDetails{
|
|
Kind: "kind",
|
|
Name: "name",
|
|
Causes: []unversioned.StatusCause{{
|
|
Type: unversioned.CauseTypeFieldValueInvalid,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
validation.NewNotFoundError(validation.NewFieldPath("field[0].name"), "bar"),
|
|
&unversioned.StatusDetails{
|
|
Kind: "kind",
|
|
Name: "name",
|
|
Causes: []unversioned.StatusCause{{
|
|
Type: unversioned.CauseTypeFieldValueNotFound,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
validation.NewNotSupportedError(validation.NewFieldPath("field[0].name"), "bar", nil),
|
|
&unversioned.StatusDetails{
|
|
Kind: "kind",
|
|
Name: "name",
|
|
Causes: []unversioned.StatusCause{{
|
|
Type: unversioned.CauseTypeFieldValueNotSupported,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
{
|
|
validation.NewRequiredError(validation.NewFieldPath("field[0].name")),
|
|
&unversioned.StatusDetails{
|
|
Kind: "kind",
|
|
Name: "name",
|
|
Causes: []unversioned.StatusCause{{
|
|
Type: unversioned.CauseTypeFieldValueRequired,
|
|
Field: "field[0].name",
|
|
}},
|
|
},
|
|
},
|
|
}
|
|
for i, testCase := range testCases {
|
|
vErr, expected := testCase.Err, testCase.Details
|
|
expected.Causes[0].Message = vErr.ErrorBody()
|
|
err := NewInvalid("kind", "name", validation.ErrorList{vErr})
|
|
status := err.(*StatusError).ErrStatus
|
|
if status.Code != 422 || status.Reason != unversioned.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 := unversioned.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
|
|
}{
|
|
{&unversioned.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)
|
|
}
|
|
}
|
|
}
|