示例#1
0
 def test_grant_additive(self):
     path = yield self.client.create("/abc")
     acl = ACL(self.client, "/abc")
     yield acl.grant("admin", read=True)
     yield acl.grant("admin", write=True)
     test_ace = make_ace(":", read=True, write=True)
     node_acl, stat = yield self.client.get_acl(path)
     self.assertEqual(node_acl[-1]["perms"], test_ace["perms"])
示例#2
0
 def test_grant_additive(self):
     path = yield self.client.create("/abc")
     acl = ACL(self.client, "/abc")
     yield acl.grant("admin", read=True)
     yield acl.grant("admin", write=True)
     test_ace = make_ace(":", read=True, write=True)
     node_acl, stat = yield self.client.get_acl(path)
     self.assertEqual(node_acl[-1]["perms"], test_ace["perms"])
示例#3
0
 def test_grant(self):
     path = yield self.client.create("/abc")
     acl = ACL(self.client, path)
     yield acl.grant("admin", all=True)
     node_acl, stat = yield self.client.get_acl(path)
     self.assertEqual(
         node_acl,
         [ZOO_OPEN_ACL_UNSAFE,
          make_ace(self.admin.get_token(), all=True)])
示例#4
0
 def test_grant(self):
     path = yield self.client.create("/abc")
     acl = ACL(self.client, path)
     yield acl.grant("admin", all=True)
     node_acl, stat = yield self.client.get_acl(path)
     self.assertEqual(
         node_acl,
         [ZOO_OPEN_ACL_UNSAFE,
          make_ace(self.admin.get_token(), all=True)])
示例#5
0
    def test_acl_without_admin(self):
        """A client needs an attached principle with the admin perm to set acl.
        """
        client = yield self.get_zookeeper_client().connect()
        principal = Principal("zebra", "stripes")
        yield self.tokens.add(principal)
        attach_deferred = principal.attach(client)
        yield self.client.create(
            "/abc", acls=[make_ace(self.admin.get_token(), all=True)])
        yield attach_deferred

        acl = ACL(client, "/abc")
        yield self.assertFailure(acl.grant("zebra", all=True),
                                 zookeeper.NoAuthException)
示例#6
0
    def test_acl_without_admin(self):
        """A client needs an attached principle with the admin perm to set acl.
        """
        client = yield self.get_zookeeper_client().connect()
        principal = Principal("zebra", "stripes")
        yield self.tokens.add(principal)
        attach_deferred = principal.attach(client)
        yield self.client.create(
            "/abc",
            acls=[make_ace(self.admin.get_token(), all=True)])
        yield attach_deferred

        acl = ACL(client, "/abc")
        yield self.assertFailure(
            acl.grant("zebra", all=True),
            zookeeper.NoAuthException)
示例#7
0
 def test_grant_not_in_token_database(self):
     path = yield self.client.create("/abc")
     acl = ACL(self.client, path)
     yield self.assertFailure(acl.grant("zebra"), PrincipalNotFound)
示例#8
0
 def test_acl_on_non_existant_node(self):
     acl = ACL(self.client, "abc")
     yield self.assertFailure(acl.grant("admin", all=True), StateNotFound)
示例#9
0
 def test_grant_not_in_token_database(self):
     path = yield self.client.create("/abc")
     acl = ACL(self.client, path)
     yield self.assertFailure(acl.grant("zebra"), PrincipalNotFound)
示例#10
0
 def test_acl_on_non_existant_node(self):
     acl = ACL(self.client, "abc")
     yield self.assertFailure(acl.grant("admin", all=True), StateNotFound)