Compare commits
No commits in common. "c21a48c78ee0541b9f88db0701c9f229d4bb05a2" and "0837933b6c83cf7d5c73d72364a407a6bed682e1" have entirely different histories.
c21a48c78e
...
0837933b6c
@ -14,10 +14,7 @@ type Step struct {
|
|||||||
|
|
||||||
func (s *Step) MatchesExpectedContent(content []byte) (bool, error) {
|
func (s *Step) MatchesExpectedContent(content []byte) (bool, error) {
|
||||||
pattern := regexp.QuoteMeta(s.ExpectedContent)
|
pattern := regexp.QuoteMeta(s.ExpectedContent)
|
||||||
re, err := regexp.Compile(pattern)
|
re, _ := regexp.Compile(pattern)
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
if re.Match([]byte(content)) {
|
if re.Match([]byte(content)) {
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,9 +18,12 @@ type AccountServiceInterface interface {
|
|||||||
type AccountService struct {
|
type AccountService struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type TestAccountService struct {
|
type MockAccountService struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// CheckAccountStatus retrieves the status of an account transaction based on the provided tracking ID.
|
// CheckAccountStatus retrieves the status of an account transaction based on the provided tracking ID.
|
||||||
//
|
//
|
||||||
// Parameters:
|
// Parameters:
|
||||||
@ -28,10 +31,12 @@ type TestAccountService struct {
|
|||||||
// CreateAccount or a similar function that returns an AccountResponse. The `trackingId` field in the
|
// CreateAccount or a similar function that returns an AccountResponse. The `trackingId` field in the
|
||||||
// AccountResponse struct can be used here to check the account status during a transaction.
|
// AccountResponse struct can be used here to check the account status during a transaction.
|
||||||
//
|
//
|
||||||
|
//
|
||||||
// Returns:
|
// Returns:
|
||||||
// - string: The status of the transaction as a string. If there is an error during the request or processing, this will be an empty string.
|
// - string: The status of the transaction as a string. If there is an error during the request or processing, this will be an empty string.
|
||||||
// - error: An error if any occurred during the HTTP request, reading the response, or unmarshalling the JSON data.
|
// - error: An error if any occurred during the HTTP request, reading the response, or unmarshalling the JSON data.
|
||||||
// If no error occurs, this will be nil.
|
// If no error occurs, this will be nil.
|
||||||
|
//
|
||||||
func (as *AccountService) CheckAccountStatus(trackingId string) (string, error) {
|
func (as *AccountService) CheckAccountStatus(trackingId string) (string, error) {
|
||||||
resp, err := http.Get(config.TrackStatusURL + trackingId)
|
resp, err := http.Get(config.TrackStatusURL + trackingId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -49,10 +54,13 @@ func (as *AccountService) CheckAccountStatus(trackingId string) (string, error)
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
status := trackResp.Result.Transaction.Status
|
status := trackResp.Result.Transaction.Status
|
||||||
|
|
||||||
return status, nil
|
return status, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// CheckBalance retrieves the balance for a given public key from the custodial balance API endpoint.
|
// CheckBalance retrieves the balance for a given public key from the custodial balance API endpoint.
|
||||||
// Parameters:
|
// Parameters:
|
||||||
// - publicKey: The public key associated with the account whose balance needs to be checked.
|
// - publicKey: The public key associated with the account whose balance needs to be checked.
|
||||||
@ -79,7 +87,8 @@ func (as *AccountService) CheckBalance(publicKey string) (string, error) {
|
|||||||
return balance, nil
|
return balance, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateAccount creates a new account in the custodial system.
|
|
||||||
|
//CreateAccount creates a new account in the custodial system.
|
||||||
// Returns:
|
// Returns:
|
||||||
// - *models.AccountResponse: A pointer to an AccountResponse struct containing the details of the created account.
|
// - *models.AccountResponse: A pointer to an AccountResponse struct containing the details of the created account.
|
||||||
// If there is an error during the request or processing, this will be nil.
|
// If there is an error during the request or processing, this will be nil.
|
||||||
@ -106,7 +115,9 @@ func (as *AccountService) CreateAccount() (*models.AccountResponse, error) {
|
|||||||
return &accountResp, nil
|
return &accountResp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tas *TestAccountService) CreateAccount() (*models.AccountResponse, error) {
|
|
||||||
|
|
||||||
|
func (mas *MockAccountService) CreateAccount() (*models.AccountResponse, error) {
|
||||||
return &models.AccountResponse{
|
return &models.AccountResponse{
|
||||||
Ok: true,
|
Ok: true,
|
||||||
Result: struct {
|
Result: struct {
|
||||||
@ -121,7 +132,7 @@ func (tas *TestAccountService) CreateAccount() (*models.AccountResponse, error)
|
|||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tas *TestAccountService) CheckBalance(publicKey string) (string, error) {
|
func (mas *MockAccountService) CheckBalance(publicKey string) (string, error) {
|
||||||
|
|
||||||
balanceResponse := &models.BalanceResponse{
|
balanceResponse := &models.BalanceResponse{
|
||||||
Ok: true,
|
Ok: true,
|
||||||
@ -137,6 +148,6 @@ func (tas *TestAccountService) CheckBalance(publicKey string) (string, error) {
|
|||||||
return balanceResponse.Result.Balance, nil
|
return balanceResponse.Result.Balance, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tas *TestAccountService) CheckAccountStatus(trackingId string) (string, error) {
|
func (mas *MockAccountService) CheckAccountStatus(trackingId string) (string, error) {
|
||||||
return "SUCCESS", nil
|
return "SUCCESS", nil
|
||||||
}
|
}
|
||||||
|
|||||||
@ -79,12 +79,8 @@ func TestEngine(sessionId string) (engine.Engine, func(), chan bool) {
|
|||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
if AccountService == nil {
|
|
||||||
AccountService = &server.AccountService{}
|
|
||||||
}
|
|
||||||
|
|
||||||
switch AccountService.(type) {
|
switch AccountService.(type) {
|
||||||
case *server.TestAccountService:
|
case *server.MockAccountService:
|
||||||
go func() {
|
go func() {
|
||||||
eventChannel <- false
|
eventChannel <- false
|
||||||
}()
|
}()
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
//go:build !online
|
|
||||||
// +build !online
|
// +build !online
|
||||||
|
|
||||||
package testutil
|
package testutil
|
||||||
@ -7,6 +6,8 @@ import (
|
|||||||
"git.grassecon.net/urdt/ussd/internal/handlers/server"
|
"git.grassecon.net/urdt/ussd/internal/handlers/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var AccountService server.AccountServiceInterface
|
||||||
AccountService server.AccountServiceInterface = &server.TestAccountService{}
|
|
||||||
)
|
func init() {
|
||||||
|
AccountService = &server.MockAccountService{}
|
||||||
|
}
|
||||||
@ -1,10 +1,11 @@
|
|||||||
//go:build online
|
|
||||||
// +build online
|
// +build online
|
||||||
|
|
||||||
package testutil
|
package testutil
|
||||||
|
|
||||||
import "git.grassecon.net/urdt/ussd/internal/handlers/server"
|
import "git.grassecon.net/urdt/ussd/internal/handlers/server"
|
||||||
|
|
||||||
var (
|
var AccountService server.AccountServiceInterface
|
||||||
AccountService server.AccountServiceInterface
|
|
||||||
)
|
func init() {
|
||||||
|
AccountService = &server.AccountService{}
|
||||||
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user