2016-08-08 18:42:54 +02:00
|
|
|
// Copyright (c) 2013-2016 The btcsuite developers
|
2013-05-08 21:31:00 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
package wire
|
2013-05-08 21:31:00 +02:00
|
|
|
|
2016-08-08 18:42:54 +02:00
|
|
|
import "testing"
|
2013-05-08 21:31:00 +02:00
|
|
|
|
|
|
|
// TestServiceFlagStringer tests the stringized output for service flag types.
|
|
|
|
func TestServiceFlagStringer(t *testing.T) {
|
|
|
|
tests := []struct {
|
2016-08-08 18:42:54 +02:00
|
|
|
in ServiceFlag
|
2013-05-08 21:31:00 +02:00
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{0, "0x0"},
|
2016-08-08 18:42:54 +02:00
|
|
|
{SFNodeNetwork, "SFNodeNetwork"},
|
|
|
|
{SFNodeGetUTXO, "SFNodeGetUTXO"},
|
|
|
|
{SFNodeBloom, "SFNodeBloom"},
|
2015-08-24 17:48:59 +02:00
|
|
|
{0xffffffff, "SFNodeNetwork|SFNodeGetUTXO|SFNodeBloom|0xfffffff8"},
|
2013-05-08 21:31:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
|
|
for i, test := range tests {
|
|
|
|
result := test.in.String()
|
|
|
|
if result != test.want {
|
|
|
|
t.Errorf("String #%d\n got: %s want: %s", i, result,
|
|
|
|
test.want)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-03 15:36:11 +01:00
|
|
|
|
|
|
|
// TestBitcoinNetStringer tests the stringized output for bitcoin net types.
|
|
|
|
func TestBitcoinNetStringer(t *testing.T) {
|
|
|
|
tests := []struct {
|
2016-08-08 18:42:54 +02:00
|
|
|
in BitcoinNet
|
2014-01-03 15:36:11 +01:00
|
|
|
want string
|
|
|
|
}{
|
2016-08-08 18:42:54 +02:00
|
|
|
{MainNet, "MainNet"},
|
|
|
|
{TestNet, "TestNet"},
|
|
|
|
{TestNet3, "TestNet3"},
|
|
|
|
{SimNet, "SimNet"},
|
2014-01-03 15:36:11 +01:00
|
|
|
{0xffffffff, "Unknown BitcoinNet (4294967295)"},
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
|
|
for i, test := range tests {
|
|
|
|
result := test.in.String()
|
|
|
|
if result != test.want {
|
|
|
|
t.Errorf("String #%d\n got: %s want: %s", i, result,
|
|
|
|
test.want)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|