|
|
|
@ -5,6 +5,7 @@ package resource
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"strings"
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/oklog/ulid/v2"
|
|
|
|
@ -27,7 +28,7 @@ func TestWriteStatus_ACL(t *testing.T) {
|
|
|
|
|
}
|
|
|
|
|
testcases := map[string]testCase{
|
|
|
|
|
"denied": {
|
|
|
|
|
authz: AuthorizerFrom(t, demo.ArtistV2WritePolicy),
|
|
|
|
|
authz: AuthorizerFrom(t, demo.ArtistV2ReadPolicy),
|
|
|
|
|
assertErrFn: func(err error) {
|
|
|
|
|
require.Error(t, err)
|
|
|
|
|
require.Equal(t, codes.PermissionDenied.String(), status.Code(err).String())
|
|
|
|
@ -45,11 +46,6 @@ func TestWriteStatus_ACL(t *testing.T) {
|
|
|
|
|
t.Run(desc, func(t *testing.T) {
|
|
|
|
|
server := testServer(t)
|
|
|
|
|
client := testClient(t, server)
|
|
|
|
|
|
|
|
|
|
mockACLResolver := &MockACLResolver{}
|
|
|
|
|
mockACLResolver.On("ResolveTokenAndDefaultMeta", mock.Anything, mock.Anything, mock.Anything).
|
|
|
|
|
Return(tc.authz, nil)
|
|
|
|
|
server.ACLResolver = mockACLResolver
|
|
|
|
|
demo.RegisterTypes(server.Registry)
|
|
|
|
|
|
|
|
|
|
artist, err := demo.GenerateV2Artist()
|
|
|
|
@ -59,6 +55,12 @@ func TestWriteStatus_ACL(t *testing.T) {
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
artist = rsp.Resource
|
|
|
|
|
|
|
|
|
|
// Defer mocking out authz since above write is necessary to set up the test resource.
|
|
|
|
|
mockACLResolver := &MockACLResolver{}
|
|
|
|
|
mockACLResolver.On("ResolveTokenAndDefaultMeta", mock.Anything, mock.Anything, mock.Anything).
|
|
|
|
|
Return(tc.authz, nil)
|
|
|
|
|
server.ACLResolver = mockACLResolver
|
|
|
|
|
|
|
|
|
|
// exercise ACL
|
|
|
|
|
_, err = client.WriteStatus(testContext(t), validWriteStatusRequest(t, artist))
|
|
|
|
|
tc.assertErrFn(err)
|
|
|
|
@ -69,35 +71,92 @@ func TestWriteStatus_ACL(t *testing.T) {
|
|
|
|
|
func TestWriteStatus_InputValidation(t *testing.T) {
|
|
|
|
|
server := testServer(t)
|
|
|
|
|
client := testClient(t, server)
|
|
|
|
|
|
|
|
|
|
demo.RegisterTypes(server.Registry)
|
|
|
|
|
|
|
|
|
|
testCases := map[string]func(*pbresource.WriteStatusRequest){
|
|
|
|
|
"no id": func(req *pbresource.WriteStatusRequest) { req.Id = nil },
|
|
|
|
|
"no type": func(req *pbresource.WriteStatusRequest) { req.Id.Type = nil },
|
|
|
|
|
"no tenancy": func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy = nil },
|
|
|
|
|
"no name": func(req *pbresource.WriteStatusRequest) { req.Id.Name = "" },
|
|
|
|
|
"no uid": func(req *pbresource.WriteStatusRequest) { req.Id.Uid = "" },
|
|
|
|
|
"no key": func(req *pbresource.WriteStatusRequest) { req.Key = "" },
|
|
|
|
|
"no status": func(req *pbresource.WriteStatusRequest) { req.Status = nil },
|
|
|
|
|
"no observed generation": func(req *pbresource.WriteStatusRequest) { req.Status.ObservedGeneration = "" },
|
|
|
|
|
"bad observed generation": func(req *pbresource.WriteStatusRequest) { req.Status.ObservedGeneration = "bogus" },
|
|
|
|
|
"no condition type": func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Type = "" },
|
|
|
|
|
"no reference type": func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Resource.Type = nil },
|
|
|
|
|
"no reference tenancy": func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Resource.Tenancy = nil },
|
|
|
|
|
"no reference name": func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Resource.Name = "" },
|
|
|
|
|
"updated at provided": func(req *pbresource.WriteStatusRequest) { req.Status.UpdatedAt = timestamppb.Now() },
|
|
|
|
|
testCases := map[string]struct {
|
|
|
|
|
typ *pbresource.Type
|
|
|
|
|
modFn func(req *pbresource.WriteStatusRequest)
|
|
|
|
|
}{
|
|
|
|
|
"no id": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id = nil },
|
|
|
|
|
},
|
|
|
|
|
"no type": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Type = nil },
|
|
|
|
|
},
|
|
|
|
|
"no tenancy": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy = nil },
|
|
|
|
|
},
|
|
|
|
|
"no name": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Name = "" },
|
|
|
|
|
},
|
|
|
|
|
"no uid": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Uid = "" },
|
|
|
|
|
},
|
|
|
|
|
"no key": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Key = "" },
|
|
|
|
|
},
|
|
|
|
|
"no status": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status = nil },
|
|
|
|
|
},
|
|
|
|
|
"no observed generation": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.ObservedGeneration = "" },
|
|
|
|
|
},
|
|
|
|
|
"bad observed generation": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.ObservedGeneration = "bogus" },
|
|
|
|
|
},
|
|
|
|
|
"no condition type": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Type = "" },
|
|
|
|
|
},
|
|
|
|
|
"no reference type": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Resource.Type = nil },
|
|
|
|
|
},
|
|
|
|
|
"no reference tenancy": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Resource.Tenancy = nil },
|
|
|
|
|
},
|
|
|
|
|
"no reference name": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.Conditions[0].Resource.Name = "" },
|
|
|
|
|
},
|
|
|
|
|
"updated at provided": {
|
|
|
|
|
typ: demo.TypeV2Artist,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Status.UpdatedAt = timestamppb.Now() },
|
|
|
|
|
},
|
|
|
|
|
"partition scoped type provides namespace in tenancy": {
|
|
|
|
|
typ: demo.TypeV1RecordLabel,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Namespace = "bad" },
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for desc, modFn := range testCases {
|
|
|
|
|
for desc, tc := range testCases {
|
|
|
|
|
t.Run(desc, func(t *testing.T) {
|
|
|
|
|
res, err := demo.GenerateV2Artist()
|
|
|
|
|
var res *pbresource.Resource
|
|
|
|
|
var err error
|
|
|
|
|
switch {
|
|
|
|
|
case resource.EqualType(demo.TypeV2Artist, tc.typ):
|
|
|
|
|
res, err = demo.GenerateV2Artist()
|
|
|
|
|
case resource.EqualType(demo.TypeV1RecordLabel, tc.typ):
|
|
|
|
|
res, err = demo.GenerateV1RecordLabel("Looney Tunes")
|
|
|
|
|
default:
|
|
|
|
|
t.Fatal("unsupported type", tc.typ)
|
|
|
|
|
}
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
res.Id.Uid = ulid.Make().String()
|
|
|
|
|
res.Generation = ulid.Make().String()
|
|
|
|
|
|
|
|
|
|
req := validWriteStatusRequest(t, res)
|
|
|
|
|
modFn(req)
|
|
|
|
|
tc.modFn(req)
|
|
|
|
|
|
|
|
|
|
_, err = client.WriteStatus(testContext(t), req)
|
|
|
|
|
require.Error(t, err)
|
|
|
|
@ -114,7 +173,6 @@ func TestWriteStatus_Success(t *testing.T) {
|
|
|
|
|
t.Run(desc, func(t *testing.T) {
|
|
|
|
|
server := testServer(t)
|
|
|
|
|
client := testClient(t, server)
|
|
|
|
|
|
|
|
|
|
demo.RegisterTypes(server.Registry)
|
|
|
|
|
|
|
|
|
|
res, err := demo.GenerateV2Artist()
|
|
|
|
@ -147,6 +205,149 @@ func TestWriteStatus_Success(t *testing.T) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestWriteStatus_Tenancy_Defaults(t *testing.T) {
|
|
|
|
|
for desc, tc := range map[string]struct {
|
|
|
|
|
scope resource.Scope
|
|
|
|
|
modFn func(req *pbresource.WriteStatusRequest)
|
|
|
|
|
}{
|
|
|
|
|
"namespaced resource provides nonempty partition and namespace": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) {},
|
|
|
|
|
},
|
|
|
|
|
"namespaced resource provides uppercase partition and namespace": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) {
|
|
|
|
|
req.Id.Tenancy.Partition = strings.ToUpper(req.Id.Tenancy.Partition)
|
|
|
|
|
req.Id.Tenancy.Namespace = strings.ToUpper(req.Id.Tenancy.Namespace)
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"namespaced resource inherits tokens partition when empty": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Partition = "" },
|
|
|
|
|
},
|
|
|
|
|
"namespaced resource inherits tokens namespace when empty": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Namespace = "" },
|
|
|
|
|
},
|
|
|
|
|
"namespaced resource inherits tokens partition and namespace when empty": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) {
|
|
|
|
|
req.Id.Tenancy.Partition = ""
|
|
|
|
|
req.Id.Tenancy.Namespace = ""
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"partitioned resource provides nonempty partition": {
|
|
|
|
|
scope: resource.ScopePartition,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) {},
|
|
|
|
|
},
|
|
|
|
|
"partitioned resource provides uppercase partition": {
|
|
|
|
|
scope: resource.ScopePartition,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) {
|
|
|
|
|
req.Id.Tenancy.Partition = strings.ToUpper(req.Id.Tenancy.Partition)
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"partitioned resource inherits tokens partition when empty": {
|
|
|
|
|
scope: resource.ScopePartition,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Partition = "" },
|
|
|
|
|
},
|
|
|
|
|
} {
|
|
|
|
|
t.Run(desc, func(t *testing.T) {
|
|
|
|
|
server := testServer(t)
|
|
|
|
|
client := testClient(t, server)
|
|
|
|
|
demo.RegisterTypes(server.Registry)
|
|
|
|
|
|
|
|
|
|
// Pick resource based on scope of type in testcase.
|
|
|
|
|
var res *pbresource.Resource
|
|
|
|
|
var err error
|
|
|
|
|
switch tc.scope {
|
|
|
|
|
case resource.ScopeNamespace:
|
|
|
|
|
res, err = demo.GenerateV2Artist()
|
|
|
|
|
case resource.ScopePartition:
|
|
|
|
|
res, err = demo.GenerateV1RecordLabel("Looney Tunes")
|
|
|
|
|
}
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Write resource so we can update status later.
|
|
|
|
|
writeRsp, err := client.Write(testContext(t), &pbresource.WriteRequest{Resource: res})
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
res = writeRsp.Resource
|
|
|
|
|
require.Nil(t, res.Status)
|
|
|
|
|
|
|
|
|
|
// Write status with tenancy modded by testcase.
|
|
|
|
|
req := validWriteStatusRequest(t, res)
|
|
|
|
|
tc.modFn(req)
|
|
|
|
|
rsp, err := client.WriteStatus(testContext(t), req)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
res = rsp.Resource
|
|
|
|
|
|
|
|
|
|
// Re-read resoruce and verify status successfully written (not nil)
|
|
|
|
|
_, err = client.Read(testContext(t), &pbresource.ReadRequest{Id: res.Id})
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
res = rsp.Resource
|
|
|
|
|
require.NotNil(t, res.Status)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestWriteStatus_Tenancy_NotFound(t *testing.T) {
|
|
|
|
|
for desc, tc := range map[string]struct {
|
|
|
|
|
scope resource.Scope
|
|
|
|
|
modFn func(req *pbresource.WriteStatusRequest)
|
|
|
|
|
errCode codes.Code
|
|
|
|
|
errContains string
|
|
|
|
|
}{
|
|
|
|
|
"namespaced resource provides nonexistant partition": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Partition = "bad" },
|
|
|
|
|
errCode: codes.InvalidArgument,
|
|
|
|
|
errContains: "partition",
|
|
|
|
|
},
|
|
|
|
|
"namespaced resource provides nonexistant namespace": {
|
|
|
|
|
scope: resource.ScopeNamespace,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Namespace = "bad" },
|
|
|
|
|
errCode: codes.InvalidArgument,
|
|
|
|
|
errContains: "namespace",
|
|
|
|
|
},
|
|
|
|
|
"partitioned resource provides nonexistant partition": {
|
|
|
|
|
scope: resource.ScopePartition,
|
|
|
|
|
modFn: func(req *pbresource.WriteStatusRequest) { req.Id.Tenancy.Partition = "bad" },
|
|
|
|
|
errCode: codes.InvalidArgument,
|
|
|
|
|
errContains: "partition",
|
|
|
|
|
},
|
|
|
|
|
} {
|
|
|
|
|
t.Run(desc, func(t *testing.T) {
|
|
|
|
|
server := testServer(t)
|
|
|
|
|
client := testClient(t, server)
|
|
|
|
|
demo.RegisterTypes(server.Registry)
|
|
|
|
|
|
|
|
|
|
// Pick resource based on scope of type in testcase.
|
|
|
|
|
var res *pbresource.Resource
|
|
|
|
|
var err error
|
|
|
|
|
switch tc.scope {
|
|
|
|
|
case resource.ScopeNamespace:
|
|
|
|
|
res, err = demo.GenerateV2Artist()
|
|
|
|
|
case resource.ScopePartition:
|
|
|
|
|
res, err = demo.GenerateV1RecordLabel("Looney Tunes")
|
|
|
|
|
}
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Fill in required fields so validation continues until tenancy is checked
|
|
|
|
|
req := validWriteStatusRequest(t, res)
|
|
|
|
|
req.Id.Uid = ulid.Make().String()
|
|
|
|
|
req.Status.ObservedGeneration = ulid.Make().String()
|
|
|
|
|
|
|
|
|
|
// Write status with tenancy modded by testcase.
|
|
|
|
|
tc.modFn(req)
|
|
|
|
|
_, err = client.WriteStatus(testContext(t), req)
|
|
|
|
|
|
|
|
|
|
// Verify non-existant tenancy field is the cause of the error.
|
|
|
|
|
require.Error(t, err)
|
|
|
|
|
require.Equal(t, tc.errCode.String(), status.Code(err).String())
|
|
|
|
|
require.Contains(t, err.Error(), tc.errContains)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestWriteStatus_CASFailure(t *testing.T) {
|
|
|
|
|
server := testServer(t)
|
|
|
|
|
client := testClient(t, server)
|
|
|
|
@ -268,24 +469,49 @@ func TestWriteStatus_NonCASUpdate_Retry(t *testing.T) {
|
|
|
|
|
func validWriteStatusRequest(t *testing.T, res *pbresource.Resource) *pbresource.WriteStatusRequest {
|
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
|
|
album, err := demo.GenerateV2Album(res.Id)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
return &pbresource.WriteStatusRequest{
|
|
|
|
|
Id: res.Id,
|
|
|
|
|
Version: res.Version,
|
|
|
|
|
Key: "consul.io/artist-controller",
|
|
|
|
|
Status: &pbresource.Status{
|
|
|
|
|
ObservedGeneration: res.Generation,
|
|
|
|
|
Conditions: []*pbresource.Condition{
|
|
|
|
|
{
|
|
|
|
|
Type: "AlbumCreated",
|
|
|
|
|
State: pbresource.Condition_STATE_TRUE,
|
|
|
|
|
Reason: "AlbumCreated",
|
|
|
|
|
Message: fmt.Sprintf("Album '%s' created", album.Id.Name),
|
|
|
|
|
Resource: resource.Reference(album.Id, ""),
|
|
|
|
|
switch {
|
|
|
|
|
case resource.EqualType(res.Id.Type, demo.TypeV2Artist):
|
|
|
|
|
album, err := demo.GenerateV2Album(res.Id)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
return &pbresource.WriteStatusRequest{
|
|
|
|
|
Id: res.Id,
|
|
|
|
|
Version: res.Version,
|
|
|
|
|
Key: "consul.io/artist-controller",
|
|
|
|
|
Status: &pbresource.Status{
|
|
|
|
|
ObservedGeneration: res.Generation,
|
|
|
|
|
Conditions: []*pbresource.Condition{
|
|
|
|
|
{
|
|
|
|
|
Type: "AlbumCreated",
|
|
|
|
|
State: pbresource.Condition_STATE_TRUE,
|
|
|
|
|
Reason: "AlbumCreated",
|
|
|
|
|
Message: fmt.Sprintf("Album '%s' created", album.Id.Name),
|
|
|
|
|
Resource: resource.Reference(album.Id, ""),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
case resource.EqualType(res.Id.Type, demo.TypeV1RecordLabel):
|
|
|
|
|
artist, err := demo.GenerateV2Artist()
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
return &pbresource.WriteStatusRequest{
|
|
|
|
|
Id: res.Id,
|
|
|
|
|
Version: res.Version,
|
|
|
|
|
Key: "consul.io/recordlabel-controller",
|
|
|
|
|
Status: &pbresource.Status{
|
|
|
|
|
ObservedGeneration: res.Generation,
|
|
|
|
|
Conditions: []*pbresource.Condition{
|
|
|
|
|
{
|
|
|
|
|
Type: "ArtistCreated",
|
|
|
|
|
State: pbresource.Condition_STATE_TRUE,
|
|
|
|
|
Reason: "ArtistCreated",
|
|
|
|
|
Message: fmt.Sprintf("Artist '%s' created", artist.Id.Name),
|
|
|
|
|
Resource: resource.Reference(artist.Id, ""),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
t.Fatal("unsupported type", res.Id.Type)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|