本文整理汇总了C++中ACLs::add_destroy_volumes方法的典型用法代码示例。如果您正苦于以下问题:C++ ACLs::add_destroy_volumes方法的具体用法?C++ ACLs::add_destroy_volumes怎么用?C++ ACLs::add_destroy_volumes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ACLs
的用法示例。
在下文中一共展示了ACLs::add_destroy_volumes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: authorizer
// This tests the authorization of ACLs used for destruction
// operations on persistent volumes.
TYPED_TEST(AuthorizationTest, DestroyVolume)
{
ACLs acls;
// "foo" principal can destroy its own volumes.
mesos::ACL::DestroyVolume* acl1 = acls.add_destroy_volumes();
acl1->mutable_principals()->add_values("foo");
acl1->mutable_creator_principals()->add_values("foo");
// "bar" principal cannot destroy anyone's volumes.
mesos::ACL::DestroyVolume* acl2 = acls.add_destroy_volumes();
acl2->mutable_principals()->add_values("bar");
acl2->mutable_creator_principals()->set_type(mesos::ACL::Entity::NONE);
// "ops" principal can destroy anyone's volumes.
mesos::ACL::DestroyVolume* acl3 = acls.add_destroy_volumes();
acl3->mutable_principals()->add_values("ops");
acl3->mutable_creator_principals()->set_type(mesos::ACL::Entity::ANY);
// No other principals can destroy volumes.
mesos::ACL::DestroyVolume* acl4 = acls.add_destroy_volumes();
acl4->mutable_principals()->set_type(mesos::ACL::Entity::ANY);
acl4->mutable_creator_principals()->set_type(mesos::ACL::Entity::NONE);
// Create an Authorizer with the ACLs.
Try<Authorizer*> create = TypeParam::create();
ASSERT_SOME(create);
Owned<Authorizer> authorizer(create.get());
Try<Nothing> initialized = authorizer.get()->initialize(acls);
ASSERT_SOME(initialized);
// Principal "foo" can destroy its own volumes, so this will pass.
mesos::ACL::DestroyVolume request1;
request1.mutable_principals()->add_values("foo");
request1.mutable_creator_principals()->add_values("foo");
AWAIT_EXPECT_TRUE(authorizer.get()->authorize(request1));
// Principal "bar" cannot destroy anyone's
// volumes, so requests 2 and 3 will fail.
mesos::ACL::DestroyVolume request2;
request2.mutable_principals()->add_values("bar");
request2.mutable_creator_principals()->add_values("foo");
AWAIT_EXPECT_FALSE(authorizer.get()->authorize(request2));
mesos::ACL::DestroyVolume request3;
request3.mutable_principals()->add_values("bar");
request3.mutable_creator_principals()->add_values("bar");
AWAIT_EXPECT_FALSE(authorizer.get()->authorize(request3));
// Principal "ops" can destroy anyone's volumes,
// so requests 4 and 5 will succeed.
mesos::ACL::DestroyVolume request4;
request4.mutable_principals()->add_values("ops");
request4.mutable_creator_principals()->add_values("foo");
AWAIT_EXPECT_TRUE(authorizer.get()->authorize(request4));
mesos::ACL::DestroyVolume request5;
request5.mutable_principals()->add_values("ops");
request5.mutable_creator_principals()->add_values("bar");
request5.mutable_creator_principals()->add_values("ops");
AWAIT_EXPECT_TRUE(authorizer.get()->authorize(request5));
// Principal "zelda" is not mentioned in the ACLs of the Authorizer, so it
// will be caught by the final ACL, which provides a default case that denies
// access for all other principals. This case will fail.
mesos::ACL::DestroyVolume request6;
request6.mutable_principals()->add_values("zelda");
request6.mutable_creator_principals()->add_values("foo");
AWAIT_EXPECT_FALSE(authorizer.get()->authorize(request6));
}
示例2: authorizer
// This tests the authorization of ACLs used for destruction
// operations on persistent volumes.
TYPED_TEST(AuthorizationTest, DestroyVolume)
{
ACLs acls;
{
// "foo" principal can destroy its own volumes.
mesos::ACL::DestroyVolume* acl = acls.add_destroy_volumes();
acl->mutable_principals()->add_values("foo");
acl->mutable_creator_principals()->add_values("foo");
}
{
// "bar" principal cannot destroy anyone's volumes.
mesos::ACL::DestroyVolume* acl = acls.add_destroy_volumes();
acl->mutable_principals()->add_values("bar");
acl->mutable_creator_principals()->set_type(mesos::ACL::Entity::NONE);
}
{
// "ops" principal can destroy anyone's volumes.
mesos::ACL::DestroyVolume* acl = acls.add_destroy_volumes();
acl->mutable_principals()->add_values("ops");
acl->mutable_creator_principals()->set_type(mesos::ACL::Entity::ANY);
}
{
// No other principals can destroy volumes.
mesos::ACL::DestroyVolume* acl = acls.add_destroy_volumes();
acl->mutable_principals()->set_type(mesos::ACL::Entity::ANY);
acl->mutable_creator_principals()->set_type(mesos::ACL::Entity::NONE);
}
// Create an `Authorizer` with the ACLs.
Try<Authorizer*> create = TypeParam::create(parameterize(acls));
ASSERT_SOME(create);
Owned<Authorizer> authorizer(create.get());
// Principal "foo" can destroy its own volumes, so this will pass.
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("foo");
request.mutable_object()->set_value("foo");
AWAIT_EXPECT_TRUE(authorizer.get()->authorized(request));
}
// Principal "bar" cannot destroy anyone's
// volumes, so requests 2 and 3 will fail.
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("bar");
request.mutable_object()->set_value("foo");
AWAIT_EXPECT_FALSE(authorizer.get()->authorized(request));
}
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("bar");
request.mutable_object()->set_value("bar");
AWAIT_EXPECT_FALSE(authorizer.get()->authorized(request));
}
// Principal "ops" can destroy anyone's volumes,
// so requests 4 and 5 will succeed.
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("ops");
request.mutable_object()->set_value("foo");
AWAIT_EXPECT_TRUE(authorizer.get()->authorized(request));
}
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("ops");
request.mutable_object()->set_value("ops");
AWAIT_EXPECT_TRUE(authorizer.get()->authorized(request));
}
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("ops");
request.mutable_object()->set_value("bar");
AWAIT_EXPECT_TRUE(authorizer.get()->authorized(request));
}
// Principal "zelda" is not mentioned in the ACLs of the Authorizer, so it
// will be caught by the final ACL, which provides a default case that denies
// access for all other principals. This case will fail.
{
authorization::Request request;
request.set_action(authorization::DESTROY_VOLUME_WITH_PRINCIPAL);
request.mutable_subject()->set_value("zelda");
request.mutable_object()->set_value("foo");
AWAIT_EXPECT_FALSE(authorizer.get()->authorized(request));
//.........这里部分代码省略.........