Skip to content

Commit

Permalink
raft: Add TestProtoMemorySizes test
Browse files Browse the repository at this point in the history
This test checks the in-memory size of each proto struct to detect
unexpected changes to their memory representation.
  • Loading branch information
nvanbenschoten committed Mar 20, 2021
1 parent 8469108 commit ebc0174
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions raft/raftpb/raft_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
// Copyright 2021 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 raftpb

import (
"math/bits"
"testing"
"unsafe"
)

func TestProtoMemorySizes(t *testing.T) {
assert := func(size, exp uintptr, name string) {
t.Helper()
if size != exp {
t.Errorf("expected size of %s proto to be %d bytes, found %d bytes", name, exp, size)
}
}

if64Bit := func(yes, no uintptr) uintptr {
if bits.UintSize == 64 {
return yes
}
return no
}

var e Entry
assert(unsafe.Sizeof(e), if64Bit(80, 48), "Entry")

var sm SnapshotMetadata
assert(unsafe.Sizeof(sm), if64Bit(184, 100), "SnapshotMetadata")

var s Snapshot
assert(unsafe.Sizeof(s), if64Bit(240, 128), "Snapshot")

var m Message
assert(unsafe.Sizeof(m), if64Bit(392, 232), "Message")

var hs HardState
assert(unsafe.Sizeof(hs), if64Bit(56, 40), "HardState")

var cs ConfState
assert(unsafe.Sizeof(cs), if64Bit(136, 68), "ConfState")

var cc ConfChange
assert(unsafe.Sizeof(cc), if64Bit(80, 48), "ConfChange")

var ccs ConfChangeSingle
assert(unsafe.Sizeof(ccs), if64Bit(48, 28), "ConfChangeSingle")

var ccv2 ConfChangeV2
assert(unsafe.Sizeof(ccv2), if64Bit(88, 44), "ConfChangeV2")
}

0 comments on commit ebc0174

Please sign in to comment.