123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /*
- Copyright 2015 The Kubernetes 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 unversioned
- import (
- "encoding/json"
- "reflect"
- "testing"
- "github.com/ugorji/go/codec"
- )
- func TestGroupVersionParse(t *testing.T) {
- tests := []struct {
- input string
- out GroupVersion
- err func(error) bool
- }{
- {input: "v1", out: GroupVersion{Version: "v1"}},
- {input: "v2", out: GroupVersion{Version: "v2"}},
- {input: "/v1", out: GroupVersion{Version: "v1"}},
- {input: "v1/", out: GroupVersion{Group: "v1"}},
- {input: "/v1/", err: func(err error) bool { return err.Error() == "unexpected GroupVersion string: /v1/" }},
- {input: "v1/a", out: GroupVersion{Group: "v1", Version: "a"}},
- }
- for i, test := range tests {
- out, err := ParseGroupVersion(test.input)
- if test.err == nil && err != nil || err == nil && test.err != nil {
- t.Errorf("%d: unexpected error: %v", i, err)
- continue
- }
- if test.err != nil && !test.err(err) {
- t.Errorf("%d: unexpected error: %v", i, err)
- continue
- }
- if out != test.out {
- t.Errorf("%d: unexpected output: %#v", i, out)
- }
- }
- }
- func TestGroupResourceParse(t *testing.T) {
- tests := []struct {
- input string
- out GroupResource
- }{
- {input: "v1", out: GroupResource{Resource: "v1"}},
- {input: ".v1", out: GroupResource{Group: "v1"}},
- {input: "v1.", out: GroupResource{Resource: "v1"}},
- {input: "v1.a", out: GroupResource{Group: "a", Resource: "v1"}},
- {input: "b.v1.a", out: GroupResource{Group: "v1.a", Resource: "b"}},
- }
- for i, test := range tests {
- out := ParseGroupResource(test.input)
- if out != test.out {
- t.Errorf("%d: unexpected output: %#v", i, out)
- }
- }
- }
- func TestParseResourceArg(t *testing.T) {
- tests := []struct {
- input string
- gvr *GroupVersionResource
- gr GroupResource
- }{
- {input: "v1", gr: GroupResource{Resource: "v1"}},
- {input: ".v1", gr: GroupResource{Group: "v1"}},
- {input: "v1.", gr: GroupResource{Resource: "v1"}},
- {input: "v1.a", gr: GroupResource{Group: "a", Resource: "v1"}},
- {input: "b.v1.a", gvr: &GroupVersionResource{Group: "a", Version: "v1", Resource: "b"}, gr: GroupResource{Group: "v1.a", Resource: "b"}},
- }
- for i, test := range tests {
- gvr, gr := ParseResourceArg(test.input)
- if (gvr != nil && test.gvr == nil) || (gvr == nil && test.gvr != nil) || (test.gvr != nil && *gvr != *test.gvr) {
- t.Errorf("%d: unexpected output: %#v", i, gvr)
- }
- if gr != test.gr {
- t.Errorf("%d: unexpected output: %#v", i, gr)
- }
- }
- }
- type GroupVersionHolder struct {
- GV GroupVersion `json:"val"`
- }
- func TestGroupVersionUnmarshalJSON(t *testing.T) {
- cases := []struct {
- input []byte
- expect GroupVersion
- }{
- {[]byte(`{"val": "v1"}`), GroupVersion{"", "v1"}},
- {[]byte(`{"val": "extensions/v1beta1"}`), GroupVersion{"extensions", "v1beta1"}},
- }
- for _, c := range cases {
- var result GroupVersionHolder
- // test golang lib's JSON codec
- if err := json.Unmarshal([]byte(c.input), &result); err != nil {
- t.Errorf("JSON codec failed to unmarshal input '%v': %v", c.input, err)
- }
- if !reflect.DeepEqual(result.GV, c.expect) {
- t.Errorf("JSON codec failed to unmarshal input '%s': expected %+v, got %+v", c.input, c.expect, result.GV)
- }
- // test the Ugorji codec
- if err := codec.NewDecoderBytes(c.input, new(codec.JsonHandle)).Decode(&result); err != nil {
- t.Errorf("Ugorji codec failed to unmarshal input '%v': %v", c.input, err)
- }
- if !reflect.DeepEqual(result.GV, c.expect) {
- t.Errorf("Ugorji codec failed to unmarshal input '%s': expected %+v, got %+v", c.input, c.expect, result.GV)
- }
- }
- }
- func TestGroupVersionMarshalJSON(t *testing.T) {
- cases := []struct {
- input GroupVersion
- expect []byte
- }{
- {GroupVersion{"", "v1"}, []byte(`{"val":"v1"}`)},
- {GroupVersion{"extensions", "v1beta1"}, []byte(`{"val":"extensions/v1beta1"}`)},
- }
- for _, c := range cases {
- input := GroupVersionHolder{c.input}
- result, err := json.Marshal(&input)
- if err != nil {
- t.Errorf("Failed to marshal input '%v': %v", input, err)
- }
- if !reflect.DeepEqual(result, c.expect) {
- t.Errorf("Failed to marshal input '%+v': expected: %s, got: %s", input, c.expect, result)
- }
- }
- }
|