/* * Copyright (c) 2014 The btcsuite developers * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ package votingpool_test import ( "bytes" "encoding/hex" "fmt" "reflect" "testing" "github.com/btcsuite/btcutil/hdkeychain" vp "github.com/btcsuite/btcwallet/votingpool" "github.com/btcsuite/btcwallet/waddrmgr" "github.com/btcsuite/btcwallet/walletdb" _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) func TestLoadPoolAndDepositScript(t *testing.T) { tearDown, manager, pool := vp.TstCreatePool(t) defer tearDown() // setup poolID := "test" pubKeys := vp.TstPubKeys[0:3] err := vp.LoadAndCreateSeries(pool.TstNamespace(), manager, 1, poolID, 1, 2, pubKeys) if err != nil { t.Fatalf("Failed to create voting pool and series: %v", err) } // execute script, err := vp.LoadAndGetDepositScript(pool.TstNamespace(), manager, poolID, 1, 0, 0) if err != nil { t.Fatalf("Failed to get deposit script: %v", err) } // validate strScript := hex.EncodeToString(script) want := "5221035e94da75731a2153b20909017f62fcd49474c45f3b46282c0dafa8b40a3a312b2102e983a53dd20b7746dd100dfd2925b777436fc1ab1dd319433798924a5ce143e32102908d52a548ee9ef6b2d0ea67a3781a0381bc3570ad623564451e63757ff9393253ae" if want != strScript { t.Fatalf("Failed to get the right deposit script. Got %v, want %v", strScript, want) } } func TestLoadPoolAndCreateSeries(t *testing.T) { tearDown, manager, pool := vp.TstCreatePool(t) defer tearDown() poolID := "test" // first time, the voting pool is created pubKeys := vp.TstPubKeys[0:3] err := vp.LoadAndCreateSeries(pool.TstNamespace(), manager, 1, poolID, 1, 2, pubKeys) if err != nil { t.Fatalf("Creating voting pool and Creating series failed: %v", err) } // create another series where the voting pool is loaded this time pubKeys = vp.TstPubKeys[3:6] err = vp.LoadAndCreateSeries(pool.TstNamespace(), manager, 1, poolID, 2, 2, pubKeys) if err != nil { t.Fatalf("Loading voting pool and Creating series failed: %v", err) } } func TestLoadPoolAndReplaceSeries(t *testing.T) { tearDown, manager, pool := vp.TstCreatePool(t) defer tearDown() // setup poolID := "test" pubKeys := vp.TstPubKeys[0:3] err := vp.LoadAndCreateSeries(pool.TstNamespace(), manager, 1, poolID, 1, 2, pubKeys) if err != nil { t.Fatalf("Failed to create voting pool and series: %v", err) } pubKeys = vp.TstPubKeys[3:6] err = vp.LoadAndReplaceSeries(pool.TstNamespace(), manager, 1, poolID, 1, 2, pubKeys) if err != nil { t.Fatalf("Failed to replace series: %v", err) } } func TestLoadPoolAndEmpowerSeries(t *testing.T) { tearDown, manager, pool := vp.TstCreatePool(t) defer tearDown() // setup poolID := "test" pubKeys := vp.TstPubKeys[0:3] err := vp.LoadAndCreateSeries(pool.TstNamespace(), manager, 1, poolID, 1, 2, pubKeys) if err != nil { t.Fatalf("Creating voting pool and Creating series failed: %v", err) } vp.TstRunWithManagerUnlocked(t, pool.Manager(), func() { err = vp.LoadAndEmpowerSeries(pool.TstNamespace(), manager, poolID, 1, vp.TstPrivKeys[0]) }) if err != nil { t.Fatalf("Load voting pool and Empower series failed: %v", err) } } func TestDepositScriptAddress(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() tests := []struct { version uint32 series uint32 reqSigs uint32 pubKeys []string // map of branch:address (we only check the branch index at 0) addresses map[uint32]string }{ { version: 1, series: 1, reqSigs: 2, pubKeys: vp.TstPubKeys[0:3], addresses: map[uint32]string{ 0: "3Hb4xcebcKg4DiETJfwjh8sF4uDw9rqtVC", 1: "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", 2: "3Qt1EaKRD9g9FeL2DGkLLswhK1AKmmXFSe", 3: "3PbExiaztsSYgh6zeMswC49hLUwhTQ86XG", }, }, } for i, test := range tests { if err := pool.CreateSeries(test.version, test.series, test.reqSigs, test.pubKeys); err != nil { t.Fatalf("Cannot creates series %v", test.series) } for branch, expectedAddress := range test.addresses { addr, err := pool.DepositScriptAddress(test.series, vp.Branch(branch), vp.Index(0)) if err != nil { t.Fatalf("Failed to get DepositScriptAddress #%d: %v", i, err) } address := addr.EncodeAddress() if expectedAddress != address { t.Errorf("DepositScript #%d returned the wrong deposit script. Got %v, want %v", i, address, expectedAddress) } } } } func TestDepositScriptAddressForNonExistentSeries(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() _, err := pool.DepositScriptAddress(1, 0, 0) vp.TstCheckError(t, "", err, vp.ErrSeriesNotExists) } func TestDepositScriptAddressForHardenedPubKey(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() if err := pool.CreateSeries(1, 1, 2, vp.TstPubKeys[0:3]); err != nil { t.Fatalf("Cannot creates series") } // Ask for a DepositScriptAddress using an index for a hardened child, which should // fail as we use the extended public keys to derive childs. _, err := pool.DepositScriptAddress(1, 0, vp.Index(hdkeychain.HardenedKeyStart+1)) vp.TstCheckError(t, "", err, vp.ErrKeyChain) } func TestLoadPool(t *testing.T) { tearDown, mgr, pool := vp.TstCreatePool(t) defer tearDown() pool2, err := vp.Load(pool.TstNamespace(), mgr, pool.ID) if err != nil { t.Errorf("Error loading Pool: %v", err) } if !bytes.Equal(pool2.ID, pool.ID) { t.Errorf("Voting pool obtained from DB does not match the created one") } } func TestCreatePool(t *testing.T) { tearDown, mgr, pool := vp.TstCreatePool(t) defer tearDown() pool2, err := vp.Create(pool.TstNamespace(), mgr, []byte{0x02}) if err != nil { t.Errorf("Error creating Pool: %v", err) } if !bytes.Equal(pool2.ID, []byte{0x02}) { t.Errorf("Pool ID mismatch: got %v, want %v", pool2.ID, []byte{0x02}) } } func TestCreatePoolWhenAlreadyExists(t *testing.T) { tearDown, mgr, pool := vp.TstCreatePool(t) defer tearDown() _, err := vp.Create(pool.TstNamespace(), mgr, pool.ID) vp.TstCheckError(t, "", err, vp.ErrPoolAlreadyExists) } func TestCreateSeries(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() tests := []struct { version uint32 series uint32 reqSigs uint32 pubKeys []string }{ { version: 1, series: 1, reqSigs: 2, pubKeys: vp.TstPubKeys[0:3], }, { version: 1, series: 2, reqSigs: 3, pubKeys: vp.TstPubKeys[0:5], }, { version: 1, series: 3, reqSigs: 4, pubKeys: vp.TstPubKeys[0:7], }, { version: 1, series: 4, reqSigs: 5, pubKeys: vp.TstPubKeys[0:9], }, } for testNum, test := range tests { err := pool.CreateSeries(test.version, test.series, test.reqSigs, test.pubKeys[:]) if err != nil { t.Fatalf("%d: Cannot create series %d", testNum, test.series) } exists, err := pool.TstExistsSeries(test.series) if err != nil { t.Fatal(err) } if !exists { t.Errorf("%d: Series %d not in database", testNum, test.series) } } } func TestPoolCreateSeriesInvalidID(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() err := pool.CreateSeries(vp.CurrentVersion, 0, 1, vp.TstPubKeys[0:3]) vp.TstCheckError(t, "", err, vp.ErrSeriesIDInvalid) } func TestPoolCreateSeriesWhenAlreadyExists(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() pubKeys := vp.TstPubKeys[0:3] if err := pool.CreateSeries(1, 1, 1, pubKeys); err != nil { t.Fatalf("Cannot create series: %v", err) } err := pool.CreateSeries(1, 1, 1, pubKeys) vp.TstCheckError(t, "", err, vp.ErrSeriesAlreadyExists) } func TestPoolCreateSeriesIDNotSequential(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() pubKeys := vp.TstPubKeys[0:4] if err := pool.CreateSeries(1, 1, 2, pubKeys); err != nil { t.Fatalf("Cannot create series: %v", err) } err := pool.CreateSeries(1, 3, 2, pubKeys) vp.TstCheckError(t, "", err, vp.ErrSeriesIDNotSequential) } func TestPutSeriesErrors(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() tests := []struct { version uint32 reqSigs uint32 pubKeys []string err vp.ErrorCode msg string }{ { pubKeys: vp.TstPubKeys[0:1], err: vp.ErrTooFewPublicKeys, msg: "Should return error when passed too few pubkeys", }, { reqSigs: 5, pubKeys: vp.TstPubKeys[0:3], err: vp.ErrTooManyReqSignatures, msg: "Should return error when reqSigs > len(pubKeys)", }, { pubKeys: []string{vp.TstPubKeys[0], vp.TstPubKeys[1], vp.TstPubKeys[2], vp.TstPubKeys[0]}, err: vp.ErrKeyDuplicate, msg: "Should return error when passed duplicate pubkeys", }, { pubKeys: []string{"invalidxpub1", "invalidxpub2", "invalidxpub3"}, err: vp.ErrKeyChain, msg: "Should return error when passed invalid pubkey", }, { pubKeys: vp.TstPrivKeys[0:3], err: vp.ErrKeyIsPrivate, msg: "Should return error when passed private keys", }, } for i, test := range tests { err := pool.TstPutSeries(test.version, uint32(i+1), test.reqSigs, test.pubKeys) vp.TstCheckError(t, fmt.Sprintf("Create series #%d", i), err, test.err) } } func TestCannotReplaceEmpoweredSeries(t *testing.T) { tearDown, mgr, pool := vp.TstCreatePool(t) defer tearDown() seriesID := uint32(1) if err := pool.CreateSeries(1, seriesID, 3, vp.TstPubKeys[0:4]); err != nil { t.Fatalf("Failed to create series: %v", err) } vp.TstRunWithManagerUnlocked(t, mgr, func() { if err := pool.EmpowerSeries(seriesID, vp.TstPrivKeys[1]); err != nil { t.Fatalf("Failed to empower series: %v", err) } }) err := pool.ReplaceSeries(1, seriesID, 2, []string{vp.TstPubKeys[0], vp.TstPubKeys[2], vp.TstPubKeys[3]}) vp.TstCheckError(t, "", err, vp.ErrSeriesAlreadyEmpowered) } func TestReplaceNonExistingSeries(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() pubKeys := vp.TstPubKeys[0:3] err := pool.ReplaceSeries(1, 1, 3, pubKeys) vp.TstCheckError(t, "", err, vp.ErrSeriesNotExists) } type replaceSeriesTestEntry struct { testID int orig seriesRaw replaceWith seriesRaw } var replaceSeriesTestData = []replaceSeriesTestEntry{ { testID: 0, orig: seriesRaw{ id: 1, version: 1, reqSigs: 2, pubKeys: vp.CanonicalKeyOrder([]string{vp.TstPubKeys[0], vp.TstPubKeys[1], vp.TstPubKeys[2], vp.TstPubKeys[4]}), }, replaceWith: seriesRaw{ id: 1, version: 1, reqSigs: 1, pubKeys: vp.CanonicalKeyOrder(vp.TstPubKeys[3:6]), }, }, { testID: 1, orig: seriesRaw{ id: 2, version: 1, reqSigs: 2, pubKeys: vp.CanonicalKeyOrder(vp.TstPubKeys[0:3]), }, replaceWith: seriesRaw{ id: 2, version: 1, reqSigs: 2, pubKeys: vp.CanonicalKeyOrder(vp.TstPubKeys[3:7]), }, }, { testID: 2, orig: seriesRaw{ id: 3, version: 1, reqSigs: 8, pubKeys: vp.CanonicalKeyOrder(vp.TstPubKeys[0:9]), }, replaceWith: seriesRaw{ id: 3, version: 1, reqSigs: 7, pubKeys: vp.CanonicalKeyOrder(vp.TstPubKeys[0:8]), }, }, } func TestReplaceExistingSeries(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() for _, data := range replaceSeriesTestData { seriesID := data.orig.id testID := data.testID if err := pool.CreateSeries(data.orig.version, seriesID, data.orig.reqSigs, data.orig.pubKeys); err != nil { t.Fatalf("Test #%d: failed to create series in replace series setup: %v", testID, err) } if err := pool.ReplaceSeries(data.replaceWith.version, seriesID, data.replaceWith.reqSigs, data.replaceWith.pubKeys); err != nil { t.Errorf("Test #%d: replaceSeries failed: %v", testID, err) } validateReplaceSeries(t, pool, testID, data.replaceWith) } } // validateReplaceSeries validate the created series stored in the system // corresponds to the series we replaced the original with. func validateReplaceSeries(t *testing.T, pool *vp.Pool, testID int, replacedWith seriesRaw) { seriesID := replacedWith.id series := pool.Series(seriesID) if series == nil { t.Fatalf("Test #%d Series #%d: series not found", testID, seriesID) } pubKeys := series.TstGetRawPublicKeys() // Check that the public keys match what we expect. if !reflect.DeepEqual(replacedWith.pubKeys, pubKeys) { t.Errorf("Test #%d, series #%d: pubkeys mismatch. Got %v, want %v", testID, seriesID, pubKeys, replacedWith.pubKeys) } // Check number of required sigs. if replacedWith.reqSigs != series.TstGetReqSigs() { t.Errorf("Test #%d, series #%d: required signatures mismatch. Got %d, want %d", testID, seriesID, series.TstGetReqSigs(), replacedWith.reqSigs) } // Check that the series is not empowered. if series.IsEmpowered() { t.Errorf("Test #%d, series #%d: series is empowered but should not be", testID, seriesID) } } func TestEmpowerSeries(t *testing.T) { tearDown, mgr, pool := vp.TstCreatePool(t) defer tearDown() seriesID := uint32(1) if err := pool.CreateSeries(1, seriesID, 2, vp.TstPubKeys[0:3]); err != nil { t.Fatalf("Failed to create series: %v", err) } vp.TstRunWithManagerUnlocked(t, mgr, func() { if err := pool.EmpowerSeries(seriesID, vp.TstPrivKeys[0]); err != nil { t.Errorf("Failed to empower series: %v", err) } }) } func TestEmpowerSeriesErrors(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() seriesID := uint32(1) if err := pool.CreateSeries(1, seriesID, 2, vp.TstPubKeys[0:3]); err != nil { t.Fatalf("Failed to create series: %v", err) } tests := []struct { seriesID uint32 key string err vp.ErrorCode }{ { seriesID: 2, key: vp.TstPrivKeys[0], // Invalid series. err: vp.ErrSeriesNotExists, }, { seriesID: seriesID, key: "NONSENSE", // Invalid private key. err: vp.ErrKeyChain, }, { seriesID: seriesID, key: vp.TstPubKeys[5], // Wrong type of key. err: vp.ErrKeyIsPublic, }, { seriesID: seriesID, key: vp.TstPrivKeys[5], // Key not corresponding to public key. err: vp.ErrKeysPrivatePublicMismatch, }, } for i, test := range tests { err := pool.EmpowerSeries(test.seriesID, test.key) vp.TstCheckError(t, fmt.Sprintf("EmpowerSeries #%d", i), err, test.err) } } func TestPoolSeries(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() expectedPubKeys := vp.CanonicalKeyOrder(vp.TstPubKeys[0:3]) if err := pool.CreateSeries(vp.CurrentVersion, 1, 2, expectedPubKeys); err != nil { t.Fatalf("Failed to create series: %v", err) } series := pool.Series(1) if series == nil { t.Fatal("Series() returned nil") } pubKeys := series.TstGetRawPublicKeys() if !reflect.DeepEqual(pubKeys, expectedPubKeys) { t.Errorf("Series pubKeys mismatch. Got %v, want %v", pubKeys, expectedPubKeys) } } type seriesRaw struct { id uint32 version uint32 reqSigs uint32 pubKeys []string privKeys []string } type testLoadAllSeriesTest struct { id int series []seriesRaw } var testLoadAllSeriesTests = []testLoadAllSeriesTest{ { id: 1, series: []seriesRaw{ { id: 1, version: 1, reqSigs: 2, pubKeys: vp.TstPubKeys[0:3], }, { id: 2, version: 1, reqSigs: 2, pubKeys: vp.TstPubKeys[3:6], privKeys: vp.TstPrivKeys[4:5], }, { id: 3, version: 1, reqSigs: 3, pubKeys: vp.TstPubKeys[0:5], privKeys: []string{vp.TstPrivKeys[0], vp.TstPrivKeys[2]}, }, }, }, { id: 2, series: []seriesRaw{ { id: 1, version: 1, reqSigs: 2, pubKeys: vp.TstPubKeys[0:3], }, }, }, } func setUpLoadAllSeries(t *testing.T, namespace walletdb.Namespace, mgr *waddrmgr.Manager, test testLoadAllSeriesTest) *vp.Pool { pool, err := vp.Create(namespace, mgr, []byte{byte(test.id + 1)}) if err != nil { t.Fatalf("Voting Pool creation failed: %v", err) } for _, series := range test.series { err := pool.CreateSeries(series.version, series.id, series.reqSigs, series.pubKeys) if err != nil { t.Fatalf("Test #%d Series #%d: failed to create series: %v", test.id, series.id, err) } for _, privKey := range series.privKeys { vp.TstRunWithManagerUnlocked(t, mgr, func() { if err := pool.EmpowerSeries(series.id, privKey); err != nil { t.Fatalf("Test #%d Series #%d: empower with privKey %v failed: %v", test.id, series.id, privKey, err) } }) } } return pool } func TestLoadAllSeries(t *testing.T) { tearDown, manager, pool := vp.TstCreatePool(t) defer tearDown() for _, test := range testLoadAllSeriesTests { pool := setUpLoadAllSeries(t, pool.TstNamespace(), manager, test) pool.TstEmptySeriesLookup() vp.TstRunWithManagerUnlocked(t, manager, func() { if err := pool.LoadAllSeries(); err != nil { t.Fatalf("Test #%d: failed to load voting pool: %v", test.id, err) } }) for _, seriesData := range test.series { validateLoadAllSeries(t, pool, test.id, seriesData) } } } func validateLoadAllSeries(t *testing.T, pool *vp.Pool, testID int, seriesData seriesRaw) { series := pool.Series(seriesData.id) // Check that the series exists. if series == nil { t.Errorf("Test #%d, series #%d: series not found", testID, seriesData.id) } // Check that reqSigs is what we inserted. if seriesData.reqSigs != series.TstGetReqSigs() { t.Errorf("Test #%d, series #%d: required sigs are different. Got %d, want %d", testID, seriesData.id, series.TstGetReqSigs(), seriesData.reqSigs) } // Check that pubkeys and privkeys have the same length. publicKeys := series.TstGetRawPublicKeys() privateKeys := series.TstGetRawPrivateKeys() if len(privateKeys) != len(publicKeys) { t.Errorf("Test #%d, series #%d: wrong number of private keys. Got %d, want %d", testID, seriesData.id, len(privateKeys), len(publicKeys)) } sortedKeys := vp.CanonicalKeyOrder(seriesData.pubKeys) if !reflect.DeepEqual(publicKeys, sortedKeys) { t.Errorf("Test #%d, series #%d: public keys mismatch. Got %v, want %v", testID, seriesData.id, sortedKeys, publicKeys) } // Check that privkeys are what we inserted (length and content). foundPrivKeys := make([]string, 0, len(seriesData.pubKeys)) for _, privateKey := range privateKeys { if privateKey != "" { foundPrivKeys = append(foundPrivKeys, privateKey) } } foundPrivKeys = vp.CanonicalKeyOrder(foundPrivKeys) privKeys := vp.CanonicalKeyOrder(seriesData.privKeys) if !reflect.DeepEqual(privKeys, foundPrivKeys) { t.Errorf("Test #%d, series #%d: private keys mismatch. Got %v, want %v", testID, seriesData.id, foundPrivKeys, privKeys) } } func reverse(inKeys []*hdkeychain.ExtendedKey) []*hdkeychain.ExtendedKey { revKeys := make([]*hdkeychain.ExtendedKey, len(inKeys)) max := len(inKeys) for i := range inKeys { revKeys[i] = inKeys[max-i-1] } return revKeys } func TestBranchOrderZero(t *testing.T) { // test change address branch (0) for 0-10 keys for i := 0; i < 10; i++ { inKeys := createTestPubKeys(t, i, 0) wantKeys := reverse(inKeys) resKeys, err := vp.TstBranchOrder(inKeys, 0) if err != nil { t.Fatalf("Error ordering keys: %v", err) } if len(resKeys) != len(wantKeys) { t.Errorf("BranchOrder: wrong no. of keys. Got: %d, want %d", len(resKeys), len(inKeys)) return } for keyIdx := 0; i < len(inKeys); i++ { if resKeys[keyIdx] != wantKeys[keyIdx] { t.Errorf("BranchOrder(keys, 0): got %v, want %v", resKeys[i], wantKeys[i]) } } } } func TestBranchOrderNonZero(t *testing.T) { maxBranch := 5 maxTail := 4 // Test branch reordering for branch no. > 0. We test all branch values // within [1, 5] in a slice of up to 9 (maxBranch-1 + branch-pivot + // maxTail) keys. Hopefully that covers all combinations and edge-cases. // We test the case where branch no. is 0 elsewhere. for branch := 1; branch <= maxBranch; branch++ { for j := 0; j <= maxTail; j++ { first := createTestPubKeys(t, branch-1, 0) pivot := createTestPubKeys(t, 1, branch) last := createTestPubKeys(t, j, branch+1) inKeys := append(append(first, pivot...), last...) wantKeys := append(append(pivot, first...), last...) resKeys, err := vp.TstBranchOrder(inKeys, vp.Branch(branch)) if err != nil { t.Fatalf("Error ordering keys: %v", err) } if len(resKeys) != len(inKeys) { t.Errorf("BranchOrder: wrong no. of keys. Got: %d, want %d", len(resKeys), len(inKeys)) } for idx := 0; idx < len(inKeys); idx++ { if resKeys[idx] != wantKeys[idx] { o, w, g := branchErrorFormat(inKeys, wantKeys, resKeys) t.Errorf("Branch: %d\nOrig: %v\nGot: %v\nWant: %v", branch, o, g, w) } } } } } func TestBranchOrderNilKeys(t *testing.T) { _, err := vp.TstBranchOrder(nil, 1) vp.TstCheckError(t, "", err, vp.ErrInvalidValue) } func TestBranchOrderInvalidBranch(t *testing.T) { _, err := vp.TstBranchOrder(createTestPubKeys(t, 3, 0), 4) vp.TstCheckError(t, "", err, vp.ErrInvalidBranch) } func branchErrorFormat(orig, want, got []*hdkeychain.ExtendedKey) (origOrder, wantOrder, gotOrder []int) { origOrder = []int{} origMap := make(map[*hdkeychain.ExtendedKey]int) for i, key := range orig { origMap[key] = i + 1 origOrder = append(origOrder, i+1) } wantOrder = []int{} for _, key := range want { wantOrder = append(wantOrder, origMap[key]) } gotOrder = []int{} for _, key := range got { gotOrder = append(gotOrder, origMap[key]) } return origOrder, wantOrder, gotOrder } func createTestPubKeys(t *testing.T, number, offset int) []*hdkeychain.ExtendedKey { xpubRaw := "xpub661MyMwAqRbcFwdnYF5mvCBY54vaLdJf8c5ugJTp5p7PqF9J1USgBx12qYMnZ9yUiswV7smbQ1DSweMqu8wn7Jociz4PWkuJ6EPvoVEgMw7" xpubKey, err := hdkeychain.NewKeyFromString(xpubRaw) if err != nil { t.Fatalf("Failed to generate new key: %v", err) } keys := make([]*hdkeychain.ExtendedKey, number) for i := uint32(0); i < uint32(len(keys)); i++ { chPubKey, err := xpubKey.Child(i + uint32(offset)) if err != nil { t.Fatalf("Failed to generate child key: %v", err) } keys[i] = chPubKey } return keys } func TestReverse(t *testing.T) { // Test the utility function that reverses a list of public keys. // 11 is arbitrary. for numKeys := 0; numKeys < 11; numKeys++ { keys := createTestPubKeys(t, numKeys, 0) revRevKeys := reverse(reverse(keys)) if len(keys) != len(revRevKeys) { t.Errorf("Reverse(Reverse(x)): the no. pubkeys changed. Got %d, want %d", len(revRevKeys), len(keys)) } for i := 0; i < len(keys); i++ { if keys[i] != revRevKeys[i] { t.Errorf("Reverse(Reverse(x)) != x. Got %v, want %v", revRevKeys[i], keys[i]) } } } } func TestEmpowerSeriesNeuterFailed(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() seriesID := uint32(1) err := pool.CreateSeries(1, seriesID, 2, vp.TstPubKeys[0:3]) if err != nil { t.Fatalf("Failed to create series: %v", err) } // A private key with bad version (0xffffffff) will trigger an // error in (k *ExtendedKey).Neuter and the associated error path // in EmpowerSeries. badKey := "wM5uZBNTYmaYGiK8VaGi7zPGbZGLuQgDiR2Zk4nGfbRFLXwHGcMUdVdazRpNHFSR7X7WLmzzbAq8dA1ViN6eWKgKqPye1rJTDQTvBiXvZ7E3nmdx" err = pool.EmpowerSeries(seriesID, badKey) vp.TstCheckError(t, "", err, vp.ErrKeyNeuter) } func TestDecryptExtendedKeyCannotCreateResultKey(t *testing.T) { tearDown, mgr, pool := vp.TstCreatePool(t) defer tearDown() // the plaintext not being base58 encoded triggers the error cipherText, err := mgr.Encrypt(waddrmgr.CKTPublic, []byte("not-base58-encoded")) if err != nil { t.Fatalf("Failed to encrypt plaintext: %v", err) } _, err = pool.TstDecryptExtendedKey(waddrmgr.CKTPublic, cipherText) vp.TstCheckError(t, "", err, vp.ErrKeyChain) } func TestDecryptExtendedKeyCannotDecrypt(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() _, err := pool.TstDecryptExtendedKey(waddrmgr.CKTPublic, []byte{}) vp.TstCheckError(t, "", err, vp.ErrCrypto) } func TestPoolChangeAddress(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() pubKeys := vp.TstPubKeys[1:4] vp.TstCreateSeries(t, pool, []vp.TstSeriesDef{{ReqSigs: 2, PubKeys: pubKeys, SeriesID: 1}}) addr := vp.TstNewChangeAddress(t, pool, 1, 0) checkPoolAddress(t, addr, 1, 0, 0) // When the series is not active, we should get an error. pubKeys = vp.TstPubKeys[3:6] vp.TstCreateSeries(t, pool, []vp.TstSeriesDef{{ReqSigs: 2, PubKeys: pubKeys, SeriesID: 2, Inactive: true}}) _, err := pool.ChangeAddress(2, 0) vp.TstCheckError(t, "", err, vp.ErrSeriesNotActive) } func TestPoolWithdrawalAddress(t *testing.T) { tearDown, _, pool := vp.TstCreatePool(t) defer tearDown() pubKeys := vp.TstPubKeys[1:4] vp.TstCreateSeries(t, pool, []vp.TstSeriesDef{{ReqSigs: 2, PubKeys: pubKeys, SeriesID: 1}}) addr := vp.TstNewWithdrawalAddress(t, pool, 1, 0, 0) checkPoolAddress(t, addr, 1, 0, 0) // When the requested address is not present in the set of used addresses // for that Pool, we should get an error. _, err := pool.WithdrawalAddress(1, 2, 3) vp.TstCheckError(t, "", err, vp.ErrWithdrawFromUnusedAddr) } func checkPoolAddress(t *testing.T, addr vp.PoolAddress, seriesID uint32, branch vp.Branch, index vp.Index) { if addr.SeriesID() != seriesID { t.Fatalf("Wrong SeriesID; got %d, want %d", addr.SeriesID(), seriesID) } if addr.Branch() != branch { t.Fatalf("Wrong Branch; got %d, want %d", addr.Branch(), branch) } if addr.Index() != index { t.Fatalf("Wrong Index; got %d, want %d", addr.Index(), index) } }