Commit 9eb8c4c6 authored by Kirill Smelkov's avatar Kirill Smelkov Committed by Kamil Kisiel

decoder: Cleanup decodeLong tests (#43)

Instead of copy-pasting full test driver for each value, make it to be
only one test with many values in table each tested by common driver.

TestZeroLengthData was checking output.BitLen() == 0 which is another
way to test for equality with big.Int(0) according to

	https://golang.org/pkg/math/big/#Int.BitLen

So join it too to the rest of decodeLong tests.

While at decodeLong topic, rename BenchmarkSpeed -> BenchmarkDecodeLong
as this benchmark checks speed of decodeLong only, nothing else.
parent 2a0ddd42
......@@ -173,96 +173,35 @@ func TestDecodeMultiple(t *testing.T) {
}
}
func TestZeroLengthData(t *testing.T) {
data := ""
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
if output.BitLen() > 0 {
t.Fail()
}
}
func TestValue1(t *testing.T) {
data := "\xff\x00"
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
target := big.NewInt(255)
if target.Cmp(output) != 0 {
t.Fail()
}
}
func TestValue2(t *testing.T) {
data := "\xff\x7f"
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
target := big.NewInt(32767)
if target.Cmp(output) != 0 {
t.Fail()
}
}
func TestValue3(t *testing.T) {
data := "\x00\xff"
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
target := big.NewInt(256)
target.Neg(target)
if target.Cmp(output) != 0 {
t.Logf("\nGot %v\nExpecting %v\n", output, target)
t.Fail()
}
}
func TestValue4(t *testing.T) {
data := "\x00\x80"
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
target := big.NewInt(32768)
target.Neg(target)
if target.Cmp(output) != 0 {
t.Logf("\nGot %v\nExpecting %v\n", output, target)
t.Fail()
func TestDecodeLong(t *testing.T) {
var testv = []struct {
data string
value int64 // converted to big.Int by test driver
}{
{"", 0},
{"\xff\x00", 255},
{"\xff\x7f", 32767},
{"\x00\xff", -256},
{"\x00\x80", -32768},
{"\x80", -128},
{"\x7f", 127},
}
}
func TestValue5(t *testing.T) {
data := "\x80"
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
target := big.NewInt(128)
target.Neg(target)
if target.Cmp(output) != 0 {
t.Logf("\nGot %v\nExpecting %v\n", output, target)
t.Fail()
}
}
for _, tt := range testv {
value, err := decodeLong(tt.data)
if err != nil {
t.Errorf("data %q: %s", tt.data, err)
continue
}
func TestValue6(t *testing.T) {
data := "\x7f"
output, err := decodeLong(data)
if err != nil {
t.Errorf("Error from decodeLong - %v\n", err)
}
target := big.NewInt(127)
if target.Cmp(output) != 0 {
t.Fail()
valueOk := big.NewInt(tt.value)
if valueOk.Cmp(value) != 0 {
t.Errorf("data %q: ->long: got %s ; want %s", tt.data, value, valueOk)
}
}
}
func BenchmarkSpeed(b *testing.B) {
func BenchmarkDecodeLong(b *testing.B) {
for i := 0; i < b.N; i++ {
data := "\x00\x80"
_, err := decodeLong(data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment