Skip to content

Commit

Permalink
addressed reviwer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ac4ch committed May 16, 2024
1 parent 6596a55 commit df99079
Show file tree
Hide file tree
Showing 17 changed files with 158 additions and 132 deletions.
7 changes: 3 additions & 4 deletions access_keys_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@ import (
"net/http/httptest"
"testing"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
"github.com/bitcoin-sv/spv-wallet/models"
"github.com/stretchr/testify/require"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
)

// TestAccessKeys will test the AccessKey methods
func TestAccessKeys(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/access-key":
case "/v1/access-key":
if r.Method == http.MethodGet {
json.NewEncoder(w).Encode(fixtures.AccessKey)
} else if r.Method == http.MethodPost {
json.NewEncoder(w).Encode(fixtures.AccessKey)
} else if r.Method == http.MethodDelete {
json.NewEncoder(w).Encode(fixtures.AccessKey)
}
case "/access-key/search":
case "/v1/access-key/search":
json.NewEncoder(w).Encode([]*models.AccessKey{fixtures.AccessKey})
default:
w.WriteHeader(http.StatusNotFound)
Expand Down
13 changes: 6 additions & 7 deletions admin_contacts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,30 @@ import (
"net/http/httptest"
"testing"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
"github.com/bitcoin-sv/spv-wallet/models"
"github.com/stretchr/testify/require"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
)

// TestAdminContactActions testing Admin contacts methods
func TestAdminContactActions(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch {
case r.URL.Path == "/admin/contact/search" && r.Method == http.MethodPost:
case r.URL.Path == "/v1/admin/contact/search" && r.Method == http.MethodPost:
c := fixtures.Contact
c.ID = "1"
contacts := []*models.Contact{c}
json.NewEncoder(w).Encode(contacts)
case r.URL.Path == "/admin/contact/1" && r.Method == http.MethodPatch:
case r.URL.Path == "/v1/admin/contact/1" && r.Method == http.MethodPatch:
contact := fixtures.Contact
json.NewEncoder(w).Encode(contact)
case r.URL.Path == "/admin/contact/1" && r.Method == http.MethodDelete:
case r.URL.Path == "/v1/admin/contact/1" && r.Method == http.MethodDelete:
w.WriteHeader(http.StatusOK)
case r.URL.Path == "/admin/contact/accepted/1" && r.Method == http.MethodPatch:
case r.URL.Path == "/v1/admin/contact/accepted/1" && r.Method == http.MethodPatch:
contact := fixtures.Contact
contact.Status = "accepted"
json.NewEncoder(w).Encode(contact)
case r.URL.Path == "/admin/contact/rejected/1" && r.Method == http.MethodPatch:
case r.URL.Path == "/v1/admin/contact/rejected/1" && r.Method == http.MethodPatch:
contact := fixtures.Contact
contact.Status = "rejected"
json.NewEncoder(w).Encode(contact)
Expand Down
3 changes: 1 addition & 2 deletions authentication.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"net/http"
"time"

"github.com/bitcoin-sv/spv-wallet-go-client/utils"
"github.com/bitcoin-sv/spv-wallet/models"
"github.com/bitcoin-sv/spv-wallet/models/apierrors"
"github.com/bitcoinschema/go-bitcoin/v2"
Expand All @@ -14,8 +15,6 @@ import (
"github.com/libsv/go-bt/v2"
"github.com/libsv/go-bt/v2/bscript"
"github.com/libsv/go-bt/v2/sighash"

"github.com/bitcoin-sv/spv-wallet-go-client/utils"
)

// SetSignature will set the signature on the header for the request
Expand Down
40 changes: 37 additions & 3 deletions client_options.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
package walletclient

import (
"fmt"
"net/http"
"net/url"

"github.com/bitcoinschema/go-bitcoin/v2"
"github.com/libsv/go-bk/bec"
"github.com/libsv/go-bk/wif"
"github.com/pkg/errors"
)

// Configurator is the interface for configuring WalletClient
type Configurator interface {
// configurator is the interface for configuring WalletClient
type configurator interface {
Configure(c *WalletClient)
}

Expand Down Expand Up @@ -71,7 +73,17 @@ type httpConf struct {
}

func (w *httpConf) Configure(c *WalletClient) {
c.server = w.ServerURL
// Ensure the ServerURL ends with a clean base URL
baseURL, err := validateAndCleanURL(w.ServerURL)
if err != nil {
// Handle the error appropriately
fmt.Println("Invalid URL provided:", err)
return
}

const basePath = "/v1"
c.server = fmt.Sprintf("%s%s", baseURL, basePath)

c.httpClient = w.HTTPClient
if w.HTTPClient != nil {
c.httpClient = w.HTTPClient
Expand Down Expand Up @@ -105,3 +117,25 @@ func (c *accessKeyConf) initializeAccessKey() (*bec.PrivateKey, error) {

return privateKey, nil
}

// validateAndCleanURL ensures that the provided URL is valid, and strips it down to just the base URL.
func validateAndCleanURL(rawURL string) (string, error) {
if rawURL == "" {
return "", fmt.Errorf("empty URL")
}

// Parse the URL to validate it
parsedURL, err := url.Parse(rawURL)
if err != nil {
return "", fmt.Errorf("parsing URL failed: %w", err)
}

// Rebuild the URL with only the scheme and host (and port if included)
cleanedURL := fmt.Sprintf("%s://%s", parsedURL.Scheme, parsedURL.Host)

if parsedURL.Path == "" || parsedURL.Path == "/" {
return cleanedURL, nil
}

return cleanedURL, nil
}
13 changes: 5 additions & 8 deletions contacts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,34 @@ package walletclient
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"strings"
"testing"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
"github.com/bitcoin-sv/spv-wallet/models"
"github.com/stretchr/testify/require"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
)

// TestContactActionsRouting will test routing
func TestContactActionsRouting(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Println("=== test", r.URL.Path)
w.Header().Set("Content-Type", "application/json")
switch {
case strings.HasPrefix(r.URL.Path, "/contact/rejected/"):
case strings.HasPrefix(r.URL.Path, "/v1/contact/rejected/"):
if r.Method == http.MethodPatch {
json.NewEncoder(w).Encode(map[string]string{"result": "rejected"})
}
case r.URL.Path == "/contact/accepted/":
case r.URL.Path == "/v1/contact/accepted/":
if r.Method == http.MethodPost {
json.NewEncoder(w).Encode(map[string]string{"result": "accepted"})
}
case r.URL.Path == "/contact/search":
case r.URL.Path == "/v1/contact/search":
if r.Method == http.MethodPost {
json.NewEncoder(w).Encode([]*models.Contact{fixtures.Contact})
}
case strings.HasPrefix(r.URL.Path, "/contact/"):
case strings.HasPrefix(r.URL.Path, "/v1/contact/"):
if r.Method == http.MethodPost || r.Method == http.MethodPut {
json.NewEncoder(w).Encode(map[string]string{"result": "upserted"})
}
Expand Down
16 changes: 7 additions & 9 deletions destinations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ import (
"net/http/httptest"
"testing"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
"github.com/bitcoin-sv/spv-wallet/models"
"github.com/stretchr/testify/require"

"github.com/bitcoin-sv/spv-wallet-go-client/fixtures"
)

func TestDestinations(t *testing.T) {
Expand All @@ -23,24 +22,23 @@ func TestDestinations(t *testing.T) {
}

switch {
case r.URL.Path == "/destination/address/"+fixtures.Destination.Address && r.Method == http.MethodGet:
case r.URL.Path == "/v1/v1/destination/address/"+fixtures.Destination.Address && r.Method == http.MethodGet:
sendJSONResponse(fixtures.Destination)
case r.URL.Path == "/destination/lockingScript/"+fixtures.Destination.LockingScript && r.Method == http.MethodGet:
case r.URL.Path == "/v1/destination/lockingScript/"+fixtures.Destination.LockingScript && r.Method == http.MethodGet:
sendJSONResponse(fixtures.Destination)
case r.URL.Path == "/destination/search" && r.Method == http.MethodPost:
case r.URL.Path == "/v1/destination/search" && r.Method == http.MethodPost:
sendJSONResponse([]*models.Destination{fixtures.Destination})
case r.URL.Path == "/destination" && r.Method == http.MethodGet:
case r.URL.Path == "/v1/destination" && r.Method == http.MethodGet:
sendJSONResponse(fixtures.Destination)
case r.URL.Path == "/destination" && r.Method == http.MethodPatch:
case r.URL.Path == "/v1/destination" && r.Method == http.MethodPatch:
sendJSONResponse(fixtures.Destination)
case r.URL.Path == "/destination" && r.Method == http.MethodPost:
case r.URL.Path == "/v1/destination" && r.Method == http.MethodPost:
sendJSONResponse(fixtures.Destination)
default:
w.WriteHeader(http.StatusNotFound)
}
}))
defer server.Close()

client := NewWithAccessKey(server.URL, fixtures.AccessKeyString)
require.NotNil(t, client.accessKey)

Expand Down
2 changes: 1 addition & 1 deletion examples/http/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ func main() {
keys, _ := xpriv.Generate()

// Create a client
wc := walletclient.NewWithXPriv("localhost:3001", keys.XPriv())
wc := walletclient.NewWithXPriv("https://localhost:3001", keys.XPriv())
fmt.Println(wc.IsSignRequest())
}
2 changes: 1 addition & 1 deletion examples/http_with_access_key/http_with_access_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ func main() {
exampleAccessKey := "some_generated_access_key"

// Create a client
_ = walletclient.NewWithAccessKey("http://localhost:3003/v1", exampleAccessKey)
_ = walletclient.NewWithAccessKey("http://localhost:3003", exampleAccessKey)

}
2 changes: 1 addition & 1 deletion examples/new_paymail/new_paymail.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ func main() {
keys, _ := xpriv.Generate()

// Create a client
wc := walletclient.NewWithXPriv("localhost:3001", keys.XPriv())
wc := walletclient.NewWithXPriv("https://localhost:3001", keys.XPriv())
wc.AdminCreatePaymail(context.Background(), keys.XPub().String(), "[email protected]", "", "Foo")
}
2 changes: 1 addition & 1 deletion examples/register_xpub/register_xpub.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func main() {
keys, _ := xpriv.Generate()

// Create a client
wc := walletclient.NewWithXPriv("localhost:3003/v1", keys.XPriv())
wc := walletclient.NewWithXPriv("localhost:3003", keys.XPriv())
ctx := context.Background()
_ = wc.AdminNewXpub(ctx, keys.XPub().String(), &models.Metadata{"example_field": "example_data"})

Expand Down
19 changes: 13 additions & 6 deletions fixtures/fixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@ import (
)

var (
RequestType = "http"
ServerURL = "https://example.com/"
XPubString = "xpub661MyMwAqRbcFrBJbKwBGCB7d3fr2SaAuXGM95BA62X41m6eW2ehRQGW4xLi9wkEXUGnQZYxVVj4PxXnyrLk7jdqvBAs1Qq9gf6ykMvjR7J"
XPrivString = "xprv9s21ZrQH143K3N6qVJQAu4EP51qMcyrKYJLkLgmYXgz58xmVxVLSsbx2DfJUtjcnXK8NdvkHMKfmmg5AJT2nqqRWUrjSHX29qEJwBgBPkJQ"
// RequestType http or https
RequestType = "http"
// ServerURL ex. https://localhost
ServerURL = "https://example.com/"
// XPubString public key
XPubString = "xpub661MyMwAqRbcFrBJbKwBGCB7d3fr2SaAuXGM95BA62X41m6eW2ehRQGW4xLi9wkEXUGnQZYxVVj4PxXnyrLk7jdqvBAs1Qq9gf6ykMvjR7J"
// XPrivString private key
XPrivString = "xprv9s21ZrQH143K3N6qVJQAu4EP51qMcyrKYJLkLgmYXgz58xmVxVLSsbx2DfJUtjcnXK8NdvkHMKfmmg5AJT2nqqRWUrjSHX29qEJwBgBPkJQ"
// AccessKeyString access key
AccessKeyString = "7779d24ca6f8821f225042bf55e8f80aa41b08b879b72827f51e41e6523b9cd0"
PaymailAddress = "[email protected]"
PubKey = "034252e5359a1de3b8ec08e6c29b80594e88fb47e6ae9ce65ee5a94f0d371d2cde"
// PaymailAddress ex. "[email protected]"
PaymailAddress = "[email protected]"
// PubKey ex. "034252e5359a1de3b8ec08e6c29b80594e88fb47e6ae9ce65ee5a94f0d371d2cde"
PubKey = "034252e5359a1de3b8ec08e6c29b80594e88fb47e6ae9ce65ee5a94f0d371d2cde"
)

func MarshallForTestHandler(object any) string {
Expand Down
Loading

0 comments on commit df99079

Please sign in to comment.