-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathtest_base.py
85 lines (65 loc) · 2.13 KB
/
test_base.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
# -*- coding: utf-8 -*-
'''
Copyright 2012-2019 eBay Inc.
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''
from __future__ import absolute_import
import os
import sys
import unittest
import doctest
import ebaysdk.utils
import ebaysdk.config
import ebaysdk.response
import ebaysdk.connection
import ebaysdk.http
import ebaysdk.shopping
import ebaysdk.trading
import ebaysdk.merchandising
import ebaysdk.soa.finditem
import ebaysdk.finding
import ebaysdk.poller.orders
import ebaysdk.inventorymanagement
# does not pass with python3.3
try:
import ebaysdk.parallel
except ImportError:
pass
# os.environ.setdefault("EBAY_YAML", "ebay.yaml")
class TestBase(unittest.TestCase):
def doctest(self, module):
doctest.testmod(module, raise_on_error=True, verbose=False)
def test_run_doctest_poller(self):
self.doctest(ebaysdk.poller.orders)
def test_run_doctest_utils(self):
self.doctest(ebaysdk.utils)
def test_run_doctest_config(self):
self.doctest(ebaysdk.config)
def test_run_doctest_response(self):
self.doctest(ebaysdk.response)
def test_run_doctest_connection(self):
self.doctest(ebaysdk.connection)
def test_run_doctest_shopping(self):
s = ebaysdk.shopping.Connection(config_file=os.environ.get('EBAY_YAML'))
resp = s.execute('GetCategoryInfo',
{'CategoryID': '-1',
'IncludeSelector': ['ChildCategories']})
self.assertEqual(s.response.reply.Ack, 'Success')
self.assertEqual(s.error(), None)
#self.doctest(ebaysdk.shopping)
def test_run_doctest_trading(self):
self.doctest(ebaysdk.trading)
def test_run_doctest_merchandising(self):
self.doctest(ebaysdk.merchandising)
def test_run_doctest_finding(self):
self.doctest(ebaysdk.finding)
def test_run_doctest_inventorymanagement(self):
self.doctest(ebaysdk.inventorymanagement)
def test_grequests(self):
if not sys.version_info[0] >= 3 \
and sys.modules.has_key('grequests') is True:
# self.doctest(ebaysdk.parallel)
pass
if __name__ == '__main__':
unittest.main()