def test_not_permitted(self): ch = "history-native-sync-ch" pubnub = PubNub(pnconf_pam_copy()) pubnub.config.uuid = "history-native-sync-uuid" with pytest.raises(PubNubException): pubnub.history().channel(ch).count(5).sync()
def test_encrypted(self): ch = "history-native-sync-ch" pubnub = PubNub(pnconf_enc_copy()) pubnub.config.uuid = "history-native-sync-uuid" for i in range(COUNT): envelope = pubnub.publish().channel(ch).message("hey-%s" % i).sync() assert isinstance(envelope.result, PNPublishResult) assert envelope.result.timetoken > 0 time.sleep(5) envelope = pubnub.history().channel(ch).count(COUNT).sync() assert isinstance(envelope.result, PNHistoryResult) assert envelope.result.start_timetoken > 0 assert envelope.result.end_timetoken > 0 assert len(envelope.result.messages) == 5 assert envelope.result.messages[0].entry == 'hey-0' assert envelope.result.messages[1].entry == 'hey-1' assert envelope.result.messages[2].entry == 'hey-2' assert envelope.result.messages[3].entry == 'hey-3' assert envelope.result.messages[4].entry == 'hey-4'
def test_super_call_with_channel_only(self): ch = "history-native-sync-ch" pubnub = PubNub(pnconf_pam_copy()) pubnub.config.uuid = "history-native-sync-uuid" envelope = pubnub.history().channel(ch).sync() assert isinstance(envelope.result, PNHistoryResult) assert not envelope.status.is_error()
def test_super_call_with_all_params(self): ch = "history-native-sync-ch" pubnub = PubNub(pnconf_pam_copy()) pubnub.config.uuid = "history-native-sync-uuid" envelope = pubnub.history().channel(ch).count(2).include_timetoken(True).reverse(True).start(1).end(2).sync() assert isinstance(envelope.result, PNHistoryResult) assert not envelope.status.is_error()