-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unit test: MachineInfo Clone() method
Add a unit test that ensures that Clone() method clones all fields and that the cloned struct equals the original. To avoid missing fields in the future, the test fails if one of the struct's fields is populated with a zero-value. The unit test uses reflection to achieve that. Signed-off-by: Itamar Holder <[email protected]>
- Loading branch information
1 parent
54364e7
commit cd3c6bd
Showing
1 changed file
with
95 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// Copyright 2014 Google Inc. 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 v1 | ||
|
||
import ( | ||
"reflect" | ||
"testing" | ||
"time" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestMachineInfoClone(t *testing.T) { | ||
machineInfo := getFakeMachineInfo() | ||
|
||
// Make sure all fields are populated | ||
machineInfoReflection := reflect.ValueOf(machineInfo) | ||
for i := 0; i < machineInfoReflection.NumField(); i++ { | ||
assert.Falsef(t, machineInfoReflection.Field(i).IsZero(), "field %s is not populated", machineInfoReflection.Type().Field(i).Name) | ||
} | ||
|
||
clonedMachineInfo := *machineInfo.Clone() | ||
assert.Equal(t, machineInfo, clonedMachineInfo, "cloned machine info should be equal to the original") | ||
} | ||
|
||
func getFakeMachineInfo() MachineInfo { | ||
fakeMemoryByType := map[string]*MemoryInfo{ | ||
"fake": {Capacity: 2, DimmCount: 3}, | ||
} | ||
|
||
return MachineInfo{ | ||
Timestamp: time.Now(), | ||
CPUVendorID: "fake-id", | ||
NumCores: 1, | ||
NumPhysicalCores: 2, | ||
NumSockets: 3, | ||
CpuFrequency: 4, | ||
MemoryCapacity: 5, | ||
SwapCapacity: 6, | ||
MemoryByType: fakeMemoryByType, | ||
NVMInfo: NVMInfo{ | ||
MemoryModeCapacity: 2, | ||
AppDirectModeCapacity: 6, | ||
AvgPowerBudget: 3, | ||
}, | ||
HugePages: []HugePagesInfo{{ | ||
PageSize: 512, | ||
NumPages: 343, | ||
}}, | ||
MachineID: "fake-machine-id", | ||
SystemUUID: "fake-uuid", | ||
BootID: "fake-boot-id", | ||
Filesystems: []FsInfo{{ | ||
Device: "dev", | ||
DeviceMajor: 1, | ||
DeviceMinor: 2, | ||
Capacity: 3, | ||
Type: "fake-type", | ||
Inodes: 4, | ||
HasInodes: true, | ||
}}, | ||
DiskMap: map[string]DiskInfo{"fake-disk": { | ||
Name: "fake", | ||
Major: 1, | ||
Minor: 2, | ||
Size: 3, | ||
Scheduler: "sched", | ||
}}, | ||
NetworkDevices: []NetInfo{{ | ||
Name: "fake-net-info", | ||
MacAddress: "123", | ||
Speed: 2, | ||
Mtu: 3, | ||
}}, | ||
Topology: []Node{{ | ||
Id: 1, | ||
Memory: 2, | ||
}}, | ||
CloudProvider: "fake-provider", | ||
InstanceType: "fake-instance-type", | ||
InstanceID: "fake-instance-id", | ||
} | ||
} |