本文整理汇总了Python中pubnub.pubnub_asyncio.PubNubAsyncio.revoke方法的典型用法代码示例。如果您正苦于以下问题:Python PubNubAsyncio.revoke方法的具体用法?Python PubNubAsyncio.revoke怎么用?Python PubNubAsyncio.revoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pubnub.pubnub_asyncio.PubNubAsyncio
的用法示例。
在下文中一共展示了PubNubAsyncio.revoke方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_global_level
# 需要导入模块: from pubnub.pubnub_asyncio import PubNubAsyncio [as 别名]
# 或者: from pubnub.pubnub_asyncio.PubNubAsyncio import revoke [as 别名]
def test_global_level(event_loop):
pubnub = PubNubAsyncio(pnconf_pam_copy(), custom_event_loop=event_loop)
pubnub.config.uuid = "my_uuid"
env = (yield from pubnub.grant()
.write(True)
.read(True)
.future())
assert isinstance(env.result, PNAccessManagerGrantResult)
assert len(env.result.channels) == 0
assert len(env.result.groups) == 0
assert env.result.read_enabled is True
assert env.result.write_enabled is True
assert env.result.manage_enabled is False
env = (yield from pubnub.audit()
.future())
assert isinstance(env.result, PNAccessManagerAuditResult)
assert len(env.result.channels) >= 0
assert len(env.result.groups) >= 0
assert env.result.read_enabled is True
assert env.result.write_enabled is True
assert env.result.manage_enabled is False
env = yield from pubnub.revoke().future()
assert isinstance(env.result, PNAccessManagerGrantResult)
assert len(env.result.channels) == 0
assert len(env.result.groups) == 0
assert env.result.read_enabled is False
assert env.result.write_enabled is False
assert env.result.manage_enabled is False
pubnub.stop()