func TestSimplelog(t *testing.T) { tc := testutil.SystemTest(t) ctx := context.Background() client, err := logging.NewClient(ctx, tc.ProjectID) if err != nil { t.Fatalf("logging.NewClient: %v", err) } adminClient, err := logadmin.NewClient(ctx, tc.ProjectID) if err != nil { t.Fatalf("logadmin.NewClient: %v", err) } defer func() { if err := client.Close(); err != nil { t.Errorf("Close: %v", err) } }() defer func() { testutil.Retry(t, 10, time.Second, func(r *testutil.R) { if err := deleteLog(adminClient); err != nil { r.Errorf("deleteLog: %v", err) } }) }() client.OnError = func(err error) { t.Errorf("OnError: %v", err) } writeEntry(client) structuredWrite(client) testutil.Retry(t, 10, time.Second, func(r *testutil.R) { entries, err := getEntries(adminClient, tc.ProjectID) if err != nil { r.Errorf("getEntries: %v", err) return } if got, want := len(entries), 2; got != want { r.Errorf("len(entries) = %d; want %d", got, want) return } wantContain := map[string]*logging.Entry{ "Anything": entries[0], "The payload can be any type!": entries[0], "infolog is a standard Go log.Logger": entries[1], } for want, entry := range wantContain { msg := fmt.Sprintf("%s", entry.Payload) if !strings.Contains(msg, want) { r.Errorf("want %q to contain %q", msg, want) } } }) }
func TestList(t *testing.T) { c := setup(t) testutil.Retry(t, 10, time.Second, func(r *testutil.R) { topics, err := list(c) if err != nil { r.Errorf("failed to list topics: %v", err) } for _, t := range topics { if t.ID() == topicID { return // PASS } } topicNames := make([]string, len(topics)) for i, t := range topics { topicNames[i] = t.ID() } r.Errorf("got %+v; want a list with topic = %q", topicNames, topicID) }) }
func TestList(t *testing.T) { c := setup(t) testutil.Retry(t, 10, time.Second, func(r *testutil.R) { subs, err := list(c) if err != nil { r.Errorf("failed to list subscriptions: %v", err) return } for _, sub := range subs { if sub.ID() == subID { return // PASS } } subNames := make([]string, len(subs)) for i, sub := range subs { subNames[i] = sub.ID() } r.Errorf("got %+v; want a list with subscription %q", subNames, subID) }) }