def test_buy_contains_all_event_information(self):
     self.assertTrue(utils.verify_json_contains_events(
         filtered_response[4]),
                     msg="buy event is missing this campaign information")
 def test_offer_open_contains_all_event_information(self):
     self.assertTrue(
         utils.verify_json_contains_events(filtered_response[0]),
         msg="offer open event is missing this campaign information")
 def test_cart_add_2_contains_all_event_information(self):
     self.assertTrue(
         utils.verify_json_contains_events(filtered_response[8]),
         msg="cart add event is missing this campaign information")
 def test_campaign_information_is_present_in_all_requests(self):
     for line in filtered_response:
         self.assertTrue(utils.verify_json_contains_events(line),
                         msg="campaign information is missing")
 def test_browse_cbtt_contains_all_event_information(self):
     self.assertTrue(
         utils.verify_json_contains_events(filtered_response[3]),
         msg="browse with cbtt event is missing this campaign information")