mirror of https://github.com/hashicorp/boundary
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.
346 lines
7.7 KiB
346 lines
7.7 KiB
package iam
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/boundary/internal/db"
|
|
"github.com/hashicorp/boundary/internal/db/timestamp"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"google.golang.org/protobuf/proto"
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
)
|
|
|
|
func TestScope_ImmutableFields(t *testing.T) {
|
|
t.Parallel()
|
|
conn, _ := db.TestSetup(t, "postgres")
|
|
wrapper := db.TestWrapper(t)
|
|
repo := TestRepo(t, conn, wrapper)
|
|
w := db.New(conn)
|
|
|
|
ts := timestamp.Timestamp{Timestamp: ×tamppb.Timestamp{Seconds: 0, Nanos: 0}}
|
|
|
|
new, _ := TestScopes(t, repo)
|
|
var tests = []struct {
|
|
name string
|
|
update *Scope
|
|
fieldMask []string
|
|
}{
|
|
{
|
|
name: "public_id",
|
|
update: func() *Scope {
|
|
c := new.Clone().(*Scope)
|
|
c.PublicId = "o_thisIsNotAValidId"
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"PublicId"},
|
|
},
|
|
{
|
|
name: "create time",
|
|
update: func() *Scope {
|
|
c := new.Clone().(*Scope)
|
|
c.CreateTime = &ts
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"CreateTime"},
|
|
},
|
|
{
|
|
name: "type",
|
|
update: func() *Scope {
|
|
c := new.Clone().(*Scope)
|
|
c.Type = "project"
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"Type"},
|
|
},
|
|
{
|
|
name: "parent_id",
|
|
update: func() *Scope {
|
|
u := new.Clone().(*Scope)
|
|
u.PublicId = "p_thisIsNotAValidId"
|
|
return u
|
|
}(),
|
|
fieldMask: []string{"ParentId"},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
orig := new.Clone()
|
|
err := w.LookupById(context.Background(), orig)
|
|
require.NoError(err)
|
|
|
|
rowsUpdated, err := w.Update(context.Background(), tt.update, tt.fieldMask, nil, db.WithSkipVetForWrite(true))
|
|
require.Error(err)
|
|
assert.Equal(0, rowsUpdated)
|
|
|
|
after := new.Clone()
|
|
err = w.LookupById(context.Background(), after)
|
|
require.NoError(err)
|
|
|
|
assert.True(proto.Equal(orig.(*Scope), after.(*Scope)))
|
|
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestConcreteScope_ImmutableFields(t *testing.T) {
|
|
const (
|
|
query = `select scope_id from {{rep}} where scope_id = $1`
|
|
update = `update {{rep}} set scope_id = $1 where scope_id = $2;`
|
|
)
|
|
t.Parallel()
|
|
conn, _ := db.TestSetup(t, "postgres")
|
|
wrapper := db.TestWrapper(t)
|
|
repo := TestRepo(t, conn, wrapper)
|
|
db := conn.DB()
|
|
|
|
org, proj := TestScopes(t, repo)
|
|
|
|
var tests = []struct {
|
|
name string
|
|
scopeId string
|
|
updateTo string
|
|
tableName string
|
|
}{
|
|
{
|
|
name: "global",
|
|
scopeId: "global",
|
|
updateTo: "o_12345678901",
|
|
tableName: "iam_scope_global",
|
|
},
|
|
{
|
|
name: "org",
|
|
scopeId: org.PublicId,
|
|
updateTo: "o_12345678901",
|
|
tableName: "iam_scope_org",
|
|
},
|
|
{
|
|
name: "project",
|
|
scopeId: proj.PublicId,
|
|
updateTo: "o_12345678901",
|
|
tableName: "iam_scope_project",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
updateStmt := strings.Replace(update, "{{rep}}", tt.tableName, -1)
|
|
queryStmt := strings.Replace(query, "{{rep}}", tt.tableName, -1)
|
|
|
|
_, err := db.Exec(updateStmt, tt.updateTo, tt.scopeId)
|
|
assert.Error(err)
|
|
|
|
var scopeId string
|
|
err = db.QueryRow(queryStmt, tt.scopeId).Scan(&scopeId)
|
|
assert.NoError(err)
|
|
assert.Equal(tt.scopeId, scopeId)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUser_ImmutableFields(t *testing.T) {
|
|
t.Parallel()
|
|
conn, _ := db.TestSetup(t, "postgres")
|
|
wrapper := db.TestWrapper(t)
|
|
repo := TestRepo(t, conn, wrapper)
|
|
w := db.New(conn)
|
|
|
|
ts := timestamp.Timestamp{Timestamp: ×tamppb.Timestamp{Seconds: 0, Nanos: 0}}
|
|
|
|
org, proj := TestScopes(t, repo)
|
|
new := TestUser(t, repo, org.PublicId)
|
|
|
|
var tests = []struct {
|
|
name string
|
|
update *User
|
|
fieldMask []string
|
|
}{
|
|
{
|
|
name: "public_id",
|
|
update: func() *User {
|
|
c := new.Clone().(*User)
|
|
c.PublicId = "o_thisIsNotAValidId"
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"PublicId"},
|
|
},
|
|
{
|
|
name: "create time",
|
|
update: func() *User {
|
|
c := new.Clone().(*User)
|
|
c.CreateTime = &ts
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"CreateTime"},
|
|
},
|
|
{
|
|
name: "scope id",
|
|
update: func() *User {
|
|
c := new.Clone().(*User)
|
|
c.ScopeId = proj.PublicId
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"ScopeId"},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
orig := new.Clone()
|
|
err := w.LookupById(context.Background(), orig)
|
|
require.NoError(err)
|
|
|
|
rowsUpdated, err := w.Update(context.Background(), tt.update, tt.fieldMask, nil, db.WithSkipVetForWrite(true))
|
|
require.Error(err)
|
|
assert.Equal(0, rowsUpdated)
|
|
|
|
after := new.Clone()
|
|
err = w.LookupById(context.Background(), after)
|
|
require.NoError(err)
|
|
|
|
assert.True(proto.Equal(orig.(*User), after.(*User)))
|
|
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRole_ImmutableFields(t *testing.T) {
|
|
t.Parallel()
|
|
conn, _ := db.TestSetup(t, "postgres")
|
|
wrapper := db.TestWrapper(t)
|
|
repo := TestRepo(t, conn, wrapper)
|
|
w := db.New(conn)
|
|
|
|
ts := timestamp.Timestamp{Timestamp: ×tamppb.Timestamp{Seconds: 0, Nanos: 0}}
|
|
|
|
org, proj := TestScopes(t, repo)
|
|
new := TestRole(t, conn, org.PublicId)
|
|
|
|
var tests = []struct {
|
|
name string
|
|
update *Role
|
|
fieldMask []string
|
|
}{
|
|
{
|
|
name: "public_id",
|
|
update: func() *Role {
|
|
c := new.Clone().(*Role)
|
|
c.PublicId = "r_thisIsNotAValidId"
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"PublicId"},
|
|
},
|
|
{
|
|
name: "create time",
|
|
update: func() *Role {
|
|
c := new.Clone().(*Role)
|
|
c.CreateTime = &ts
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"CreateTime"},
|
|
},
|
|
{
|
|
name: "scope id",
|
|
update: func() *Role {
|
|
c := new.Clone().(*Role)
|
|
c.ScopeId = proj.PublicId
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"ScopeId"},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
orig := new.Clone()
|
|
err := w.LookupById(context.Background(), orig)
|
|
require.NoError(err)
|
|
|
|
rowsUpdated, err := w.Update(context.Background(), tt.update, tt.fieldMask, nil, db.WithSkipVetForWrite(true))
|
|
require.Error(err)
|
|
assert.Equal(0, rowsUpdated)
|
|
|
|
after := new.Clone()
|
|
err = w.LookupById(context.Background(), after)
|
|
require.NoError(err)
|
|
|
|
assert.True(proto.Equal(orig.(*Role), after.(*Role)))
|
|
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestGroup_ImmutableFields(t *testing.T) {
|
|
t.Parallel()
|
|
conn, _ := db.TestSetup(t, "postgres")
|
|
wrapper := db.TestWrapper(t)
|
|
repo := TestRepo(t, conn, wrapper)
|
|
w := db.New(conn)
|
|
|
|
ts := timestamp.Timestamp{Timestamp: ×tamppb.Timestamp{Seconds: 0, Nanos: 0}}
|
|
|
|
org, proj := TestScopes(t, repo)
|
|
new := TestGroup(t, conn, org.PublicId)
|
|
|
|
var tests = []struct {
|
|
name string
|
|
update *Group
|
|
fieldMask []string
|
|
}{
|
|
{
|
|
name: "public_id",
|
|
update: func() *Group {
|
|
c := new.Clone().(*Group)
|
|
c.PublicId = "g_thisIsNotAValidId"
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"PublicId"},
|
|
},
|
|
{
|
|
name: "create time",
|
|
update: func() *Group {
|
|
c := new.Clone().(*Group)
|
|
c.CreateTime = &ts
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"CreateTime"},
|
|
},
|
|
{
|
|
name: "scope id",
|
|
update: func() *Group {
|
|
c := new.Clone().(*Group)
|
|
c.ScopeId = proj.PublicId
|
|
return c
|
|
}(),
|
|
fieldMask: []string{"ScopeId"},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
orig := new.Clone()
|
|
err := w.LookupById(context.Background(), orig)
|
|
require.NoError(err)
|
|
|
|
rowsUpdated, err := w.Update(context.Background(), tt.update, tt.fieldMask, nil, db.WithSkipVetForWrite(true))
|
|
require.Error(err)
|
|
assert.Equal(0, rowsUpdated)
|
|
|
|
after := new.Clone()
|
|
err = w.LookupById(context.Background(), after)
|
|
require.NoError(err)
|
|
|
|
assert.True(proto.Equal(orig.(*Group), after.(*Group)))
|
|
|
|
})
|
|
}
|
|
}
|