mirror of
				https://github.com/etcd-io/etcd.git
				synced 2024-09-27 06:25:44 +00:00 
			
		
		
		
	 d9c5e1f0a2
			
		
	
	
		d9c5e1f0a2
		
	
	
	
	
		
			
			To maintain uniformity in testing methodology, assert.Equals has been used everywhere while replacing testutil.AssertEqual Fixes #13015
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2015 The etcd 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 v2store
 | |
| 
 | |
| import (
 | |
| 	"reflect"
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestNodeExternClone(t *testing.T) {
 | |
| 	var eNode *NodeExtern
 | |
| 	if g := eNode.Clone(); g != nil {
 | |
| 		t.Fatalf("nil.Clone=%v, want nil", g)
 | |
| 	}
 | |
| 
 | |
| 	const (
 | |
| 		key string = "/foo/bar"
 | |
| 		ttl int64  = 123456789
 | |
| 		ci  uint64 = 123
 | |
| 		mi  uint64 = 321
 | |
| 	)
 | |
| 	var (
 | |
| 		val    = "some_data"
 | |
| 		valp   = &val
 | |
| 		exp    = time.Unix(12345, 67890)
 | |
| 		expp   = &exp
 | |
| 		child  = NodeExtern{}
 | |
| 		childp = &child
 | |
| 		childs = []*NodeExtern{childp}
 | |
| 	)
 | |
| 
 | |
| 	eNode = &NodeExtern{
 | |
| 		Key:           key,
 | |
| 		TTL:           ttl,
 | |
| 		CreatedIndex:  ci,
 | |
| 		ModifiedIndex: mi,
 | |
| 		Value:         valp,
 | |
| 		Expiration:    expp,
 | |
| 		Nodes:         childs,
 | |
| 	}
 | |
| 
 | |
| 	gNode := eNode.Clone()
 | |
| 	// Check the clone is as expected
 | |
| 	assert.Equal(t, gNode.Key, key)
 | |
| 	assert.Equal(t, gNode.TTL, ttl)
 | |
| 	assert.Equal(t, gNode.CreatedIndex, ci)
 | |
| 	assert.Equal(t, gNode.ModifiedIndex, mi)
 | |
| 	// values should be the same
 | |
| 	assert.Equal(t, *gNode.Value, val)
 | |
| 	assert.Equal(t, *gNode.Expiration, exp)
 | |
| 	assert.Equal(t, len(gNode.Nodes), len(childs))
 | |
| 	assert.Equal(t, *gNode.Nodes[0], child)
 | |
| 	// but pointers should differ
 | |
| 	if gNode.Value == eNode.Value {
 | |
| 		t.Fatalf("expected value pointers to differ, but got same!")
 | |
| 	}
 | |
| 	if gNode.Expiration == eNode.Expiration {
 | |
| 		t.Fatalf("expected expiration pointers to differ, but got same!")
 | |
| 	}
 | |
| 	if sameSlice(gNode.Nodes, eNode.Nodes) {
 | |
| 		t.Fatalf("expected nodes pointers to differ, but got same!")
 | |
| 	}
 | |
| 	// Original should be the same
 | |
| 	assert.Equal(t, eNode.Key, key)
 | |
| 	assert.Equal(t, eNode.TTL, ttl)
 | |
| 	assert.Equal(t, eNode.CreatedIndex, ci)
 | |
| 	assert.Equal(t, eNode.ModifiedIndex, mi)
 | |
| 	assert.Equal(t, eNode.Value, valp)
 | |
| 	assert.Equal(t, eNode.Expiration, expp)
 | |
| 	if !sameSlice(eNode.Nodes, childs) {
 | |
| 		t.Fatalf("expected nodes pointer to same, but got different!")
 | |
| 	}
 | |
| 	// Change the clone and ensure the original is not affected
 | |
| 	gNode.Key = "/baz"
 | |
| 	gNode.TTL = 0
 | |
| 	gNode.Nodes[0].Key = "uno"
 | |
| 	assert.Equal(t, eNode.Key, key)
 | |
| 	assert.Equal(t, eNode.TTL, ttl)
 | |
| 	assert.Equal(t, eNode.CreatedIndex, ci)
 | |
| 	assert.Equal(t, eNode.ModifiedIndex, mi)
 | |
| 	assert.Equal(t, *eNode.Nodes[0], child)
 | |
| 	// Change the original and ensure the clone is not affected
 | |
| 	eNode.Key = "/wuf"
 | |
| 	assert.Equal(t, eNode.Key, "/wuf")
 | |
| 	assert.Equal(t, gNode.Key, "/baz")
 | |
| }
 | |
| 
 | |
| func sameSlice(a, b []*NodeExtern) bool {
 | |
| 	va := reflect.ValueOf(a)
 | |
| 	vb := reflect.ValueOf(b)
 | |
| 	return va.Len() == vb.Len() && va.Pointer() == vb.Pointer()
 | |
| }
 |