41 lines
878 B
Go
41 lines
878 B
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func testStore(t *testing.T) *Store {
|
|
dsn := os.Getenv("TEST_DATABASE_URL")
|
|
if dsn == "" {
|
|
t.Skip("TEST_DATABASE_URL not set")
|
|
}
|
|
s, err := New(context.Background(), dsn)
|
|
if err != nil {
|
|
t.Fatalf("New: %v", err)
|
|
}
|
|
t.Cleanup(func() {
|
|
s.Pool.Exec(context.Background(),
|
|
`TRUNCATE endpoints, tasks, accounts, runs, migrated_messages RESTART IDENTITY CASCADE`)
|
|
s.Pool.Close()
|
|
})
|
|
return s
|
|
}
|
|
|
|
func TestCreateAndGetEndpoint(t *testing.T) {
|
|
s := testStore(t)
|
|
ctx := context.Background()
|
|
id, err := s.CreateEndpoint(ctx, Endpoint{RoleLabel: "src", Host: "imap.a.com", Port: 993, TLSMode: "ssl"})
|
|
if err != nil {
|
|
t.Fatalf("create: %v", err)
|
|
}
|
|
got, err := s.GetEndpoint(ctx, id)
|
|
if err != nil {
|
|
t.Fatalf("get: %v", err)
|
|
}
|
|
if got.Host != "imap.a.com" || got.Port != 993 {
|
|
t.Fatalf("got %+v", got)
|
|
}
|
|
}
|