forked from ShilongLee/Crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaobao.py
154 lines (140 loc) · 5.19 KB
/
taobao.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import requests
from cookie import HOST, TB_COOKIE
import unittest
import time
class TestModule(unittest.TestCase):
# 添加账户接口
def test_add_account(self):
data = {
"id": "test",
"cookie": TB_COOKIE
}
response = requests.post(f'{HOST}/taobao/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 账户列表接口
def test_account_list(self):
# 添加账户
data = {
"id": "test",
"cookie": TB_COOKIE
}
response = requests.post(f'{HOST}/taobao/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取账户列表
response = requests.get(f'{HOST}/taobao/account_list')
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']), 0)
# 过期账户接口
def test_expire_account(self):
# 添加账户
data = {
"id": "test",
"cookie": TB_COOKIE
}
response = requests.post(f'{HOST}/taobao/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 过期账户
data = {
"id": "test",
}
response = requests.post(f'{HOST}/taobao/expire_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取详情接口
def test_detail(self):
# 添加账户
data = {
"id": "test",
"cookie": TB_COOKIE
}
response = requests.post(f'{HOST}/taobao/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取详情
param = {
"id" : '738605376921'
}
response = requests.get(f'{HOST}/taobao/detail', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertEqual(response.json()['data']['item']['itemId'], param['id'])
# 获取评论接口
def test_comments(self):
# 添加账户
data = {
"id": "test",
"cookie": TB_COOKIE
}
response = requests.post(f'{HOST}/taobao/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取评论
param = {
"id" : '738605376921'
}
response = requests.get(f'{HOST}/taobao/comments', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['comments']), 0)
time.sleep(1)
# 测试翻页 page_size = 20
offset = 55
limit = 5
param = {
"id" : '738605376921',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/taobao/comments', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['comments']), 0)
first_page = [comment['id'] for comment in response.json()['data']['comments']]
time.sleep(1)
offset = 60
limit = 5
param = {
"id" : '738605376921',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/taobao/comments', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['comments']), 0)
second_page = [comment['id'] for comment in response.json()['data']['comments']]
time.sleep(1)
offset = 55
limit = 10
param = {
"id" : '738605376921',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/taobao/comments', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['comments']), 0)
self.assertSequenceEqual([comment['id'] for comment in response.json()['data']['comments']], first_page + second_page)
# 搜索接口
def test_search(self):
# 添加账户
data = {
"id": "test",
"cookie": TB_COOKIE
}
response = requests.post(f'{HOST}/taobao/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 搜索
param = {
"keyword" : "白丝"
}
response = requests.get(f'{HOST}/taobao/search', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['results']), 0)