blob: 61da34fbd15cb6e3f443f29a8f1bacb21437e1dd [file] [log] [blame]
// Copyright 2015 The LUCI 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 recordio
import (
"bytes"
"fmt"
"io"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestFrameHeaderSize(t *testing.T) {
t.Parallel()
Convey(`Testing FrameHeaderSize`, t, func() {
Convey(`Matches actual written frame size`, func() {
prev := -1
for i := 0; i < 3; i++ {
base := 1 << uint64(7*i)
for _, delta := range []int{-1, 0, 1} {
base += delta
if base <= prev {
// Over/underflow, skip.
continue
}
prev = base
Convey(fmt.Sprintf(`Frame size %d.`, base), func() {
data := bytes.Repeat([]byte{0x55}, int(base))
amt, err := WriteFrame(io.Discard, data)
if err != nil {
panic(err)
}
So(amt-len(data), ShouldEqual, FrameHeaderSize(int64(len(data))))
})
}
}
})
Convey(`Matches written frame header size (no alloc)`, func() {
prev, first := int64(0), true
for i := 0; i < 9; i++ {
for _, delta := range []int64{-1, 0, 1} {
base := int64(1<<uint64(7*i)) + delta
if (!first) && base <= prev {
// Repeated value, skip.
continue
}
prev, first = base, false
Convey(fmt.Sprintf(`Frame size %d.`, base), func() {
amt, err := writeFrameHeader(io.Discard, uint64(base))
if err != nil {
panic(err)
}
So(amt, ShouldEqual, FrameHeaderSize(int64(base)))
})
}
}
})
})
}