Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
1.0 KiB
Go
50 lines
1.0 KiB
Go
package sentry
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
// MockScope implements [Scope] for use in tests.
|
|
type MockScope struct {
|
|
breadcrumb *Breadcrumb
|
|
shouldDropEvent bool
|
|
}
|
|
|
|
func (scope *MockScope) AddBreadcrumb(breadcrumb *Breadcrumb, _ int) {
|
|
scope.breadcrumb = breadcrumb
|
|
}
|
|
|
|
func (scope *MockScope) ApplyToEvent(event *Event, _ *EventHint, _ *Client) *Event {
|
|
if scope.shouldDropEvent {
|
|
return nil
|
|
}
|
|
return event
|
|
}
|
|
|
|
// MockTransport implements [Transport] for use in tests.
|
|
type MockTransport struct {
|
|
mu sync.Mutex
|
|
events []*Event
|
|
lastEvent *Event
|
|
}
|
|
|
|
func (t *MockTransport) Configure(_ ClientOptions) {}
|
|
func (t *MockTransport) SendEvent(event *Event) {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
t.events = append(t.events, event)
|
|
t.lastEvent = event
|
|
}
|
|
func (t *MockTransport) Flush(_ time.Duration) bool {
|
|
return true
|
|
}
|
|
func (t *MockTransport) FlushWithContext(_ context.Context) bool { return true }
|
|
func (t *MockTransport) Events() []*Event {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
return t.events
|
|
}
|
|
func (t *MockTransport) Close() {}
|