testutils

package
v0.1.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 25, 2023 License: ISC Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func FixedTempDir added in v0.1.4

func FixedTempDir(t testing.TB, name string) string

FixedTempDir creates a temp dir with a fixed name (without any random parts) and cleans it up on a successful test. The dir is cleared before this function returns.

func NewTestLogBackend

func NewTestLogBackend(t testing.TB) *testLogBackend

NewTestLogBackend returns a log backend that can be used as an io.Writer to write logs to during a test.

func TempTestDir added in v0.1.4

func TempTestDir(t testing.TB, prefix string) string

TempTestDir returns a temp dir for a test that only gets cleaned up if the test does not fail.

func TestLoggerBackend

func TestLoggerBackend(t testing.TB, name string) func(subsys string) slog.Logger

TestLoggerBackend returns a function that generates loggers for subsystems, all of which log by calling t.Log.

func TestLoggerSys

func TestLoggerSys(t testing.TB, sys string) slog.Logger

TestLoggerSys returns an slog.Logger that logs by issuing t.Log calls.

Types

type MockPayClient added in v0.1.7

type MockPayClient struct {
	// contains filtered or unexported fields
}

MockPayClient fulfills the clientintf.PaymentClient interface, while allowing to fail certain calls. It is used for tests.

It behaves as the free payment client, except for hooked calls.

func (*MockPayClient) DecodeInvoice added in v0.1.7

func (pc *MockPayClient) DecodeInvoice(_ context.Context, invoice string) (clientintf.DecodedInvoice, error)

func (*MockPayClient) DefaultDecodeInvoice added in v0.1.7

func (pc *MockPayClient) DefaultDecodeInvoice(invoice string) (clientintf.DecodedInvoice, error)

DefaultDecodeInvoice is the default behavior of the MockPayClient DecodeInvoice(). Useful when DecodeInvoice is hooked and the default behavior is desired for a particular invoice.

func (*MockPayClient) GetInvoice added in v0.1.7

func (pc *MockPayClient) GetInvoice(ctx context.Context, mat int64, cb func(int64)) (string, error)

func (*MockPayClient) HookDecodeInvoice added in v0.1.7

func (pc *MockPayClient) HookDecodeInvoice(hook func(string) (clientintf.DecodedInvoice, error))

func (*MockPayClient) HookGetInvoice added in v0.1.7

func (pc *MockPayClient) HookGetInvoice(hook func(int64, func(int64)) (string, error))

func (*MockPayClient) HookIsPayCompleted added in v0.1.7

func (pc *MockPayClient) HookIsPayCompleted(hook func(string) (int64, error))

func (*MockPayClient) HookPayInvoice added in v0.1.7

func (pc *MockPayClient) HookPayInvoice(hook func(string) (int64, error))

func (*MockPayClient) IsInvoicePaid added in v0.1.7

func (pc *MockPayClient) IsInvoicePaid(context.Context, int64, string) error

func (*MockPayClient) IsPaymentCompleted added in v0.1.7

func (pc *MockPayClient) IsPaymentCompleted(_ context.Context, invoice string) (int64, error)

func (*MockPayClient) PayInvoice added in v0.1.7

func (pc *MockPayClient) PayInvoice(_ context.Context, invoice string) (int64, error)

func (*MockPayClient) PayInvoiceAmount added in v0.1.7

func (pc *MockPayClient) PayInvoiceAmount(_ context.Context, invoice string, _ int64) (int64, error)

func (*MockPayClient) PayScheme added in v0.1.7

func (pc *MockPayClient) PayScheme() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL