def test_multiple_device_types(self):
     cas = ua.CreateAndSendPush(
         self.airship,
         channels=self.test_sms_objs
     )
     with self.assertRaises(ValueError):
         cas.device_types = ua.device_types('sms', 'ios')
    def test_large_list(self):
        big_list = [x for x in range(1001)]

        with self.assertRaises(ValueError):
            ua.CreateAndSendPush(
                airship=self.airship,
                channels=big_list
            )
    def test_non_list_channels(self):
        fail_tuple = (x for x in range(5))

        with self.assertRaises(TypeError):
            ua.CreateAndSendPush(
                airship=self.airship,
                channels=fail_tuple
            )
 def test_email_send(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_email_objs
     )
     cas.notification = ua.notification(
         email=ua.email(
             message_type='commercial',
             plaintext_body='this is an email',
             reply_to='*****@*****.**',
             sender_address='*****@*****.**',
             sender_name='test sender',
             subject='this is an email'
         )
     )
     cas.device_types = ua.device_types('email')
     cas.campaigns = ua.campaigns(
         categories=['email', 'fun']
     )
     self.assertEqual(
         cas.payload,
         {
             'audience': {
                 'create_and_send': [
                     {
                         'ua_address': '*****@*****.**',
                         'ua_commercial_opted_in': '2018-02-13T11:58:59'
                     },
                     {
                         'ua_address': '*****@*****.**',
                         'ua_commercial_opted_in': '2018-02-13T11:58:59'
                     },
                     {
                         'ua_address': '*****@*****.**',
                         'ua_commercial_opted_in': '2018-02-13T11:58:59'
                     }
                 ]
             },
             'device_types': ['email'],
             'notification': {
                 'email': {
                     'subject': 'this is an email',
                     'plaintext_body': 'this is an email',
                     'message_type': 'commercial',
                     'sender_name': 'test sender',
                     'sender_address': '*****@*****.**',
                     'reply_to': '*****@*****.**'
                 }
             },
             'campaigns': {
                 'categories': ['email', 'fun']
             }
         }
     )
 def test_scheduled_send(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_sms_objs
     )
     cas.notification = ua.notification(
         alert='test sms'
     )
     cas.device_types = ua.device_types('sms')
     cas.campaigns = ua.campaigns(
         categories=['sms', 'offers']
     )
     schedule = ua.ScheduledPush(airship=self.airship)
     schedule.name = 'test schedule name'
     schedule.push = cas
     schedule.schedule = ua.scheduled_time(
         datetime.datetime(2025, 10, 8, 12, 15)
         )
     self.assertEqual(
         schedule.payload,
         {
             'schedule': {
                 'scheduled_time': '2025-10-08T12:15:00'
             },
             'name': 'test schedule name',
             'push': {
                 'audience': {
                     'create_and_send': [
                         {
                             'ua_msisdn': '15035556789',
                             'ua_sender': '12345',
                             'ua_opted_in': '2018-02-13T11:58:59'
                         },
                         {
                             'ua_msisdn': '15035556788',
                             'ua_sender': '12345',
                             'ua_opted_in': '2018-02-13T11:58:59'
                         },
                         {
                             'ua_msisdn': '15035556787',
                             'ua_sender': '12345',
                             'ua_opted_in': '2018-02-13T11:58:59'
                         },
                     ]
                 },
                 'notification': {'alert': 'test sms'},
                 'device_types': ['sms'],
                 'campaigns': {
                     'categories': ['sms', 'offers']
                 }
             }
         }
     )
 def test_sms_inline_template(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_sms_objs
     )
     cas.notification = ua.notification(sms=ua.sms(
         template_alert=self.template_alert
     ))
     cas.device_types = ua.device_types('sms')
     self.assertEqual(
         cas.payload,
         {
             'audience': {
                 'create_and_send': [
                     {
                         'ua_msisdn': '15035556789',
                         'ua_sender': '12345',
                         'ua_opted_in': '2018-02-13T11:58:59',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                     {
                         'ua_msisdn': '15035556788',
                         'ua_sender': '12345',
                         'ua_opted_in': '2018-02-13T11:58:59',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                     {
                         'ua_msisdn': '15035556787',
                         'ua_sender': '12345',
                         'ua_opted_in': '2018-02-13T11:58:59',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                 ]
             },
             'notification': {
                 'sms': {
                     'template': {
                         'fields': {
                             'alert': '{{name}} you are late for your {{event}}'
                         }
                     }
                 }
             },
             'device_types': ['sms']
         }
     )
    def test_mixed_platforms(self):
        email_channel = ua.Email(
            self.airship,
            address='*****@*****.**',
            commercial_opted_in=self.test_optin_datestring)
        mixed_channels = self.test_sms_objs
        mixed_channels.append(email_channel)

        cas = ua.CreateAndSendPush(
            self.airship,
            channels=mixed_channels
        )
        cas.device_types = ua.device_types('sms')
        cas.notification = ua.notification(alert='test sms')

        with self.assertRaises(TypeError):
            cas.payload
    def test_sms_without_optin(self):
        no_opt_in_sms = ua.Sms(
            airship=self.airship,
            sender=self.test_sms_sender,
            msisdn=self.test_sms_msisdns[0]
        )
        channels = self.test_sms_objs
        channels.append(no_opt_in_sms)

        cas = ua.CreateAndSendPush(
            self.airship,
            channels=channels
        )
        cas.device_types = ua.device_types('sms')
        cas.notification = ua.notification(alert='test sms')

        with self.assertRaises(ValueError):
            cas.payload
 def test_open_inline_template(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_open_channel_objs
     )
     cas.notification = ua.notification(open_platform={'foo': ua.open_platform(
         template_alert=self.template_alert
     )})
     cas.device_types = ua.device_types('open::foo')
     self.assertEqual(
         cas.payload,
         {
             'audience': {
                 'create_and_send': [
                     {
                         'ua_address': 'bfecbb67-5352-4582-a95d-24e4760a3907',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                     {
                         'ua_address': 'bfecbb67-5352-4582-a95d-24e4760a3908',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                     {
                         'ua_address': 'bfecbb67-5352-4582-a95d-24e4760a3909',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     }
                 ]
             },
             'notification': {
                 'open::foo': {
                     'template': {
                         'fields': {
                             'alert': '{{name}} you are late for your {{event}}'
                         }
                     }
                 }
             },
             'device_types': ['open::foo']
         }
     )
Ejemplo n.º 10
0
 def test_sms_send(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_sms_objs
     )
     cas.notification = ua.notification(
         alert='test sms'
     )
     cas.device_types = ua.device_types('sms')
     cas.campaigns = ua.campaigns(
         categories=['sms', 'offers']
     )
     self.assertEqual(
         cas.payload,
         {
             'audience': {
                 'create_and_send': [
                     {
                         'ua_msisdn': '15035556789',
                         'ua_sender': '12345',
                         'ua_opted_in': '2018-02-13T11:58:59'
                     },
                     {
                         'ua_msisdn': '15035556788',
                         'ua_sender': '12345',
                         'ua_opted_in': '2018-02-13T11:58:59'
                     },
                     {
                         'ua_msisdn': '15035556787',
                         'ua_sender': '12345',
                         'ua_opted_in': '2018-02-13T11:58:59'
                     },
                 ]
             },
             'notification': {'alert': 'test sms'},
             'device_types': ['sms'],
             'campaigns': {
                 'categories': ['sms', 'offers']
             }
         }
     )
Ejemplo n.º 11
0
 def test_open_channel_send(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_open_channel_objs,
     )
     cas.notification = ua.notification(
         alert='test open channel'
     )
     cas.device_types = ua.device_types('open::foo')
     cas.campaigns = ua.campaigns(
         categories=['foo', 'bar', 'baz']
     )
     self.assertEqual(
         cas.payload,
         {
             'audience': {
                 'create_and_send': [
                     {
                         'ua_address': 'bfecbb67-5352-4582-a95d-24e4760a3907'
                     },
                     {
                         'ua_address': 'bfecbb67-5352-4582-a95d-24e4760a3908'
                     },
                     {
                         'ua_address': 'bfecbb67-5352-4582-a95d-24e4760a3909'
                     }
                 ]
             },
             'device_types': ['open::foo'],
             'notification': {
                 'alert': 'test open channel'
             },
             'campaigns': {
                 'categories': ['foo', 'bar', 'baz']
             }
         }
     )
Ejemplo n.º 12
0
 def test_email_open_inline_template(self):
     cas = ua.CreateAndSendPush(
         airship=self.airship,
         channels=self.test_email_objs
     )
     cas.device_types = ua.device_types('email')
     cas.notification = ua.notification(
         email=ua.email(
             message_type='commercial',
             plaintext_body='{{name}} you are late for {{event}}',
             reply_to='*****@*****.**',
             sender_address='*****@*****.**',
             sender_name='test sender',
             subject='this is an email',
             variable_defaults=[
                 {
                     'key': 'name',
                     'default_value': 'hello'
                 },
                 {
                     'key': 'event',
                     'default_value': 'event'
                 }
             ]
         )
     )
     self.assertEqual(
         cas.payload,
         {
             'audience': {
                 'create_and_send': [
                     {
                         'ua_address': '*****@*****.**',
                         'ua_commercial_opted_in': '2018-02-13T11:58:59',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                     {
                         'ua_address': '*****@*****.**',
                         'ua_commercial_opted_in': '2018-02-13T11:58:59',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     },
                     {
                         'ua_address': '*****@*****.**',
                         'ua_commercial_opted_in': '2018-02-13T11:58:59',
                         'name': 'bruce',
                         'event': 'zoom meeting'
                     }
                 ]
             },
             'device_types': ['email'],
             'notification': {
                 'email': {
                     'message_type': 'commercial',
                     'sender_name': 'test sender',
                     'sender_address': '*****@*****.**',
                     'reply_to': '*****@*****.**',
                     'template': {
                         'variable_defaults': [
                             {
                                 'key': 'name',
                                 'default_value': 'hello'
                             },
                             {
                                 'key': 'event',
                                 'default_value': 'event'
                             }
                         ],
                         'fields': {
                             'subject': 'this is an email',
                             'plaintext_body': '{{name}} you are late for {{event}}'
                         }
                     }
                 }
             }
         }
     )