You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/alias/target/testing.go

25 lines
532 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package target
import (
"context"
"testing"
"github.com/hashicorp/boundary/internal/db"
"github.com/stretchr/testify/require"
)
func TestAlias(t *testing.T, rw *db.Db, alias string, opt ...Option) *Alias {
t.Helper()
ctx := context.Background()
a, err := NewAlias(ctx, "global", alias, opt...)
require.NoError(t, err)
a.PublicId, err = newAliasId(ctx)
require.NoError(t, err)
require.NoError(t, rw.Create(ctx, a, db.WithDebug(true)))
return a
}