2022-09-01 21:21:53 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
"encoding/hex"
|
2022-09-01 21:21:53 +02:00
|
|
|
"encoding/json"
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
"net"
|
2022-09-13 22:33:24 +02:00
|
|
|
"strconv"
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
"sync"
|
2022-09-01 21:21:53 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/lbryio/herald.go/db"
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
"github.com/lbryio/herald.go/internal"
|
2022-09-01 21:21:53 +02:00
|
|
|
"github.com/lbryio/lbcd/chaincfg"
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
"github.com/lbryio/lbcd/txscript"
|
|
|
|
"github.com/lbryio/lbcutil"
|
2022-09-01 21:21:53 +02:00
|
|
|
)
|
|
|
|
|
2022-09-13 22:05:11 +02:00
|
|
|
// Source: test_variety_of_transactions_and_longish_history (lbry-sdk/tests/integration/transactions)
|
|
|
|
const regTestDBPath = "../testdata/test_variety_of_transactions/lbry-rocksdb"
|
2022-09-13 22:33:24 +02:00
|
|
|
const regTestHeight = 502
|
2022-09-13 22:05:11 +02:00
|
|
|
|
|
|
|
var regTestAddrs = [30]string{
|
|
|
|
"mtgiQkd35xpx3TaZ4RBNirf3uSMQ8tXQ7z",
|
|
|
|
"mqMjBtzGTtRty7Y54RqeNLk9QE8rYUfpm3",
|
|
|
|
"n2q8ASDZmib4adu2eU4dPvVvjYeU97pks4",
|
|
|
|
"mzxYWTJogAtduNaeyH9pSSmBSPkJj33HDJ",
|
|
|
|
"mweCKeZkeUUi8RQdHry3Mziphb87vCwiiW",
|
|
|
|
"mp7ZuiZgBNJHFX6DVmeZrCj8SuzVQNDLwb",
|
|
|
|
"n2zZoBocGCcxe6jFo1anbbAsUFMPXdYfnY",
|
|
|
|
"msps28KwRJF77DxhzqD98prdwCrZwdUxJc",
|
|
|
|
"mjvkjuss63pq2mpsRn4Q5tsNKVMLG9qUt7",
|
|
|
|
"miF9cJn8HiX6vsorRDXtZEgcW7BeWowqkX",
|
|
|
|
"mx87wRYFchYaLjXyNaboMuEMRLRboFSPDD",
|
|
|
|
"mhvb94idtQvTSCQk9EB16wLLkSrbWizPRG",
|
|
|
|
"mx3Fu8FDM4nKR9VYtHWPtSGKVt1D588Ay1",
|
|
|
|
"mhqvhX7kLNQ2bUNWZxMhE1z6QEJKrqdV8T",
|
|
|
|
"mgekw8L4xEezFtkYdSarL4sk5Sc8n9UtzG",
|
|
|
|
"myhFrTz99ZHwbGo7qV4D7fJKfji7YJ3vZ8",
|
|
|
|
"mnf8UCVoo6DBq6Tg4QpnFFdV1mFVHi43TF",
|
|
|
|
"mn7hKyh6EA8oLAPkvTd9vPEgzLRejLxkj2",
|
|
|
|
"msfarwFff7LX6DkXk295x3YMnJtR5Yw8uy",
|
|
|
|
"mn8sUv6ryiLn4kzssBTqNaB1oL6qcKDzJ4",
|
|
|
|
"mhwgeQFyi1z1RxNR1CphE8PcwG2xBWcxDp",
|
|
|
|
"n2jKpDXhVaQHiKqhdQYwwykhoYtKtbh8P1",
|
|
|
|
"mhnt4btqpAuiNwjAfFxPEaA4ekCE8faRYN",
|
|
|
|
"mmTFCt6Du1VsdxSKc7f21vYsT75KnRy7NM",
|
|
|
|
"mm1nx1xSmgRponM5tmdq15KREa7f6M36La",
|
|
|
|
"mxMXmMKUqoj19hxEA5r3hZJgirT6nCQh14",
|
|
|
|
"mx2L4iqNGzpuNNsDmjvCpcomefDWLAjdv1",
|
|
|
|
"mohJcUzQdCYL7nEySKNQC8PUzowNS5gGvo",
|
|
|
|
"mjv1vErZiDXsh9TvBDGCBpzobZx7aVYuy7",
|
|
|
|
"mwDPTZzHsM6p1DfDnBeojDLRCDceTcejkT",
|
|
|
|
}
|
|
|
|
|
|
|
|
// const dbPath := "/Users/swdev1/hub/scribe_db.599529/lbry-rocksdb"
|
|
|
|
// const dbPath := "/mnt/d/data/snapshot_1072108/lbry-rocksdb"
|
|
|
|
|
2022-09-08 20:17:52 +02:00
|
|
|
func TestServerGetHeight(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
2022-09-13 22:05:11 +02:00
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
2022-09-08 20:17:52 +02:00
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
s := &BlockchainBlockService{
|
2022-09-08 20:17:52 +02:00
|
|
|
DB: db,
|
2022-09-13 22:05:11 +02:00
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
2022-09-08 20:17:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
req := BlockGetServerHeightReq{}
|
|
|
|
var resp *BlockGetServerHeightResp
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
err = s.Get_server_height(&req, &resp)
|
2022-09-08 20:17:52 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("handler err: %v", err)
|
|
|
|
}
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unmarshal err: %v", err)
|
|
|
|
}
|
|
|
|
t.Logf("resp: %v", string(marshalled))
|
2022-09-13 22:33:24 +02:00
|
|
|
if string(marshalled) != strconv.FormatInt(regTestHeight, 10) {
|
2022-09-13 22:05:11 +02:00
|
|
|
t.Errorf("bad height: %v", string(marshalled))
|
|
|
|
}
|
2022-09-08 20:17:52 +02:00
|
|
|
}
|
|
|
|
|
2022-09-01 21:21:53 +02:00
|
|
|
func TestGetChunk(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
2022-09-13 22:05:11 +02:00
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
2022-09-01 21:21:53 +02:00
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
s := &BlockchainBlockService{
|
2022-09-01 21:21:53 +02:00
|
|
|
DB: db,
|
2022-09-13 22:05:11 +02:00
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
2022-09-01 21:21:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for index := 0; index < 10; index++ {
|
2022-09-07 20:49:34 +02:00
|
|
|
req := BlockGetChunkReq(index)
|
2022-09-08 18:50:06 +02:00
|
|
|
var resp *BlockGetChunkResp
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
err := s.Get_chunk(&req, &resp)
|
2022-09-01 21:21:53 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("index: %v handler err: %v", index, err)
|
|
|
|
}
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("index: %v unmarshal err: %v", index, err)
|
|
|
|
}
|
|
|
|
t.Logf("index: %v resp: %v", index, string(marshalled))
|
2022-09-13 22:05:11 +02:00
|
|
|
switch index {
|
|
|
|
case 0, 1, 2, 3, 4:
|
|
|
|
if len(*resp) != (CHUNK_SIZE * HEADER_SIZE * 2) {
|
|
|
|
t.Errorf("index: %v bad length: %v", index, len(*resp))
|
|
|
|
}
|
|
|
|
case 5:
|
2022-09-13 22:33:24 +02:00
|
|
|
if len(*resp) != 23*112*2 {
|
2022-09-13 22:05:11 +02:00
|
|
|
t.Errorf("index: %v bad length: %v", index, len(*resp))
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if len(*resp) != 0 {
|
|
|
|
t.Errorf("index: %v bad length: %v", index, len(*resp))
|
|
|
|
}
|
2022-09-01 21:21:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetHeader(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
2022-09-13 22:05:11 +02:00
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
2022-09-01 21:21:53 +02:00
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
s := &BlockchainBlockService{
|
2022-09-01 21:21:53 +02:00
|
|
|
DB: db,
|
2022-09-13 22:05:11 +02:00
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
2022-09-01 21:21:53 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 22:05:11 +02:00
|
|
|
for height := 0; height < 700; height += 100 {
|
2022-09-07 20:49:34 +02:00
|
|
|
req := BlockGetHeaderReq(height)
|
|
|
|
var resp *BlockGetHeaderResp
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
err := s.Get_header(&req, &resp)
|
2022-09-13 22:05:11 +02:00
|
|
|
if err != nil && height <= 500 {
|
2022-09-01 21:21:53 +02:00
|
|
|
t.Errorf("height: %v handler err: %v", height, err)
|
|
|
|
}
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("height: %v unmarshal err: %v", height, err)
|
|
|
|
}
|
|
|
|
t.Logf("height: %v resp: %v", height, string(marshalled))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
func TestHeaders(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s := &BlockchainBlockService{
|
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
|
|
|
}
|
|
|
|
|
|
|
|
for height := uint32(0); height < 700; height += 100 {
|
|
|
|
req := BlockHeadersReq{
|
|
|
|
StartHeight: height,
|
|
|
|
Count: 1,
|
|
|
|
CpHeight: 0,
|
|
|
|
B64: false,
|
|
|
|
}
|
|
|
|
var resp *BlockHeadersResp
|
|
|
|
err := s.Headers(&req, &resp)
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("height: %v unmarshal err: %v", height, err)
|
|
|
|
}
|
|
|
|
t.Logf("height: %v resp: %v", height, string(marshalled))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHeadersSubscribe(t *testing.T) {
|
2022-10-15 17:00:58 +02:00
|
|
|
args := MakeDefaultTestArgs()
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
secondaryPath := "asdf"
|
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-15 17:00:58 +02:00
|
|
|
sm := newSessionManager(db, args, &chaincfg.RegressionNetParams, DefaultMaxSessions, DefaultSessionTimeout)
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
sm.start()
|
|
|
|
defer sm.stop()
|
|
|
|
|
|
|
|
client1, server1 := net.Pipe()
|
|
|
|
sess1 := sm.addSession(server1)
|
|
|
|
client2, server2 := net.Pipe()
|
|
|
|
sess2 := sm.addSession(server2)
|
|
|
|
|
|
|
|
// Set up logic to read a notification.
|
|
|
|
var received sync.WaitGroup
|
|
|
|
recv := func(client net.Conn) {
|
|
|
|
buf := make([]byte, 1024)
|
|
|
|
len, err := client.Read(buf)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("read err: %v", err)
|
|
|
|
}
|
|
|
|
t.Logf("len: %v notification: %v", len, string(buf))
|
|
|
|
received.Done()
|
|
|
|
}
|
|
|
|
received.Add(2)
|
|
|
|
go recv(client1)
|
|
|
|
go recv(client2)
|
|
|
|
|
|
|
|
s1 := &BlockchainHeadersService{
|
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
|
|
|
sessionMgr: sm,
|
|
|
|
session: sess1,
|
|
|
|
}
|
|
|
|
s2 := &BlockchainHeadersService{
|
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
|
|
|
sessionMgr: sm,
|
|
|
|
session: sess2,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subscribe with Raw: false.
|
|
|
|
req1 := HeadersSubscribeReq{Raw: false}
|
|
|
|
var r any
|
|
|
|
err = s1.Subscribe(&req1, &r)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("handler err: %v", err)
|
|
|
|
}
|
|
|
|
resp1 := r.(*HeadersSubscribeResp)
|
|
|
|
marshalled1, err := json.MarshalIndent(resp1, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unmarshal err: %v", err)
|
|
|
|
}
|
|
|
|
// Subscribe with Raw: true.
|
|
|
|
t.Logf("resp: %v", string(marshalled1))
|
|
|
|
req2 := HeadersSubscribeReq{Raw: true}
|
|
|
|
err = s2.Subscribe(&req2, &r)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("handler err: %v", err)
|
|
|
|
}
|
|
|
|
resp2 := r.(*HeadersSubscribeRawResp)
|
|
|
|
marshalled2, err := json.MarshalIndent(resp2, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unmarshal err: %v", err)
|
|
|
|
}
|
|
|
|
t.Logf("resp: %v", string(marshalled2))
|
|
|
|
|
|
|
|
// Now send a notification.
|
|
|
|
header500, err := hex.DecodeString("00000020e9537f98ae80a3aa0936dd424439b2b9305e5e9d9d5c7aa571b4422c447741e739b3109304ed4f0330d6854271db17da221559a46b68db4ceecfebd9f0c75dbe0100000000000000000000000000000000000000000000000000000000000000b3e02063ffff7f2001000000")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("decode err: %v", err)
|
|
|
|
}
|
|
|
|
note1 := headerNotification{
|
|
|
|
HeightHash: internal.HeightHash{Height: 500},
|
|
|
|
blockHeader: [112]byte{},
|
|
|
|
blockHeaderElectrum: nil,
|
|
|
|
blockHeaderStr: "",
|
|
|
|
}
|
|
|
|
copy(note1.blockHeader[:], header500)
|
|
|
|
t.Logf("sending notification")
|
|
|
|
sm.doNotify(note1)
|
|
|
|
|
|
|
|
t.Logf("waiting to receive notification(s)...")
|
|
|
|
received.Wait()
|
|
|
|
}
|
|
|
|
|
2022-09-01 21:21:53 +02:00
|
|
|
func TestGetBalance(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
2022-09-13 22:05:11 +02:00
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
2022-09-01 21:21:53 +02:00
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-07 20:49:34 +02:00
|
|
|
s := &BlockchainAddressService{
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
2022-09-01 21:21:53 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 22:05:11 +02:00
|
|
|
for _, addr := range regTestAddrs {
|
2022-09-07 20:49:34 +02:00
|
|
|
req := AddressGetBalanceReq{addr}
|
|
|
|
var resp *AddressGetBalanceResp
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
err := s.Get_balance(&req, &resp)
|
2022-09-01 21:21:53 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("address: %v handler err: %v", addr, err)
|
|
|
|
}
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("address: %v unmarshal err: %v", addr, err)
|
|
|
|
}
|
|
|
|
t.Logf("address: %v resp: %v", addr, string(marshalled))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetHistory(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
2022-09-13 22:05:11 +02:00
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
2022-09-01 21:21:53 +02:00
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-07 20:49:34 +02:00
|
|
|
s := &BlockchainAddressService{
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
2022-09-01 21:21:53 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 22:05:11 +02:00
|
|
|
for _, addr := range regTestAddrs {
|
2022-09-07 20:49:34 +02:00
|
|
|
req := AddressGetHistoryReq{addr}
|
|
|
|
var resp *AddressGetHistoryResp
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
err := s.Get_history(&req, &resp)
|
2022-09-01 21:21:53 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("address: %v handler err: %v", addr, err)
|
|
|
|
}
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("address: %v unmarshal err: %v", addr, err)
|
|
|
|
}
|
|
|
|
t.Logf("address: %v resp: %v", addr, string(marshalled))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestListUnspent(t *testing.T) {
|
|
|
|
secondaryPath := "asdf"
|
2022-09-13 22:05:11 +02:00
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
2022-09-01 21:21:53 +02:00
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-07 20:49:34 +02:00
|
|
|
s := &BlockchainAddressService{
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
2022-09-01 21:21:53 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 22:05:11 +02:00
|
|
|
for _, addr := range regTestAddrs {
|
2022-09-07 20:49:34 +02:00
|
|
|
req := AddressListUnspentReq{addr}
|
|
|
|
var resp *AddressListUnspentResp
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
err := s.Listunspent(&req, &resp)
|
2022-09-01 21:21:53 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("address: %v handler err: %v", addr, err)
|
|
|
|
}
|
|
|
|
marshalled, err := json.MarshalIndent(resp, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("address: %v unmarshal err: %v", addr, err)
|
|
|
|
}
|
|
|
|
t.Logf("address: %v resp: %v", addr, string(marshalled))
|
|
|
|
}
|
|
|
|
}
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
|
|
|
|
func TestAddressSubscribe(t *testing.T) {
|
2022-10-15 17:00:58 +02:00
|
|
|
args := MakeDefaultTestArgs()
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
secondaryPath := "asdf"
|
|
|
|
db, toDefer, err := db.GetProdDB(regTestDBPath, secondaryPath)
|
|
|
|
defer toDefer()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-15 17:00:58 +02:00
|
|
|
sm := newSessionManager(db, args, &chaincfg.RegressionNetParams, DefaultMaxSessions, DefaultSessionTimeout)
|
Add subscribe/unsubscribe RPCs. Add session, sessionManager, and serve JSON RPC (without HTTP). (#66)
* Move and rename BlockchainCodec, BlockchainCodecRequest.
These are not specifically "blockchain", rather they are
specific to how gorilla/rpc works.
* Move claimtrie-related service/handlers to jsonrpc_claimtrie.go.
* Pull out decode logic into named func newBlockHeaderElectrum().
* Rename BlockchainService -> BlockchainBlockService.
* Drop http.Request arg from handlers, and use RegisterTCPService().
* Implement GetStatus() to pull data from HashXStatus table.
* Make the service objects independent, so we don't have inheritance.
* Add core session/subscription logic (session.go).
Implement subsribe/unsubscribe handlers.
* Support both pure JSON and JSON-over-HTTP services.
Forward NotifierChan messages to sessionManager.
* Only assign default port (50001) if neither --json-rpc-port nor
--json-rpc-http-port are specified.
* Handle failures with goto instead of break. Update error logging.
* Add --max-sessions, --session-timeout args. Enforce max sessions.
* Changes to make session.go testable. Conn created with Pipe()
used in testing has no unique Addr.
* Add tests for headers, headers.subscribe, address.subscribe.
* HashXStatus, HashXMempoolStatus not populated by default. Fix GetStatus().
* Use time.Ticker object to drive management activity.
2022-10-04 16:05:06 +02:00
|
|
|
sm.start()
|
|
|
|
defer sm.stop()
|
|
|
|
|
|
|
|
client1, server1 := net.Pipe()
|
|
|
|
sess1 := sm.addSession(server1)
|
|
|
|
client2, server2 := net.Pipe()
|
|
|
|
sess2 := sm.addSession(server2)
|
|
|
|
|
|
|
|
// Set up logic to read a notification.
|
|
|
|
var received sync.WaitGroup
|
|
|
|
recv := func(client net.Conn) {
|
|
|
|
buf := make([]byte, 1024)
|
|
|
|
len, err := client.Read(buf)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("read err: %v", err)
|
|
|
|
}
|
|
|
|
t.Logf("len: %v notification: %v", len, string(buf))
|
|
|
|
received.Done()
|
|
|
|
}
|
|
|
|
received.Add(2)
|
|
|
|
go recv(client1)
|
|
|
|
go recv(client2)
|
|
|
|
|
|
|
|
s1 := &BlockchainAddressService{
|
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
|
|
|
sessionMgr: sm,
|
|
|
|
session: sess1,
|
|
|
|
}
|
|
|
|
s2 := &BlockchainAddressService{
|
|
|
|
DB: db,
|
|
|
|
Chain: &chaincfg.RegressionNetParams,
|
|
|
|
sessionMgr: sm,
|
|
|
|
session: sess2,
|
|
|
|
}
|
|
|
|
|
|
|
|
addr1, addr2 := regTestAddrs[1], regTestAddrs[2]
|
|
|
|
// Subscribe to addr1 and addr2.
|
|
|
|
req1 := AddressSubscribeReq{addr1, addr2}
|
|
|
|
var resp1 *AddressSubscribeResp
|
|
|
|
err = s1.Subscribe(&req1, &resp1)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("handler err: %v", err)
|
|
|
|
}
|
|
|
|
marshalled1, err := json.MarshalIndent(resp1, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unmarshal err: %v", err)
|
|
|
|
}
|
|
|
|
// Subscribe to addr2 only.
|
|
|
|
t.Logf("resp: %v", string(marshalled1))
|
|
|
|
req2 := AddressSubscribeReq{addr2}
|
|
|
|
var resp2 *AddressSubscribeResp
|
|
|
|
err = s2.Subscribe(&req2, &resp2)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("handler err: %v", err)
|
|
|
|
}
|
|
|
|
marshalled2, err := json.MarshalIndent(resp2, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unmarshal err: %v", err)
|
|
|
|
}
|
|
|
|
t.Logf("resp: %v", string(marshalled2))
|
|
|
|
|
|
|
|
// Now send a notification for addr2.
|
|
|
|
address, _ := lbcutil.DecodeAddress(addr2, sm.chain)
|
|
|
|
script, _ := txscript.PayToAddrScript(address)
|
|
|
|
note := hashXNotification{}
|
|
|
|
copy(note.hashX[:], hashXScript(script, sm.chain))
|
|
|
|
status, err := hex.DecodeString((*resp1)[1])
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("decode err: %v", err)
|
|
|
|
}
|
|
|
|
note.status = append(note.status, []byte(status)...)
|
|
|
|
t.Logf("sending notification")
|
|
|
|
sm.doNotify(note)
|
|
|
|
|
|
|
|
t.Logf("waiting to receive notification(s)...")
|
|
|
|
received.Wait()
|
|
|
|
}
|