mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2015 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 api_test
 | 
						|
 | 
						|
import (
 | 
						|
	"math/rand"
 | 
						|
	"reflect"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api/testapi"
 | 
						|
	apitesting "github.com/GoogleCloudPlatform/kubernetes/pkg/api/testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestDeepCopyApiObjects(t *testing.T) {
 | 
						|
	for i := 0; i < *fuzzIters; i++ {
 | 
						|
		for _, version := range []string{"", testapi.Version()} {
 | 
						|
			f := apitesting.FuzzerFor(t, version, rand.NewSource(rand.Int63()))
 | 
						|
			for kind := range api.Scheme.KnownTypes(version) {
 | 
						|
				item, err := api.Scheme.New(version, kind)
 | 
						|
				if err != nil {
 | 
						|
					t.Fatalf("Could not create a %s: %s", kind, err)
 | 
						|
				}
 | 
						|
				f.Fuzz(item)
 | 
						|
				itemCopy, err := api.Scheme.DeepCopy(item)
 | 
						|
				if err != nil {
 | 
						|
					t.Errorf("Could not deep copy a %s: %s", kind, err)
 | 
						|
					continue
 | 
						|
				}
 | 
						|
 | 
						|
				if !reflect.DeepEqual(item, itemCopy) {
 | 
						|
					t.Errorf("expected %#v\ngot %#v", item, itemCopy)
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |