influxdb/context/token_test.go

25 lines
499 B
Go
Raw Normal View History

package context_test
import (
"context"
"testing"
"github.com/influxdata/influxdb"
icontext "github.com/influxdata/influxdb/context"
)
func TestGetToken(t *testing.T) {
ctx := context.Background()
ctx = icontext.SetAuthorizer(ctx, &influxdb.Authorization{
Token: "howdy",
})
got, err := icontext.GetToken(ctx)
if err != nil {
t.Errorf("unexpected error while retrieving token: %v", err)
}
if want := "howdy"; got != want {
t.Errorf("GetToken() want %s, got %s", want, got)
}
}