2013-11-06 02:56:12 +01:00
|
|
|
// Copyright (c) 2013 Conformal Systems LLC.
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package btcwire_test
|
|
|
|
|
|
|
|
import (
|
2013-11-06 04:35:28 +01:00
|
|
|
"bytes"
|
2013-11-06 02:56:12 +01:00
|
|
|
"github.com/conformal/btcwire"
|
|
|
|
"io/ioutil"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BenchmarkWriteVarInt1 performs a benchmark on how long it takes to write
|
|
|
|
// a single byte variable length integer.
|
|
|
|
func BenchmarkWriteVarInt1(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteVarInt(ioutil.Discard, 0, 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkWriteVarInt3 performs a benchmark on how long it takes to write
|
|
|
|
// a three byte variable length integer.
|
|
|
|
func BenchmarkWriteVarInt3(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteVarInt(ioutil.Discard, 0, 65535)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkWriteVarInt5 performs a benchmark on how long it takes to write
|
|
|
|
// a five byte variable length integer.
|
|
|
|
func BenchmarkWriteVarInt5(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteVarInt(ioutil.Discard, 0, 4294967295)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkWriteVarInt9 performs a benchmark on how long it takes to write
|
|
|
|
// a nine byte variable length integer.
|
|
|
|
func BenchmarkWriteVarInt9(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteVarInt(ioutil.Discard, 0, 18446744073709551615)
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 04:35:28 +01:00
|
|
|
|
2013-11-06 06:03:54 +01:00
|
|
|
// BenchmarkReadVarInt1 performs a benchmark on how long it takes to read
|
2013-11-06 04:35:28 +01:00
|
|
|
// a single byte variable length integer.
|
|
|
|
func BenchmarkReadVarInt1(b *testing.B) {
|
|
|
|
buf := []byte{0x01}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadVarInt(bytes.NewBuffer(buf), 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 06:03:54 +01:00
|
|
|
// BenchmarkReadVarInt3 performs a benchmark on how long it takes to read
|
2013-11-06 04:35:28 +01:00
|
|
|
// a three byte variable length integer.
|
|
|
|
func BenchmarkReadVarInt3(b *testing.B) {
|
|
|
|
buf := []byte{0x0fd, 0xff, 0xff}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadVarInt(bytes.NewBuffer(buf), 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 06:03:54 +01:00
|
|
|
// BenchmarkReadVarInt5 performs a benchmark on how long it takes to read
|
2013-11-06 04:35:28 +01:00
|
|
|
// a five byte variable length integer.
|
|
|
|
func BenchmarkReadVarInt5(b *testing.B) {
|
|
|
|
buf := []byte{0xfe, 0xff, 0xff, 0xff, 0xff}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadVarInt(bytes.NewBuffer(buf), 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 06:03:54 +01:00
|
|
|
// BenchmarkReadVarInt9 performs a benchmark on how long it takes to read
|
2013-11-06 04:35:28 +01:00
|
|
|
// a nine byte variable length integer.
|
|
|
|
func BenchmarkReadVarInt9(b *testing.B) {
|
|
|
|
buf := []byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadVarInt(bytes.NewBuffer(buf), 0)
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 06:08:55 +01:00
|
|
|
|
|
|
|
// BenchmarkReadVarStr4 performs a benchmark on how long it takes to read a
|
|
|
|
// four byte variable length string.
|
|
|
|
func BenchmarkReadVarStr4(b *testing.B) {
|
|
|
|
buf := []byte{0x04, 't', 'e', 's', 't'}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadVarString(bytes.NewBuffer(buf), 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkReadVarStr10 performs a benchmark on how long it takes to read a
|
|
|
|
// ten byte variable length string.
|
|
|
|
func BenchmarkReadVarStr10(b *testing.B) {
|
|
|
|
buf := []byte{0x0a, 't', 'e', 's', 't', '0', '1', '2', '3', '4', '5'}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadVarString(bytes.NewBuffer(buf), 0)
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 06:49:34 +01:00
|
|
|
|
|
|
|
// BenchmarkWriteVarStr4 performs a benchmark on how long it takes to write a
|
|
|
|
// four byte variable length string.
|
|
|
|
func BenchmarkWriteVarStr4(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteVarString(ioutil.Discard, 0, "test")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkWriteVarStr10 performs a benchmark on how long it takes to write a
|
2013-11-06 14:33:37 +01:00
|
|
|
// ten byte variable length string.
|
2013-11-06 06:49:34 +01:00
|
|
|
func BenchmarkWriteVarStr10(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteVarString(ioutil.Discard, 0, "test012345")
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 07:43:52 +01:00
|
|
|
|
2013-11-06 14:33:37 +01:00
|
|
|
// BenchmarkReadOutPoint performs a benchmark on how long it takes to read a
|
|
|
|
// transaction output point.
|
|
|
|
func BenchmarkReadOutPoint(b *testing.B) {
|
|
|
|
buf := []byte{
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // Previous output hash
|
|
|
|
0xff, 0xff, 0xff, 0xff, // Previous output index
|
|
|
|
}
|
|
|
|
var op btcwire.OutPoint
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstReadOutPoint(bytes.NewBuffer(buf), 0, 0, &op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 07:43:52 +01:00
|
|
|
// BenchmarkWriteOutPoint performs a benchmark on how long it takes to write a
|
|
|
|
// transaction output point.
|
|
|
|
func BenchmarkWriteOutPoint(b *testing.B) {
|
|
|
|
op := &btcwire.OutPoint{
|
|
|
|
Hash: btcwire.ShaHash{},
|
|
|
|
Index: 0,
|
|
|
|
}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteOutPoint(ioutil.Discard, 0, 0, op)
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 22:21:37 +01:00
|
|
|
|
|
|
|
// BenchmarkWriteTxOut performs a benchmark on how long it takes to write
|
|
|
|
// a transaction output.
|
|
|
|
func BenchmarkWriteTxOut(b *testing.B) {
|
|
|
|
txOut := blockOne.Transactions[0].TxOut[0]
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
btcwire.TstWriteTxOut(ioutil.Discard, 0, 0, txOut)
|
|
|
|
}
|
|
|
|
}
|