本文整理汇总了Python中interface.services.dm.iuser_notification_service.UserNotificationServiceClient.find_events方法的典型用法代码示例。如果您正苦于以下问题:Python UserNotificationServiceClient.find_events方法的具体用法?Python UserNotificationServiceClient.find_events怎么用?Python UserNotificationServiceClient.find_events使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类interface.services.dm.iuser_notification_service.UserNotificationServiceClient
的用法示例。
在下文中一共展示了UserNotificationServiceClient.find_events方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: UserNotificationIntTest
# 需要导入模块: from interface.services.dm.iuser_notification_service import UserNotificationServiceClient [as 别名]
# 或者: from interface.services.dm.iuser_notification_service.UserNotificationServiceClient import find_events [as 别名]
class UserNotificationIntTest(IonIntegrationTestCase):
def setUp(self):
self._start_container()
self.container.start_rel_from_url('res/deploy/r2dm.yml')
self.unsc = UserNotificationServiceClient(node=self.container.node)
self.rrc = ResourceRegistryServiceClient(node=self.container.node)
self.imc = IdentityManagementServiceClient(node=self.container.node)
def xtest_find_event_types_for_resource(self):
dataset_object = IonObject(RT.DataSet, name="dataset1")
dataset_id, version = self.rrc.create(dataset_object)
events = self.unsc.find_event_types_for_resource(dataset_id)
log.debug("dataset events = " + str(events))
try:
events = self.unsc.find_event_types_for_resource("bogus_id")
self.fail("failed to detect non-existant resource")
except:
pass
def test_create_two_user_notifications(self):
user_identty_object = IonObject(RT.UserIdentity, name="user1")
user_id = self.imc.create_user_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['resource_lifecycle']})
self.unsc.create_notification(notification_object, user_id)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification2",
"origin_list":['Some_Resource_Agent_ID2'],
"events_list":['data']})
self.unsc.create_notification(notification_object, user_id)
def test_delete_user_notifications(self):
user_identty_object = IonObject(RT.UserIdentity, name="user1")
user_id = self.imc.create_user_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
notification_object1 = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['resource_lifecycle']})
notification1_id = self.unsc.create_notification(notification_object1, user_id)
notification_object2 = IonObject(RT.NotificationRequest, {"name":"notification2",
"origin_list":['Some_Resource_Agent_ID2'],
"events_list":['data']})
notification2_id = self.unsc.create_notification(notification_object2, user_id)
self.unsc.delete_notification(notification1_id)
self.unsc.delete_notification(notification2_id)
def test_find_user_notifications(self):
user_identty_object = IonObject(RT.UserIdentity, name="user1")
user_id = self.imc.create_user_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['resource_lifecycle']})
self.unsc.create_notification(notification_object, user_id)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification2",
"origin_list":['Some_Resource_Agent_ID2'],
"events_list":['data']})
self.unsc.create_notification(notification_object, user_id)
notifications = self.unsc.find_notifications_by_user(user_id)
for n in notifications:
log.debug("n = " +str(n))
def test_update_user_notification(self):
user_identty_object = IonObject(RT.UserIdentity, name="user1")
user_id = self.imc.create_user_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['resource_lifecycle']})
notification_id = self.unsc.create_notification(notification_object, user_id)
notification = self.rrc.read(notification_id)
notification.origin_list = ['Some_Resource_Agent_ID5']
self.unsc.update_notification(notification)
def test_send_notification_emails(self):
user_identty_object = IonObject(RT.UserIdentity, name="user1")
user_id = self.imc.create_user_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['resource_lifecycle']})
self.unsc.create_notification(notification_object, user_id)
notification_object = IonObject(RT.NotificationRequest, {"name":"notification2",
"origin_list":['Some_Resource_Agent_ID2'],
"events_list":['data']})
self.unsc.create_notification(notification_object, user_id)
rle_publisher = ResourceLifecycleEventPublisher()
rle_publisher.create_and_publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event")
de_publisher = DataEventPublisher()
de_publisher.create_and_publish_event(origin='Some_Resource_Agent_ID2', description="DE test event")
gevent.sleep(1)
def test_find_events(self):
#.........这里部分代码省略.........
示例2: UserNotificationIntTest
# 需要导入模块: from interface.services.dm.iuser_notification_service import UserNotificationServiceClient [as 别名]
# 或者: from interface.services.dm.iuser_notification_service.UserNotificationServiceClient import find_events [as 别名]
#.........这里部分代码省略.........
self.fail("failed to find all notifications")
@unittest.skip('interface has changed!')
def test_update_user_notification(self):
# create user with email address in RR
user_identty_object = IonObject(RT.ActorIdentity, name="user1")
user_id = self.imc.create_actor_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
# create a notification
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['ResourceLifecycleEvent']})
notification_id = self.unsc.create_notification(notification_object, user_id)
# read back the notification and change it
notification = self.unsc.read_notification(notification_id)
notification.origin_list = ['Some_Resource_Agent_ID5']
self.unsc.update_notification(notification)
# read back the notification and check that it got changed
notification = self.unsc.read_notification(notification_id)
if notification.origin_list != ['Some_Resource_Agent_ID5']:
self.fail("failed to change notification")
@unittest.skip('interface has changed!')
def test_send_notification_emails(self):
# create user with email address in RR
user_identty_object = IonObject(RT.ActorIdentity, name="user1")
user_id = self.imc.create_actor_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
# create first notification
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['ResourceLifecycleEvent']})
self.unsc.create_notification(notification_object, user_id)
# create second notification
notification_object = IonObject(RT.NotificationRequest, {"name":"notification2",
"origin_list":['Some_Resource_Agent_ID2'],
"events_list":['DataEvent']})
self.unsc.create_notification(notification_object, user_id)
# publish an event for each notification to generate the emails
# this can't be easily check in SW so need to check for these at the [email protected] account
rle_publisher = EventPublisher("ResourceLifecycleEvent")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event")
de_publisher = EventPublisher("DataEvent")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event")
gevent.sleep(1)
@unittest.skip('interface has changed!')
def test_find_events(self):
# publish some events for the event repository
rle_publisher = EventPublisher("ResourceLifecycleEvent")
de_publisher = EventPublisher("DataEvent")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event1")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event2")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event3")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event1")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event2")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event3")
# find all events for the originator 'Some_Resource_Agent_ID1'
events = self.unsc.find_events(origin='Some_Resource_Agent_ID1')
if len(events) != 3:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'Some_Resource_Agent_ID1':
self.fail("failed to find correct events")
# find all events for the originator 'DataEvent'
events = self.unsc.find_events(type='DataEvent')
if len(events) != 3:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'DataEvent':
self.fail("failed to find correct events")
# find 2 events for the originator 'Some_Resource_Agent_ID1'
events = self.unsc.find_events(origin='Some_Resource_Agent_ID2', limit=2)
if len(events) != 2:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'Some_Resource_Agent_ID2':
self.fail("failed to find correct events")
# find all events for the originator 'Some_Resource_Agent_ID1' in reverse time order
events = self.unsc.find_events(origin='Some_Resource_Agent_ID1', descending=True)
if len(events) != 3:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'Some_Resource_Agent_ID1':
self.fail("failed to find correct events")
示例3: UserNotificationIntTest
# 需要导入模块: from interface.services.dm.iuser_notification_service import UserNotificationServiceClient [as 别名]
# 或者: from interface.services.dm.iuser_notification_service.UserNotificationServiceClient import find_events [as 别名]
#.........这里部分代码省略.........
# try to find all notifications for user
notifications = self.unsc.find_notifications_by_user(user_id)
if len(notifications) != 2:
self.fail("failed to find all notifications")
def test_update_user_notification(self):
# create user with email address in RR
user_identty_object = IonObject(RT.ActorIdentity, name="user1")
user_id = self.imc.create_actor_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
# create a notification
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['ResourceLifecycleEvent']})
notification_id = self.unsc.create_notification(notification_object, user_id)
# read back the notification and change it
notification = self.unsc.read_notification(notification_id)
notification.origin_list = ['Some_Resource_Agent_ID5']
self.unsc.update_notification(notification)
# read back the notification and check that it got changed
notification = self.unsc.read_notification(notification_id)
if notification.origin_list != ['Some_Resource_Agent_ID5']:
self.fail("failed to change notification")
def test_send_notification_emails(self):
# create user with email address in RR
user_identty_object = IonObject(RT.ActorIdentity, name="user1")
user_id = self.imc.create_actor_identity(user_identty_object)
user_info_object = IonObject(RT.UserInfo, {"name":"user1_info", "contact":{"email":'[email protected]'}})
self.imc.create_user_info(user_id, user_info_object)
# create first notification
notification_object = IonObject(RT.NotificationRequest, {"name":"notification1",
"origin_list":['Some_Resource_Agent_ID1'],
"events_list":['ResourceLifecycleEvent']})
self.unsc.create_notification(notification_object, user_id)
# create second notification
notification_object = IonObject(RT.NotificationRequest, {"name":"notification2",
"origin_list":['Some_Resource_Agent_ID2'],
"events_list":['DataEvent']})
self.unsc.create_notification(notification_object, user_id)
# publish an event for each notification to generate the emails
# this can't be easily check in SW so need to check for these at the [email protected] account
rle_publisher = EventPublisher("ResourceLifecycleEvent")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event")
de_publisher = EventPublisher("DataEvent")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event")
gevent.sleep(1)
def test_find_events(self):
# publish some events for the event repository
rle_publisher = EventPublisher("ResourceLifecycleEvent")
de_publisher = EventPublisher("DataEvent")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event1")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event2")
rle_publisher.publish_event(origin='Some_Resource_Agent_ID1', description="RLE test event3")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event1")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event2")
de_publisher.publish_event(origin='Some_Resource_Agent_ID2', description="DE test event3")
# find all events for the originator 'Some_Resource_Agent_ID1'
events = self.unsc.find_events(origin='Some_Resource_Agent_ID1')
if len(events) != 3:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'Some_Resource_Agent_ID1':
self.fail("failed to find correct events")
# find all events for the originator 'DataEvent'
events = self.unsc.find_events(type='DataEvent')
if len(events) != 3:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'DataEvent':
self.fail("failed to find correct events")
# find 2 events for the originator 'Some_Resource_Agent_ID1'
events = self.unsc.find_events(origin='Some_Resource_Agent_ID2', limit=2)
if len(events) != 2:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'Some_Resource_Agent_ID2':
self.fail("failed to find correct events")
# find all events for the originator 'Some_Resource_Agent_ID1' in reverse time order
events = self.unsc.find_events(origin='Some_Resource_Agent_ID1', descending=True)
if len(events) != 3:
self.fail("failed to find all events")
for event in events:
log.debug("event=" + str(event))
if event[1][0] != 'Some_Resource_Agent_ID1':
self.fail("failed to find correct events")