Ejemplo n.º 1
0
 def test_irisV2_campaignSettings_create_withoutMessageSetting(
         self, settingInfo, popField):
     create = CampaignSetting.settings(self, settingInfo, popField)
     CampaignSetting.assertResponse(create['RESPONSE'], 200)
     campaign_calls.getUserId()
     CampaignSettingDBAssertion(create['PAYLOAD']).check()
Ejemplo n.º 2
0
    def test_irisV2_campaignSettings_Sanity_create(self, settingInfo):

        create = CampaignSetting.settings(self, settingInfo)
        CampaignSetting.assertResponse(create['RESPONSE'], 200)
        CampaignSettingDBAssertion(create['PAYLOAD']).check()
Ejemplo n.º 3
0
    def test_irisV2_campaignSettings_create_withoutalertSettings(
            self, settingInfo, popField):
        create = CampaignSetting.settings(self, settingInfo, popField)
        CampaignSetting.assertResponse(create['RESPONSE'], 200)

        CampaignSettingDBAssertion(create['PAYLOAD']).check()
Ejemplo n.º 4
0
 def est_irisV2_campaignSettings_create_withEmailChannel(self, settingInfo):
     create = CampaignSetting.settings(self, settingInfo)
     CampaignSetting.assertResponse(create['RESPONSE'], 200)
     campaign_calls.getUserId()
     CampaignSettingDBAssertion(create['PAYLOAD']).check()
Ejemplo n.º 5
0
 def test_irisV2_updateCampaignSettings_multipleChannel(self, updateInfo):
     update = CampaignSetting.updateSettings(self, updateInfo)
     CampaignSetting.assertResponse(update['RESPONSE'], 200)
     CampaignSettingDBAssertion(update['PAYLOAD']).check()