def test_campaign_load(): responses.add(responses.GET, with_resource('/' + API_VERSION + '/accounts/2iqph'), body=with_fixture('accounts_load'), content_type='application/json') responses.add(responses.GET, with_resource('/' + API_VERSION + '/accounts/2iqph/campaigns/2wap7'), body=with_fixture('campaigns_load'), content_type='application/json') client = Client(characters(40), characters(40), characters(40), characters(40)) account = Account.load(client, '2iqph') campaign = Campaign.load(account, '2wap7') assert campaign.id == '2wap7' assert campaign.entity_status == 'ACTIVE'
def test_rate_limit_resource_class_access(): responses.add(responses.GET, with_resource('/' + API_VERSION + '/accounts/2iqph'), body=with_fixture('accounts_load'), content_type='application/json') responses.add(responses.GET, with_resource('/' + API_VERSION + '/accounts/2iqph/campaigns/2wap7'), body=with_fixture('campaigns_load'), content_type='application/json', headers={ 'x-account-rate-limit-limit': '10000', 'x-account-rate-limit-remaining': '9999', 'x-account-rate-limit-reset': '1546300800' }) client = Client(characters(40), characters(40), characters(40), characters(40)) account = Account.load(client, '2iqph') campaign = Campaign.load(account, '2wap7') resource = '/' + API_VERSION + '/accounts/2iqph/campaigns/2wap7' params = {} response = Request(client, 'get', resource, params=params).perform() # from_response() is a staticmethod, so passing campaign instance as dummy. # We can later change this test case to not call this manually # once we changed existing classes to pass the header argument. data = campaign.from_response(response.body['data'], response.headers) assert data is not None assert isinstance(data, Resource) assert data.id == '2wap7' assert data.entity_status == 'ACTIVE' assert data.account_rate_limit_limit == '10000' assert data.account_rate_limit_remaining == '9999' assert data.account_rate_limit_reset == '1546300800'
def test_campaign_load(): responses.add(responses.GET, with_resource('/' + API_VERSION + '/accounts/2iqph'), body=with_fixture('accounts_load'), content_type='application/json') responses.add(responses.GET, with_resource('/' + API_VERSION + '/accounts/2iqph/campaigns/2wap7'), body=with_fixture('campaigns_load'), content_type='application/json') client = Client( characters(40), characters(40), characters(40), characters(40) ) account = Account.load(client, '2iqph') campaign = Campaign.load(account, '2wap7') assert campaign.id == '2wap7' assert campaign.entity_status == 'ACTIVE'