Ejemplo n.º 1
0
 def test_get_products_from_response(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     self.assertTrue(len(products) == 3)
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     p2 = papi2.get_products_from_response()
     self.assertTrue(len(p2) == 1)
Ejemplo n.º 2
0
 def test_get_products_from_response(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     self.assertTrue(len(products) == 3)
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     p2 = papi2.get_products_from_response()
     self.assertTrue(len(p2) == 1)
Ejemplo n.º 3
0
 def test_products(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     papi.make_products()
     ps = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(ps[0])
     products = papi.products
     lp = products["B00KUP84L2"].lowest_price
     self.assertEqual(lp, 17.99)
Ejemplo n.º 4
0
 def test_get_seller_from_listing(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     offerings1 = papi.get_offerings_from_product(products[1])
     offerings2 = papi.get_offerings_from_product(products[2])
     self.assertEqual(papi.get_seller_from_listing(offerings0[0]), "Amazon")
     self.assertEqual(papi.get_seller_from_listing(offerings0[1]), "Merchant")
     offerings0[0]["Qualifiers"]["FulfillmentChannel"] = {}
     # catch KeyError
     self.assertEqual(papi.get_seller_from_listing(offerings0[0]), None)
     # Test response as a dict
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     products = papi2.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     seller = papi2.get_seller_from_listing(offerings0[0])
     self.assertEqual(seller, "Amazon")
Ejemplo n.º 5
0
 def test_get_asin_from_product(self):
     # Test response as a list
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     asin0 = papi.get_asin_from_product(products[0])
     asin1 = papi.get_asin_from_product(products[1])
     asin2 = papi.get_asin_from_product(products[2])
     self.assertEqual(asin0, "B00KUP84L2")
     self.assertEqual(asin1, "B00HEATHXK")
     self.assertEqual(asin2, "B00KURKYTK")
     # IndexError and KeyError should raise KeyError
     self.assertRaises(KeyError, papi.get_asin_from_product, {})
     # Test response as a dict
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     products = papi2.get_products_from_response()
     asin = papi2.get_asin_from_product(products[0])
     self.assertEqual(asin, "B00M2ALI02")
Ejemplo n.º 6
0
 def test_products(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     papi.make_products()
     ps = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(ps[0])
     products = papi.products
     lp = products['B00KUP84L2'].lowest_price
     self.assertEqual(lp, 17.99)
Ejemplo n.º 7
0
 def test_get_asin_from_product(self):
     # Test response as a list
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     asin0 = papi.get_asin_from_product(products[0])
     asin1 = papi.get_asin_from_product(products[1])
     asin2 = papi.get_asin_from_product(products[2])
     self.assertEqual(asin0, 'B00KUP84L2')
     self.assertEqual(asin1, 'B00HEATHXK')
     self.assertEqual(asin2, 'B00KURKYTK')
     # IndexError and KeyError should raise KeyError
     self.assertRaises(KeyError, papi.get_asin_from_product, {})
     # Test response as a dict
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     products = papi2.get_products_from_response()
     asin = papi2.get_asin_from_product(products[0])
     self.assertEqual(asin, 'B00M2ALI02')
Ejemplo n.º 8
0
 def test_get_seller_from_listing(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     offerings1 = papi.get_offerings_from_product(products[1])
     offerings2 = papi.get_offerings_from_product(products[2])
     self.assertEqual(papi.get_seller_from_listing(offerings0[0]), 'Amazon')
     self.assertEqual(papi.get_seller_from_listing(offerings0[1]),
                      'Merchant')
     offerings0[0]['Qualifiers']['FulfillmentChannel'] = {}
     # catch KeyError
     self.assertEqual(papi.get_seller_from_listing(offerings0[0]), None)
     # Test response as a dict
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     products = papi2.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     seller = papi2.get_seller_from_listing(offerings0[0])
     self.assertEqual(seller, 'Amazon')
Ejemplo n.º 9
0
 def test_get_price_from_listing(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     offerings1 = papi.get_offerings_from_product(products[1])
     offerings2 = papi.get_offerings_from_product(products[2])
     self.assertEqual(papi.get_price_from_listing(offerings0[0]), 17.99)
     self.assertEqual(papi.get_price_from_listing(offerings0[1]), 21.39)
     offerings0[0]["Price"]["LandedPrice"]["Amount"]["value"] = "$17.99"
     # catch ValueError
     self.assertEqual(papi.get_price_from_listing(offerings0[0]), "$17.99")
     # catch KeyError
     offerings0[0]["Price"] = {}
     self.assertEqual(papi.get_price_from_listing(offerings0[0]), None)
     # Test response as a dict
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     products = papi2.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     price = papi2.get_price_from_listing(offerings0[0])
     self.assertEqual(price, 15.99)
Ejemplo n.º 10
0
 def test_get_price_from_listing(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     offerings1 = papi.get_offerings_from_product(products[1])
     offerings2 = papi.get_offerings_from_product(products[2])
     self.assertEqual(papi.get_price_from_listing(offerings0[0]), 17.99)
     self.assertEqual(papi.get_price_from_listing(offerings0[1]), 21.39)
     offerings0[0]['Price']['LandedPrice']['Amount']['value'] = '$17.99'
     # catch ValueError
     self.assertEqual(papi.get_price_from_listing(offerings0[0]), '$17.99')
     # catch KeyError
     offerings0[0]['Price'] = {}
     self.assertEqual(papi.get_price_from_listing(offerings0[0]), None)
     # Test response as a dict
     papi2 = PAPI(deepcopy(TEST_RESPONSE_SM))
     products = papi2.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     price = papi2.get_price_from_listing(offerings0[0])
     self.assertEqual(price, 15.99)
Ejemplo n.º 11
0
 def test_get_offerings_from_product(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     offerings1 = papi.get_offerings_from_product(products[1])
     offerings2 = papi.get_offerings_from_product(products[2])
     self.assertEqual(len(offerings0), 3)
     self.assertEqual(len(offerings1), 4)
     self.assertEqual(len(offerings2), 1)
     self.assertEqual(offerings0[0]["Price"]["LandedPrice"]["Amount"]["value"], "17.99")
     # test raise KeyError
     self.assertRaises(KeyError, papi.get_offerings_from_product, {})
Ejemplo n.º 12
0
 def test_get_offerings_from_product(self):
     papi = PAPI(deepcopy(TEST_RESPONSE))
     products = papi.get_products_from_response()
     offerings0 = papi.get_offerings_from_product(products[0])
     offerings1 = papi.get_offerings_from_product(products[1])
     offerings2 = papi.get_offerings_from_product(products[2])
     self.assertEqual(len(offerings0), 3)
     self.assertEqual(len(offerings1), 4)
     self.assertEqual(len(offerings2), 1)
     self.assertEqual(
         offerings0[0]['Price']['LandedPrice']['Amount']['value'], '17.99')
     # test raise KeyError
     self.assertRaises(KeyError, papi.get_offerings_from_product, {})