forked from TrueCloudLab/frostfs-node
[#1189] cli: Fix unit-test for eACL converter
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
parent
68eb68f59a
commit
ec76689ab7
1 changed files with 4 additions and 4 deletions
|
@ -105,7 +105,7 @@ func TestNoFilters(t *testing.T) {
|
|||
|
||||
req := &testRequest{
|
||||
props: map[string]string{
|
||||
nativeschema.PropertyKeyActorRole: eacl.RoleOthers.String(),
|
||||
nativeschema.PropertyKeyActorRole: nativeschema.PropertyValueContainerRoleOthers,
|
||||
},
|
||||
res: &testResource{name: fmt.Sprintf(nativeschema.ResourceFormatRootContainerObjects, cnrID.EncodeToString())},
|
||||
}
|
||||
|
@ -150,7 +150,7 @@ func TestNoFilters(t *testing.T) {
|
|||
|
||||
req := &testRequest{
|
||||
props: map[string]string{
|
||||
nativeschema.PropertyKeyActorRole: eacl.RoleOthers.String(),
|
||||
nativeschema.PropertyKeyActorRole: nativeschema.PropertyValueContainerRoleOthers,
|
||||
nativeschema.PropertyKeyActorPublicKey: string(p2.PublicKey().Bytes()),
|
||||
},
|
||||
res: &testResource{name: fmt.Sprintf(nativeschema.ResourceFormatRootContainerObjects, cnrID.EncodeToString())},
|
||||
|
@ -283,7 +283,7 @@ func TestWithFilters(t *testing.T) {
|
|||
|
||||
req := &testRequest{
|
||||
props: map[string]string{
|
||||
nativeschema.PropertyKeyActorRole: eacl.RoleOthers.String(),
|
||||
nativeschema.PropertyKeyActorRole: nativeschema.PropertyValueContainerRoleOthers,
|
||||
},
|
||||
res: &testResource{
|
||||
name: fmt.Sprintf(nativeschema.ResourceFormatRootContainerObjects, cnrID.EncodeToString()),
|
||||
|
@ -335,7 +335,7 @@ func TestWithFilters(t *testing.T) {
|
|||
|
||||
req := &testRequest{
|
||||
props: map[string]string{
|
||||
nativeschema.PropertyKeyActorRole: eacl.RoleOthers.String(),
|
||||
nativeschema.PropertyKeyActorRole: nativeschema.PropertyValueContainerRoleOthers,
|
||||
attrKey: attrValue,
|
||||
},
|
||||
res: &testResource{
|
||||
|
|
Loading…
Reference in a new issue