Documentation ¶
Index ¶
- Variables
- func NewDiscardTracer() *apm.Tracer
- func WithTransaction(f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
- func WithTransactionOptions(opts apm.TransactionOptions, f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
- func WithUncompressedTransaction(f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
- func WriteTraceTable(writer io.Writer, tx model.Transaction, spans []model.Span)
- func WriteTraceWaterfall(w io.Writer, tx model.Transaction, spans []model.Span)
- type HTTPTestSuite
- func (s *HTTPTestSuite) SetupSuite()
- func (s *HTTPTestSuite) SetupTest()
- func (s *HTTPTestSuite) TearDownSuite()
- func (s *HTTPTestSuite) TestExplicitErrorCapture()
- func (s *HTTPTestSuite) TestImplicitWrite()
- func (s *HTTPTestSuite) TestPanicAfterWrite()
- func (s *HTTPTestSuite) TestPanicBeforeWrite()
- type LogRecord
- type LogfLogger
- type RecordLogger
- type RecordingTracer
- type TestLogger
- type WatchConfigFunc
Constants ¶
This section is empty.
Variables ¶
var DiscardTracer *apm.Tracer
DiscardTracer is an apm.Tracer that discards all events.
This tracer may be used by multiple tests, and so should not be modified or closed.
Importing apmttest will close apm.DefaultTracer, and update it to this value.
Functions ¶
func NewDiscardTracer ¶
func NewDiscardTracer() *apm.Tracer
NewDiscardTracer returns a new apm.Tracer that discards all events.
func WithTransaction ¶
WithTransaction is equivalent to calling WithTransactionOptions with a zero TransactionOptions.
func WithTransactionOptions ¶
func WithTransactionOptions(opts apm.TransactionOptions, f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
WithTransactionOptions calls f with a new context containing a transaction and transaction options, flushes the transaction to a test server, and returns the decoded transaction and any associated spans and errors.
func WithUncompressedTransaction ¶ added in v2.2.0
func WithUncompressedTransaction(f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
WithUncompressedTransaction is equivalent to calling WithTransactionOptions with compression disabled.
func WriteTraceTable ¶
WriteTraceTable displays the trace as a table which can be used on tests to aid debugging.
func WriteTraceWaterfall ¶
WriteTraceWaterfall the trace waterfall "console output" to the specified writer sorted by timestamp.
Types ¶
type HTTPTestSuite ¶
type HTTPTestSuite struct { suite.Suite // Handler holds an instrumented HTTP handler. Handler must // support the following routes: // // GET /implicit_write (no explicit write on the response) // GET /panic_before_write (panic without writing response) // GET /panic_after_write (panic after writing response) // POST /explicit_error_capture (explicit CaptureError call) // Handler http.Handler // Tracer is the apm.Tracer used to instrument Handler. // // HTTPTestSuite will close the tracer when all tests have // been completed. Tracer *apm.Tracer // Recorder is the transport used as the transport for Tracer. Recorder *transporttest.RecorderTransport // contains filtered or unexported fields }
HTTPTestSuite is a test suite for HTTP instrumentation modules.
func (*HTTPTestSuite) SetupSuite ¶
func (s *HTTPTestSuite) SetupSuite()
SetupSuite runs before the tests in the suite are run.
func (*HTTPTestSuite) SetupTest ¶
func (s *HTTPTestSuite) SetupTest()
SetupTest runs before each test.
func (*HTTPTestSuite) TearDownSuite ¶
func (s *HTTPTestSuite) TearDownSuite()
TearDownSuite runs after the tests in the suite are run.
func (*HTTPTestSuite) TestExplicitErrorCapture ¶
func (s *HTTPTestSuite) TestExplicitErrorCapture()
TestExplicitErrorCapture tests that a CaptureError explicit call inside an HTTP request transaction captures the request body
func (*HTTPTestSuite) TestImplicitWrite ¶
func (s *HTTPTestSuite) TestImplicitWrite()
TestImplicitWrite tests the behaviour of instrumented handlers for routes which do not explicitly write a response, but instead leave it to the framework to write an empty 200 response.
func (*HTTPTestSuite) TestPanicAfterWrite ¶
func (s *HTTPTestSuite) TestPanicAfterWrite()
TestPanicAfterWrite tests the behaviour of instrumented handlers for routes which panic after writing headers. The handler is expected to recover the panic without otherwise affecting the response.
func (*HTTPTestSuite) TestPanicBeforeWrite ¶
func (s *HTTPTestSuite) TestPanicBeforeWrite()
TestPanicBeforeWrite tests the behaviour of instrumented handlers for routes which panic before any headers are written. The handler is expected to recover the panic and write an empty 500 response.
type LogRecord ¶
type LogRecord struct { // Level is the log level: "debug", "error", or "warning". Level string // Format is the log message format, like "Thingy did foo %d times". Format string // Message is the formatted message. Message string }
LogRecord holds the details of a log record.
type LogfLogger ¶
type LogfLogger interface {
Logf(string, ...interface{})
}
LogfLogger is an interface with the a Logf method, implemented by *testing.T and *testing.B.
type RecordLogger ¶
type RecordLogger struct {
Records []LogRecord
}
RecordLogger is an implementation of apm.Logger, recording log entries.
func (*RecordLogger) Debugf ¶
func (l *RecordLogger) Debugf(format string, args ...interface{})
Debugf logs debug messages.
func (*RecordLogger) Errorf ¶
func (l *RecordLogger) Errorf(format string, args ...interface{})
Errorf logs error messages.
func (*RecordLogger) Warningf ¶
func (l *RecordLogger) Warningf(format string, args ...interface{})
Warningf logs error messages.
type RecordingTracer ¶
type RecordingTracer struct { *apm.Tracer transporttest.RecorderTransport }
RecordingTracer holds an apm.Tracer and transporttest.RecorderTransport.
func NewRecordingTracer ¶
func NewRecordingTracer() *RecordingTracer
NewRecordingTracer returns a new RecordingTracer, containing a new Tracer using the RecorderTransport stored inside.
func (*RecordingTracer) WithTransaction ¶
func (rt *RecordingTracer) WithTransaction(f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
WithTransaction calls rt.WithTransactionOptions with a zero apm.TransactionOptions.
func (*RecordingTracer) WithTransactionOptions ¶
func (rt *RecordingTracer) WithTransactionOptions(opts apm.TransactionOptions, f func(ctx context.Context)) (model.Transaction, []model.Span, []model.Error)
WithTransactionOptions starts a transaction with the given options, calls f with the transaction in the provided context, ends the transaction and flushes the tracer, and then returns the resulting events.
type TestLogger ¶
type TestLogger struct {
// contains filtered or unexported fields
}
TestLogger is an implementation of apm.Logger, logging to a testing.T.
func NewTestLogger ¶
func NewTestLogger(l LogfLogger) TestLogger
NewTestLogger returns a new TestLogger that logs messages to l.
func (TestLogger) Debugf ¶
func (t TestLogger) Debugf(format string, args ...interface{})
Debugf logs debug messages.
func (TestLogger) Errorf ¶
func (t TestLogger) Errorf(format string, args ...interface{})
Errorf logs error messages.
func (TestLogger) Warningf ¶
func (t TestLogger) Warningf(format string, args ...interface{})
Warningf logs warning messages.
type WatchConfigFunc ¶
WatchConfigFunc is a function type that implements apmconfig.Watcher.
func (WatchConfigFunc) WatchConfig ¶
func (f WatchConfigFunc) WatchConfig(ctx context.Context, params apmconfig.WatchParams) <-chan apmconfig.Change
WatchConfig returns f(ctx, params).