-
Notifications
You must be signed in to change notification settings - Fork 814
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Copy() method to configstore structs (#6025)
- Loading branch information
1 parent
58cbab3
commit fbfe1d4
Showing
3 changed files
with
211 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
// The MIT License (MIT) | ||
|
||
// Copyright (c) 2017-2020 Uber Technologies Inc. | ||
|
||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
|
||
package types | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestDynamicConfigEntryCopy(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
input *DynamicConfigEntry | ||
}{ | ||
{ | ||
name: "nil", | ||
input: nil, | ||
}, | ||
{ | ||
name: "empty", | ||
input: &DynamicConfigEntry{}, | ||
}, | ||
{ | ||
name: "nil values", | ||
input: &DynamicConfigEntry{ | ||
Name: "test-2", | ||
Values: nil, | ||
}, | ||
}, | ||
{ | ||
name: "non-nil values", | ||
input: &DynamicConfigEntry{ | ||
Name: "test-2", | ||
Values: []*DynamicConfigValue{ | ||
&DynamicConfigValue{ | ||
Value: &DataBlob{Data: []byte("data")}, | ||
Filters: nil, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, tc := range tests { | ||
t.Run(tc.name, func(t *testing.T) { | ||
valCopy := tc.input.Copy() | ||
assert.Equal(t, tc.input, valCopy) | ||
// check if modifying the copy does not modify the original | ||
if valCopy != nil && valCopy.Values != nil { | ||
valCopy.Values[0].Value.Data = []byte("modified") | ||
assert.NotEqual(t, tc.input, valCopy) | ||
} | ||
assert.Equal(t, tc.input, tc.input.Copy()) | ||
}) | ||
} | ||
} | ||
|
||
func TestDynamicConfigFilterCopy(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
input *DynamicConfigFilter | ||
}{ | ||
{ | ||
name: "nil", | ||
input: nil, | ||
}, | ||
{ | ||
name: "empty", | ||
input: &DynamicConfigFilter{}, | ||
}, | ||
{ | ||
name: "nil value", | ||
input: &DynamicConfigFilter{ | ||
Name: "test-2", | ||
Value: nil, | ||
}, | ||
}, | ||
{ | ||
name: "non-nil values", | ||
input: &DynamicConfigFilter{ | ||
Name: "test-2", | ||
Value: &DataBlob{Data: []byte("data")}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, tc := range tests { | ||
t.Run(tc.name, func(t *testing.T) { | ||
valCopy := tc.input.Copy() | ||
assert.Equal(t, tc.input, valCopy) | ||
// check if modifying the copy does not modify the original | ||
if valCopy != nil { | ||
valCopy.Name = "modified" | ||
assert.NotEqual(t, tc.input, valCopy) | ||
} | ||
}) | ||
} | ||
} | ||
func TestDynamicConfigValueCopy(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
input *DynamicConfigValue | ||
}{ | ||
{ | ||
name: "nil", | ||
input: nil, | ||
}, | ||
{ | ||
name: "empty", | ||
input: &DynamicConfigValue{}, | ||
}, | ||
|
||
{ | ||
name: "non-nil values", | ||
input: &DynamicConfigValue{ | ||
Value: &DataBlob{Data: []byte("data")}, | ||
Filters: []*DynamicConfigFilter{ | ||
&DynamicConfigFilter{ | ||
Name: "filter-1", | ||
Value: &DataBlob{Data: []byte("data")}, | ||
}}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, tc := range tests { | ||
t.Run(tc.name, func(t *testing.T) { | ||
// check if modifying the copy does not modify the original | ||
valCopy := tc.input.Copy() | ||
assert.Equal(t, tc.input, valCopy) | ||
if valCopy != nil && valCopy.Value != nil { | ||
valCopy.Value.Data = []byte("modified") | ||
assert.NotEqual(t, tc.input, valCopy) | ||
} | ||
}) | ||
} | ||
} |