Beispiel #1
0
class ProspectsClientTest(unittest2.TestCase):
    """ Unit tests for the HubSpot Prospects API Python client.

    This file contains some unittest tests for the Prospects API.

    It is not intended to be exhaustive, just simple exercises and
    illustrations, at this point.

    Additional tests and other improvements welcome.

    Questions, comments, etc: http://docs.hubapi.com/wiki/Discussion_Group
    """
    def setUp(self):
        self.client = ProspectsClient(**helper.get_options())

    def tearDown(self):
        pass

    @attr('api')
    def test_get_prospects(self):
        # List the prospects for our Hub ID.

        prospects = self.client.get_prospects()
        self.assertTrue(len(prospects))
        print "Got some prospects: %s" % json.dumps(prospects)

    @attr('api')
    def test_get_limited_prospects(self):
        # Get a specific number of prospects
        limit = 10

        # Loop through and make sure that we always get the number of prospects
        # we request. To eliminate flukes, let's loop through and make sure there
        # is always bread in the oven.
        while limit > 1:
            prospects = self.client.get_prospects(limit=limit)

            if prospects['has-more'] is True:
                self.assertTrue(len(prospects['prospects']) == limit)

            limit -= 1

        print "Always got the right number of prospects: %s" % json.dumps(
            prospects)

    @attr('api')
    def test_get_company(self):
        # Looks up a specific company.
        company = self.client.get_company('')

        # The company may or may not be a prospect.
        # self.assertTrue(len(company))
        print "Got the company timeline: %s" % json.dumps(company)

    @attr('api')
    def test_search_country(self):
        # Looks up prospects from a specific country.
        search_results = self.client.search_prospects('country', 'Czech')

        # There may or may not be recent prospects from this country.
        # self.assertTrue(len(search_results))
        print "Got some country search results: %s" % json.dumps(
            search_results)

    @attr('api')
    def test_search_region(self):
        # Looks up prospects from a specific region, e.g. US state.
        search_results = self.client.search_prospects('region',
                                                      'Massachusetts')

        # There may or may not be recent prospects from this region.
        # self.assertTrue(len(search_results))
        print "Got some region search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_search_city(self):
        # Looks up prospects from a given city, e.g. Boston.
        search_results = self.client.search_prospects('city', 'Boston')

        # There may or may not be recent prospects from this city.
        # self.assertTrue(len(search_results))
        print "Got some city search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_get_hidden_prospects(self):
        # Lists the prospects that have been "hidden" in this account, if any.
        hidden_prospects = self.client.get_hidden_prospects()

        # This account may or may not have hidden prospects.
        # self.assertTrue(len(hidden_prospects))
        print "Got %d hidden prospects: %s" % (len(hidden_prospects),
                                               json.dumps(hidden_prospects))

    @attr('api')
    def test_hide_prospect(self):
        # gets one prospect
        result = self.client.get_prospects(None, None, 1)

        # checks if it got one
        self.assertTrue(len(result['prospects']) == 1)

        # gets just the prospect. result is a list of one prospect
        prospect = result['prospects'][0]

        # gets that prospect's slug. This is because hide_prospect wants what organization to hide
        # Doesn't use 'organization' because there could be spaces and other junk in there
        prospect_slug = prospect['slug']

        # Tries to hide the prospect.
        self.client.hide_prospect(prospect_slug)

    @attr('api')
    def test_unhide_prospect(self):
        # Tries to un-hide a hidden prospect.
        # This test is unusual, and kind of weak, unfortunately, because we can't
        # predict what prospects will be hidden already on this shared demo account.
        # This API returns a 40x response if no matching hidden prospect is found,
        # so we need to catch that error, and we can't assert against it. ;(
        data = None
        try:
            data = self.client.unhide_prospect('')
        except HapiError:
            print "No matching prospect found to un-hide.  This is alright."

        # If there's no matching hidden prospect, can't un-hide it.
        # self.assertTrue(len(response))
        if data:
            print "Tried to un-hide a prospect: %s" % json.dumps(data)
Beispiel #2
0
 def setUp(self):
     self.client = ProspectsClient(**helper.get_options())
Beispiel #3
0
class ProspectsClientTest(unittest2.TestCase):
    """ Unit tests for the HubSpot Prospects API Python client.

    This file contains some unittest tests for the Prospects API.

    It is not intended to be exhaustive, just simple exercises and
    illustrations, at this point.

    Additional tests and other improvements welcome.

    Questions, comments, etc: http://docs.hubapi.com/wiki/Discussion_Group
    """
    
    def setUp(self):
        self.client = ProspectsClient(**helper.get_options())
    
    def tearDown(self):
        pass
        
    @attr('api')
    def test_get_prospects(self):
        # List the prospects for our Hub ID.
        
        prospects = self.client.get_prospects()
        self.assertTrue(len(prospects))
        print "Got some prospects: %s" % json.dumps(prospects)

    @attr('api')
    def test_get_limited_prospects(self):
        # Get a specific number of prospects
        limit = 10

        # Loop through and make sure that we always get the number of prospects
        # we request. To eliminate flukes, let's loop through and make sure there
        # is always bread in the oven.
        while limit > 1:
            prospects = self.client.get_prospects(limit=limit)

            if prospects['has-more'] is True:
                self.assertTrue(len(prospects['prospects']) == limit)

            limit -= 1

        print "Always got the right number of prospects: %s" % json.dumps(prospects)

    @attr('api')
    def test_get_company(self):
        # Looks up a specific company.
        company = self.client.get_company('')

        # The company may or may not be a prospect.
        # self.assertTrue(len(company))
        print "Got the company timeline: %s" % json.dumps(company)

    @attr('api')
    def test_search_country(self):
        # Looks up prospects from a specific country.
        search_results = self.client.search_prospects('country', 'Czech')

        # There may or may not be recent prospects from this country.
        # self.assertTrue(len(search_results))
        print "Got some country search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_search_region(self):
        # Looks up prospects from a specific region, e.g. US state.
        search_results = self.client.search_prospects('region', 'Massachusetts')

        # There may or may not be recent prospects from this region.
        # self.assertTrue(len(search_results))
        print "Got some region search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_search_city(self):
        # Looks up prospects from a given city, e.g. Boston.
        search_results = self.client.search_prospects('city', 'Boston')

        # There may or may not be recent prospects from this city.
        # self.assertTrue(len(search_results))
        print "Got some city search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_get_hidden_prospects(self):
        # Lists the prospects that have been "hidden" in this account, if any.
        hidden_prospects = self.client.get_hidden_prospects()
        
        # This account may or may not have hidden prospects.
        # self.assertTrue(len(hidden_prospects))
        print "Got %d hidden prospects: %s" % (len(hidden_prospects), json.dumps(hidden_prospects))

    @attr('api')
    def test_hide_prospect(self):
       # gets one prospect
       result = self.client.get_prospects(None, None, 1)
       
       # checks if it got one
       self.assertTrue(len(result['prospects']) == 1)
       
       # gets just the prospect. result is a list of one prospect
       prospect = result['prospects'][0]
       
       # gets that prospect's slug. This is because hide_prospect wants what organization to hide
       # Doesn't use 'organization' because there could be spaces and other junk in there
       prospect_slug = prospect['slug']
       
       # Tries to hide the prospect.
       self.client.hide_prospect(prospect_slug)

    @attr('api')
    def test_unhide_prospect(self):
        # Tries to un-hide a hidden prospect.
        # This test is unusual, and kind of weak, unfortunately, because we can't
        # predict what prospects will be hidden already on this shared demo account.
        # This API returns a 40x response if no matching hidden prospect is found,
        # so we need to catch that error, and we can't assert against it. ;(
        data = None
        try:
            data = self.client.unhide_prospect('')
        except HapiError:
            print "No matching prospect found to un-hide.  This is alright."
            
        # If there's no matching hidden prospect, can't un-hide it.
        # self.assertTrue(len(response))
        if data:
            print "Tried to un-hide a prospect: %s" % json.dumps(data)
Beispiel #4
0
 def setUp(self):
     self.client = ProspectsClient(**helper.get_options())
class ProspectsClientTest(unittest2.TestCase):
    """ Unit tests for the HubSpot Prospects API Python client.

    This file contains some unittest tests for the Prospects API.

    It is not intended to be exhaustive, just simple exercises and
    illustrations, at this point.

    Additional tests and other improvements welcome.

    Questions, comments, etc: http://docs.hubapi.com/wiki/Discussion_Group
    """
    
    def setUp(self):
        self.client = ProspectsClient(**helper.get_options())
    
    def tearDown(self):
        pass
        
    @attr('api')
    def test_get_prospects(self):
        # List the prospects for our Hub ID.
        
        prospects = self.client.get_prospects()
        self.assertTrue(len(prospects))
        print "Got some prospects: %s" % json.dumps(prospects)
 
    @attr('api')
    def test_get_company(self):
        # Looks up a specific company.
        company = self.client.get_company('')

        # The company may or may not be a prospect.
        # self.assertTrue(len(company))
        print "Got the company timeline: %s" % json.dumps(company)

    @attr('api')
    def test_search_country(self):
        # Looks up prospects from a specific country.
        search_results = self.client.search_prospects('country', 'Czech')

        # There may or may not be recent prospects from this country.
        # self.assertTrue(len(search_results))
        print "Got some country search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_search_region(self):
        # Looks up prospects from a specific region, e.g. US state.
        search_results = self.client.search_prospects('region', 'Massachusetts')

        # There may or may not be recent prospects from this region.
        # self.assertTrue(len(search_results))
        print "Got some region search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_search_city(self):
        # Looks up prospects from a given city, e.g. Boston.
        search_results = self.client.search_prospects('city', 'Boston')

        # There may or may not be recent prospects from this city.
        # self.assertTrue(len(search_results))
        print "Got some city search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_get_hidden_prospects(self):
        # Lists the prospects that have been "hidden" in this account, if any.
        hidden_prospects = self.client.get_hidden_prospects()
        
        # This account may or may not have hidden prospects.
        # self.assertTrue(len(hidden_prospects))
        print "Got %d hidden prospects: %s" % (len(hidden_prospects), json.dumps(hidden_prospects))

    @attr('api')
    def test_hide_prospect(self):
        # Tries to hide a prospect.
        data = self.client.hide_prospect('hubspot')

        # If there's no matching prospect, can't hide it, so this might return false.
        # self.assertTrue(len(response))
        print "Tried to hide a prospect: %s" % json.dumps(data)

    @attr('api')
    def test_unhide_prospect(self):
        # Tries to un-hide a hidden prospect.
        data = self.client.unhide_prospect('hubspot')

        # If there's no matching hidden prospect, can't un-hide it.
        # self.assertTrue(len(response))
        print "Tried to un-hide a prospect: %s" % json.dumps(data)
Beispiel #6
0
class ProspectsClientTest(unittest2.TestCase):
    """ Unit tests for the HubSpot Prospects API Python client.

    This file contains some unittest tests for the Prospects API.

    It is not intended to be exhaustive, just simple exercises and
    illustrations, at this point.

    Additional tests and other improvements welcome.

    Questions, comments, etc: http://docs.hubapi.com/wiki/Discussion_Group
    """
    def setUp(self):
        self.client = ProspectsClient(**helper.get_options())

    def tearDown(self):
        pass

    @attr('api')
    def test_get_prospects(self):
        # List the prospects for our Hub ID.

        prospects = self.client.get_prospects()
        self.assertTrue(len(prospects))
        print "Got some prospects: %s" % json.dumps(prospects)

    @attr('api')
    def test_get_company(self):
        # Looks up a specific company.
        company = self.client.get_company('')

        # The company may or may not be a prospect.
        # self.assertTrue(len(company))
        print "Got the company timeline: %s" % json.dumps(company)

    @attr('api')
    def test_search_country(self):
        # Looks up prospects from a specific country.
        search_results = self.client.search_prospects('country', 'Czech')

        # There may or may not be recent prospects from this country.
        # self.assertTrue(len(search_results))
        print "Got some country search results: %s" % json.dumps(
            search_results)

    @attr('api')
    def test_search_region(self):
        # Looks up prospects from a specific region, e.g. US state.
        search_results = self.client.search_prospects('region',
                                                      'Massachusetts')

        # There may or may not be recent prospects from this region.
        # self.assertTrue(len(search_results))
        print "Got some region search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_search_city(self):
        # Looks up prospects from a given city, e.g. Boston.
        search_results = self.client.search_prospects('city', 'Boston')

        # There may or may not be recent prospects from this city.
        # self.assertTrue(len(search_results))
        print "Got some city search results: %s" % json.dumps(search_results)

    @attr('api')
    def test_get_hidden_prospects(self):
        # Lists the prospects that have been "hidden" in this account, if any.
        hidden_prospects = self.client.get_hidden_prospects()

        # This account may or may not have hidden prospects.
        # self.assertTrue(len(hidden_prospects))
        print "Got %d hidden prospects: %s" % (len(hidden_prospects),
                                               json.dumps(hidden_prospects))

    @attr('api')
    def test_hide_prospect(self):
        # Tries to hide a prospect.
        data = self.client.hide_prospect('hubspot')

        # If there's no matching prospect, can't hide it, so this might return false.
        # self.assertTrue(len(response))
        print "Tried to hide a prospect: %s" % json.dumps(data)

    @attr('api')
    def test_unhide_prospect(self):
        # Tries to un-hide a hidden prospect.
        # This test is unusual, and kind of weak, unfortunately, because we can't
        # predict what prospects will be hidden already on this shared demo account.
        # This API returns a 40x response if no matching hidden prospect is found,
        # so we need to catch that error, and we can't assert against it. ;(
        data = None
        try:
            data = self.client.unhide_prospect('')
        except HapiError:
            print "No matching prospect found to un-hide.  This is alright."

        # If there's no matching hidden prospect, can't un-hide it.
        # self.assertTrue(len(response))
        if data:
            print "Tried to un-hide a prospect: %s" % json.dumps(data)