2015-05-01 08:28:01 +02:00
|
|
|
// Copyright (c) 2014 The btcsuite developers
|
2014-03-12 03:33:56 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-01-30 21:54:30 +01:00
|
|
|
package blockchain_test
|
2014-03-12 03:33:56 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
2014-07-02 18:04:59 +02:00
|
|
|
|
2015-01-30 21:54:30 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain"
|
2014-03-12 03:33:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestBigToCompact(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
in int64
|
|
|
|
out uint32
|
|
|
|
}{
|
|
|
|
{0, 0},
|
|
|
|
{-1, 25231360},
|
|
|
|
}
|
|
|
|
|
|
|
|
for x, test := range tests {
|
|
|
|
n := big.NewInt(test.in)
|
2015-01-30 21:54:30 +01:00
|
|
|
r := blockchain.BigToCompact(n)
|
2014-03-12 03:33:56 +01:00
|
|
|
if r != test.out {
|
|
|
|
t.Errorf("TestBigToCompact test #%d failed: got %d want %d\n",
|
|
|
|
x, r, test.out)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCompactToBig(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
in uint32
|
|
|
|
out int64
|
|
|
|
}{
|
|
|
|
{10000000, 0},
|
|
|
|
}
|
|
|
|
|
|
|
|
for x, test := range tests {
|
2015-01-30 21:54:30 +01:00
|
|
|
n := blockchain.CompactToBig(test.in)
|
2014-03-12 03:33:56 +01:00
|
|
|
want := big.NewInt(test.out)
|
|
|
|
if n.Cmp(want) != 0 {
|
|
|
|
t.Errorf("TestCompactToBig test #%d failed: got %d want %d\n",
|
|
|
|
x, n.Int64(), want.Int64())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCalcWork(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
in uint32
|
|
|
|
out int64
|
|
|
|
}{
|
|
|
|
{10000000, 0},
|
|
|
|
}
|
|
|
|
|
|
|
|
for x, test := range tests {
|
|
|
|
bits := uint32(test.in)
|
|
|
|
|
2015-01-30 21:54:30 +01:00
|
|
|
r := blockchain.CalcWork(bits)
|
2014-03-12 03:33:56 +01:00
|
|
|
if r.Int64() != test.out {
|
|
|
|
t.Errorf("TestCalcWork test #%d failed: got %v want %d\n",
|
|
|
|
x, r.Int64(), test.out)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|