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/api/groups/group_test.go

220 lines
5.6 KiB

package groups_test
/*
type groupCrud interface {
CreateGroup(context.Context, *groups.Group) (*groups.Group, *api.Error, error)
ReadGroup(context.Context, *groups.Group) (*groups.Group, *api.Error, error)
UpdateGroup(context.Context, *groups.Group) (*groups.Group, *api.Error, error)
DeleteGroup(context.Context, *groups.Group) (bool, *api.Error, error)
ListGroups(ctx context.Context) ([]*groups.Group, *api.Error, error)
}
func TestGroup_List(t *testing.T) {
assert := assert.New(t)
tc := controller.NewTestController(t, &controller.TestControllerOpts{DisableAuthorizationFailures: true})
defer tc.Shutdown()
client := tc.Client()
org := &scopes.Org{
Client: client,
}
proj, apiErr, err := org.CreateProject(context.Background(), &scopes.Project{})
require.NoError(t, err)
require.Nil(t, apiErr)
cases := []struct {
name string
scope groupCrud
}{
{
name: "org",
scope: org,
},
{
name: "proj",
scope: proj,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
ctx := context.Background()
pl, apiErr, err := tc.scope.ListGroups(ctx)
assert.NoError(err)
assert.Nil(apiErr)
assert.Empty(pl)
var expected []*groups.Group
for i := 0; i < 10; i++ {
expected = append(expected, &groups.Group{Name: api.String(fmt.Sprint(i))})
}
expected[0], apiErr, err = tc.scope.CreateGroup(ctx, expected[0])
assert.NoError(err)
assert.Nil(apiErr)
pl, apiErr, err = tc.scope.ListGroups(ctx)
assert.NoError(err)
assert.Nil(apiErr)
assert.ElementsMatch(comparableSlice(expected[:1]), comparableSlice(pl))
for i := 1; i < 10; i++ {
expected[i], apiErr, err = tc.scope.CreateGroup(ctx, expected[i])
assert.NoError(err)
assert.Nil(apiErr)
}
pl, apiErr, err = tc.scope.ListGroups(ctx)
assert.ElementsMatch(comparableSlice(expected), comparableSlice(pl))
})
}
}
func comparableSlice(in []*groups.Group) []groups.Group {
var filtered []groups.Group
for _, i := range in {
p := groups.Group{
Id: i.Id,
Name: i.Name,
Description: i.Description,
CreatedTime: i.CreatedTime,
UpdatedTime: i.UpdatedTime,
Disabled: i.Disabled,
}
filtered = append(filtered, p)
}
return filtered
}
func TestGroup_Crud(t *testing.T) {
tc := controller.NewTestController(t, &controller.TestControllerOpts{DisableAuthorizationFailures: true})
defer tc.Shutdown()
client := tc.Client()
org := &scopes.Org{
Client: client,
}
proj, apiErr, err := org.CreateProject(tc.Context(), &scopes.Project{})
require.NoError(t, err)
require.Nil(t, apiErr)
checkGroup := func(step string, g *groups.Group, apiErr *api.Error, err error, wantedName string) {
assert := assert.New(t)
assert.NoError(err, step)
if !assert.Nil(apiErr, step) && apiErr.Message != "" {
t.Errorf("ApiError message: %q", apiErr.Message)
}
assert.NotNil(g, "returned no resource", step)
gotName := ""
if g.Name != nil {
gotName = *g.Name
}
assert.Equal(wantedName, gotName, step)
}
cases := []struct {
name string
scope groupCrud
}{
{
name: "org",
scope: org,
},
{
name: "project",
scope: proj,
},
}
for _, tt := range cases {
t.Run(tt.name, func(t *testing.T) {
g, apiErr, err := tt.scope.CreateGroup(tc.Context(), &groups.Group{Name: api.String("foo")})
checkGroup("create", g, apiErr, err, "foo")
g, apiErr, err = tt.scope.ReadGroup(tc.Context(), &groups.Group{Id: g.Id})
checkGroup("read", g, apiErr, err, "foo")
g = &groups.Group{Id: g.Id}
g.Name = api.String("bar")
g, apiErr, err = tt.scope.UpdateGroup(tc.Context(), g)
checkGroup("update", g, apiErr, err, "bar")
g = &groups.Group{Id: g.Id}
g.SetDefault("name")
g, apiErr, err = tt.scope.UpdateGroup(tc.Context(), g)
checkGroup("update", g, apiErr, err, "")
existed, apiErr, err := tt.scope.DeleteGroup(tc.Context(), g)
assert.NoError(t, err)
assert.True(t, existed, "Expected existing user when deleted, but it wasn't.")
existed, apiErr, err = tt.scope.DeleteGroup(tc.Context(), g)
assert.NoError(t, err)
assert.False(t, existed, "Expected user to not exist when deleted, but it did.")
})
}
}
func TestGroup_Errors(t *testing.T) {
assert := assert.New(t)
tc := controller.NewTestController(t, &controller.TestControllerOpts{DisableAuthorizationFailures: true})
defer tc.Shutdown()
ctx := tc.Context()
client := tc.Client()
org := &scopes.Org{
Client: client,
}
proj, apiErr, err := org.CreateProject(tc.Context(), &scopes.Project{})
require.NoError(t, err)
require.Nil(t, apiErr)
cases := []struct {
name string
scope groupCrud
}{
{
name: "org",
scope: org,
},
{
name: "project",
scope: proj,
},
}
for _, tt := range cases {
t.Run(tt.name, func(t *testing.T) {
u, apiErr, err := tt.scope.CreateGroup(ctx, &groups.Group{Name: api.String("first")})
assert.NoError(err)
assert.Nil(apiErr)
assert.NotNil(u)
// Create another resource with the same name.
_, apiErr, err = tt.scope.CreateGroup(ctx, &groups.Group{Name: api.String("first")})
assert.NoError(err)
assert.NotNil(apiErr)
_, apiErr, err = tt.scope.ReadGroup(ctx, &groups.Group{Id: iam.GroupPrefix + "_doesntexis"})
assert.NoError(err)
assert.NotNil(apiErr)
assert.EqualValues(apiErr.Status, http.StatusNotFound)
_, apiErr, err = tt.scope.ReadGroup(ctx, &groups.Group{Id: "invalid id"})
assert.NoError(err)
assert.NotNil(apiErr)
assert.EqualValues(apiErr.Status, http.StatusBadRequest)
_, apiErr, err = tt.scope.UpdateGroup(ctx, &groups.Group{Id: u.Id})
assert.NoError(err)
assert.NotNil(apiErr)
assert.EqualValues(apiErr.Status, http.StatusBadRequest)
})
}
}
*/