forked from mystiq/dex
41 lines
1 KiB
Go
41 lines
1 KiB
Go
// +build acceptance
|
|
|
|
package acceptance
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mailgun/mailgun-go"
|
|
"os"
|
|
"testing"
|
|
"text/tabwriter"
|
|
)
|
|
|
|
func TestEventIterator(t *testing.T) {
|
|
// Grab the list of events (as many as we can get)
|
|
domain := reqEnv(t, "MG_DOMAIN")
|
|
apiKey := reqEnv(t, "MG_API_KEY")
|
|
mg := mailgun.NewMailgun(domain, apiKey, "")
|
|
ei := mg.NewEventIterator()
|
|
err := ei.GetFirstPage(mailgun.GetEventsOptions{})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Print out the kind of event and timestamp.
|
|
// Specifics about each event will depend on the "event" type.
|
|
events := ei.Events()
|
|
tw := &tabwriter.Writer{}
|
|
tw.Init(os.Stdout, 2, 8, 2, ' ', tabwriter.AlignRight)
|
|
fmt.Fprintln(tw, "Event\tTimestamp\t")
|
|
for _, event := range events {
|
|
fmt.Fprintf(tw, "%s\t%v\t\n", event["event"], event["timestamp"])
|
|
}
|
|
tw.Flush()
|
|
fmt.Printf("%d events dumped\n\n", len(events))
|
|
|
|
// We're on the first page. We must at the beginning.
|
|
ei.GetPrevious()
|
|
if len(ei.Events()) != 0 {
|
|
t.Fatal("Expected to be at the beginning")
|
|
}
|
|
}
|