forked from roopeshvaddepally/python-ebay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_best_match.py
139 lines (115 loc) · 7.57 KB
/
test_best_match.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import unittest
from lxml import etree
from ebay.best_match import *
#<!-- Standard Input Fields -->
siteResultsPerPage = "1"
ignoreFeatured = "false"
itemFilter = [{"paramName": "PriceMin", "paramValue": "50", "name": "Currency", "value": "USD"}]
outputSelector = ["FirstPageSummary", "SellerInfo"]
postSearchItemFilter = ["id1", "id2"]
postSearchSellerFilter = ["user1", "user2"]
Siteresultsperpage = "10"
entriesPerPage = "10"
paginationInput = {"entriesPerPage": "5", "pageNumber": "10"}
#<!-- Call-specific Input Fields -->
categoryId = "1"
keywords = "ipod"
productId = "123"
sellerUserName = "user1"
class TestBestMatchApi(unittest.TestCase):
def test_keywords_findBestMatchItemDetailsAcrossStores(self):
result = findBestMatchItemDetailsAcrossStores(keywords=keywords,\
siteResultsPerPage=siteResultsPerPage,\
categoryId=None, entriesPerPage=entriesPerPage,\
ignoreFeatured=ignoreFeatured,\
itemFilter=itemFilter,\
outputSelector=outputSelector,\
postSearchItemFilter=postSearchItemFilter,\
postSearchSellerFilter=postSearchSellerFilter, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
def test_categoryId_findBestMatchItemDetailsAcrossStores(self):
result = findBestMatchItemDetailsAcrossStores(keywords=None,\
siteResultsPerPage=siteResultsPerPage,\
categoryId=categoryId, entriesPerPage=entriesPerPage,\
ignoreFeatured=ignoreFeatured,\
itemFilter=itemFilter,\
outputSelector=outputSelector,\
postSearchItemFilter=postSearchItemFilter,\
postSearchSellerFilter=postSearchSellerFilter, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
def test_findBestMatchItemDetailsAdvanced(self):
result = findBestMatchItemDetailsAdvanced(keywords=keywords,\
siteResultsPerPage=siteResultsPerPage,\
categoryId=None, \
entriesPerPage=entriesPerPage, \
ignoreFeatured=ignoreFeatured, \
itemFilter=itemFilter, \
outputSelector=outputSelector, \
postSearchItemFilter=postSearchItemFilter, \
postSearchSellerFilter=postSearchSellerFilter, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
def test_findBestMatchItemDetailsByCategory(self):
result = findBestMatchItemDetailsByCategory(categoryId = categoryId, \
siteResultsPerPage = siteResultsPerPage, \
entriesPerPage = entriesPerPage, \
ignoreFeatured = ignoreFeatured, \
itemFilter = itemFilter, \
outputSelector = outputSelector, \
postSearchItemFilter = postSearchItemFilter, \
postSearchSellerFilter = postSearchSellerFilter, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
def test_findBestMatchItemDetailsByKeywords(self):
result = findBestMatchItemDetailsByKeywords(keywords=keywords, \
siteResultsPerPage = siteResultsPerPage, \
entriesPerPage=entriesPerPage, \
ignoreFeatured=ignoreFeatured, \
itemFilter=itemFilter, \
outputSelector=outputSelector, \
postSearchItemFilter=postSearchItemFilter, \
postSearchSellerFilter=postSearchSellerFilter, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
def test_findBestMatchItemDetailsByProduct(self):
result = findBestMatchItemDetailsByProduct(productId=productId, \
siteResultsPerPage=siteResultsPerPage, \
entriesPerPage=entriesPerPage, \
ignoreFeatured=ignoreFeatured, \
itemFilter=itemFilter, \
outputSelector=outputSelector, \
postSearchItemFilter=postSearchItemFilter, \
postSearchSellerFilter=postSearchSellerFilter, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
def test_findBestMatchItemDetailsBySeller(self):
result = findBestMatchItemDetailsBySeller(categoryId=categoryId, \
sellerUserName=sellerUserName, \
ignoreFeatured=ignoreFeatured, \
itemFilter=itemFilter, \
paginationInput=paginationInput, \
encoding="XML")
root = etree.fromstring(result)
ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
self.assertEqual(ack, "Success")
# def test_findBestMatchItemDetails(self):
# result = findBestMatchItemDetails()
# root = etree.fromstring(result)
# ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
# self.assertEqual(ack, "Success")
if __name__ == '__main__':
unittest.main()