Skip to content

Commit

Permalink
Adding ACLs testing for Transactional ID
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPreston committed Aug 5, 2024
1 parent e13b447 commit f632707
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_acls_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ def test_create_acls(compose_path):
"Action": "DESCRIBE",
"Effect": "ALLOW",
},
{
"Resource": "kafka-cluster",
"PatternType": "LITERAL",
"Principal": "User:toto",
"ResourceType": "TRANSACTIONAL_ID",
"Action": "READ",
"Effect": "ALLOW",
},
]
bindings: list[AclBinding] = [set_binding_from_dict(_acl) for _acl in new_acls]
create_new_acls(
Expand Down

0 comments on commit f632707

Please sign in to comment.