mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
78 lines
2.0 KiB
Go
78 lines
2.0 KiB
Go
package test
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/inbucket/inbucket/pkg/config"
|
|
"github.com/inbucket/inbucket/pkg/message"
|
|
"github.com/inbucket/inbucket/pkg/policy"
|
|
"github.com/inbucket/inbucket/pkg/storage"
|
|
)
|
|
|
|
// ManagerStub is a test stub for message.Manager
|
|
type ManagerStub struct {
|
|
message.Manager
|
|
mailboxes map[string][]*message.Message
|
|
}
|
|
|
|
// NewManager creates a new ManagerStub.
|
|
func NewManager() *ManagerStub {
|
|
return &ManagerStub{
|
|
mailboxes: make(map[string][]*message.Message),
|
|
}
|
|
}
|
|
|
|
// AddMessage adds a message to the specified mailbox.
|
|
func (m *ManagerStub) AddMessage(mailbox string, msg *message.Message) {
|
|
messages := m.mailboxes[mailbox]
|
|
m.mailboxes[mailbox] = append(messages, msg)
|
|
}
|
|
|
|
// GetMessage gets a message by ID from the specified mailbox.
|
|
func (m *ManagerStub) GetMessage(mailbox, id string) (*message.Message, error) {
|
|
if mailbox == "messageerr" {
|
|
return nil, errors.New("internal error")
|
|
}
|
|
for _, msg := range m.mailboxes[mailbox] {
|
|
if msg.ID == id {
|
|
return msg, nil
|
|
}
|
|
}
|
|
return nil, storage.ErrNotExist
|
|
}
|
|
|
|
// GetMetadata gets all the metadata for the specified mailbox.
|
|
func (m *ManagerStub) GetMetadata(mailbox string) ([]*message.Metadata, error) {
|
|
if mailbox == "messageserr" {
|
|
return nil, errors.New("internal error")
|
|
}
|
|
messages := m.mailboxes[mailbox]
|
|
metas := make([]*message.Metadata, len(messages))
|
|
for i, msg := range messages {
|
|
metas[i] = &msg.Metadata
|
|
}
|
|
return metas, nil
|
|
}
|
|
|
|
// MailboxForAddress invokes policy.ParseMailboxName.
|
|
func (m *ManagerStub) MailboxForAddress(address string) (string, error) {
|
|
addrPolicy := &policy.Addressing{Config: &config.Root{
|
|
MailboxNaming: config.FullNaming,
|
|
}}
|
|
return addrPolicy.ExtractMailbox(address)
|
|
}
|
|
|
|
// MarkSeen marks a message as having been read.
|
|
func (m *ManagerStub) MarkSeen(mailbox, id string) error {
|
|
if mailbox == "messageerr" {
|
|
return errors.New("internal error")
|
|
}
|
|
for _, msg := range m.mailboxes[mailbox] {
|
|
if msg.ID == id {
|
|
msg.Metadata.Seen = true
|
|
return nil
|
|
}
|
|
}
|
|
return storage.ErrNotExist
|
|
}
|