forked from ShilongLee/Crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxhs.py
284 lines (260 loc) · 10 KB
/
xhs.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import requests
from cookie import HOST, XHS_COOKIE
import unittest
import time
class TestModule(unittest.TestCase):
# 添加账户接口
def test_add_account(self):
data = {
"id": "test",
"cookie": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/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": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取账户列表
response = requests.get(f'{HOST}/xhs/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": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 过期账户
data = {
"id": "test",
}
response = requests.post(f'{HOST}/xhs/expire_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取详情接口
def test_detail(self):
# 添加账户
data = {
"id": "test",
"cookie": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取详情
param = {
"id" : '6684ca89000000001c025acb'
}
response = requests.get(f'{HOST}/xhs/detail', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertEqual(response.json()['data']['items'][0]['id'], param['id'])
# 获取评论接口
def test_comments(self):
# 添加账户
data = {
"id": "test",
"cookie": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取评论
param = {
"id" : '6684ca89000000001c025acb'
}
response = requests.get(f'{HOST}/xhs/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" : '6684ca89000000001c025acb',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/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" : '6684ca89000000001c025acb',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/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" : '6684ca89000000001c025acb', # 快手官方视频
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/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_reply(self):
# 添加账户
data = {
"id": "test",
"cookie": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取评论回复
param = {
"id" : '6684ca89000000001c025acb',
"comment_id": '668742f900000000170031ae'
}
response = requests.get(f'{HOST}/xhs/replys', 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 = 5
limit = 5
param = {
"id" : '6684ca89000000001c025acb',
"comment_id": '668742f900000000170031ae',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/replys', 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 = 10
limit = 5
param = {
"id" : '6684ca89000000001c025acb',
"comment_id": '668742f900000000170031ae',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/replys', 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 = 5
limit = 10
param = {
"id" : '6684ca89000000001c025acb', # 抖音官方视频
"comment_id": '668742f900000000170031ae',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/replys', 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": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 搜索
param = {
"keyword" : "白丝"
}
response = requests.get(f'{HOST}/xhs/search', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']), 0)
# 用户接口
def test_user(self):
# 添加账户
data = {
"id": "test",
"cookie": XHS_COOKIE
}
response = requests.post(f'{HOST}/xhs/add_account', json=data)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
# 获取用户信息
param = {
"id" : "5a4b2f90e8ac2b388a327acb"
}
response = requests.get(f'{HOST}/xhs/user', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertNotEqual(response.json()['data']['user'], {})
time.sleep(1)
# 测试翻页 page_size = 10
offset = 25
limit = 5
param = {
"id" : '5a4b2f90e8ac2b388a327acb',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/user', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['user']['notes']), 0)
first_page = [note['note_id'] for note in response.json()['data']['user']['notes']]
time.sleep(1)
offset = 30
limit = 5
param = {
"id" : '5a4b2f90e8ac2b388a327acb',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/user', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['user']['notes']), 0)
second_page = [note['note_id'] for note in response.json()['data']['user']['notes']]
time.sleep(1)
offset = 25
limit = 10
param = {
"id" : '5a4b2f90e8ac2b388a327acb',
"offset": offset,
"limit": limit
}
response = requests.get(f'{HOST}/xhs/user', params=param)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json()['code'], 0)
self.assertGreater(len(response.json()['data']['user']['notes']), 0)
self.assertSequenceEqual([note['note_id'] for note in response.json()['data']['user']['notes']], first_page + second_page)