info.log.2021-06-28
47.9 KB
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
[2021-06-28 17:41:39.544] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testAccountQuery(BankAccountServiceTest.java:37)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 17:42:54.860] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccount(BankAccountServiceTest.java:45)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 17:44:10.302] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccountCodeQuery(BankAccountServiceTest.java:52)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 18:03:46.363] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testAccountQuery(BankAccountServiceTest.java:37)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 18:05:01.603] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccount(BankAccountServiceTest.java:45)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 18:06:16.916] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccountCodeQuery(BankAccountServiceTest.java:52)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 19:56:25.202] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 19:56:25.359] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 19:56:25:测试集开始======
[2021-06-28 19:56:25.722] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 19:56:25:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 19:56:27.020] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 19:56:27.021] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 19:56:27:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 19:56:27.021] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒299毫秒======
[2021-06-28 19:57:42.320] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePutJson(HttpToolKit.java:340)
at com.fangdd.qa.testng.TestngListener.reportTestStatistic(TestngListener.java:138)
at com.fangdd.qa.testng.TestngListener.onTestSuccess(TestngListener.java:75)
at org.testng.internal.Invoker.runTestListeners(Invoker.java:1720)
at org.testng.internal.Invoker.runTestListeners(Invoker.java:1699)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:703)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:748)
[2021-06-28 19:57:42.600] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 19:57:42.600] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 19:57:42.601] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 19:57:42.601] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 19:57:42.610] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 19:57:42.612] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 19:58:57.994] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePutJson(HttpToolKit.java:340)
at com.fangdd.qa.testng.TestngSuiteListener.reportTestSuiteStatistic(TestngSuiteListener.java:90)
at com.fangdd.qa.testng.TestngSuiteListener.onFinish(TestngSuiteListener.java:77)
at org.testng.SuiteRunner.invokeListeners(SuiteRunner.java:232)
at org.testng.SuiteRunner.run(SuiteRunner.java:292)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:281)
at org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:75)
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:121)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:121)
[2021-06-28 20:00:44.375] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:00:44.530] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:00:44:测试集开始======
[2021-06-28 20:00:44.862] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:00:44:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:00:46.273] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:00:46.274] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:00:46:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:00:46.274] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒412毫秒======
[2021-06-28 20:00:46.992] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:00:46.992] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:00:46.993] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:00:46.993] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:00:47.002] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:00:47.003] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:00:47.590] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:00:46:测试集结束======
[2021-06-28 20:00:47.590] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒464毫秒======
[2021-06-28 20:05:01.685] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:05:01.845] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:05:01:测试集开始======
[2021-06-28 20:05:02.183] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:05:02:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:05:03.412] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:05:03.412] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:05:03:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:05:03.412] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒229毫秒======
[2021-06-28 20:05:04.487] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:05:04.488] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:05:04.488] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:05:04.488] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:05:04.498] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:05:04.499] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:05:05.007] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:05:04:测试集结束======
[2021-06-28 20:05:05.008] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒645毫秒======
[2021-06-28 20:10:20.005] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:10:20.151] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:10:20:测试集开始======
[2021-06-28 20:10:20.473] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:10:20:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:10:21.634] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:10:21.635] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:10:21:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:10:21.636] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒162毫秒======
[2021-06-28 20:10:22.289] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:10:22.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:10:22.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:10:22.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:10:22.300] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:10:22.301] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:10:22.615] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:10:22:测试集结束======
[2021-06-28 20:10:22.615] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒141毫秒======
[2021-06-28 20:18:24.082] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:18:24:测试集开始======
[2021-06-28 20:18:24.324] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-06-28 20:18:24.325] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:18:24.325] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:18:24.695] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:18:24.696] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:18:24.833] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:18:24:测试集结束======
[2021-06-28 20:18:24.834] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 245毫秒======
[2021-06-28 20:20:10.109] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:20:10:测试集开始======
[2021-06-28 20:20:10.144] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-06-28 20:20:10.145] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:20:10.145] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:20:10.514] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:20:10.515] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:20:10.646] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:20:10:测试集结束======
[2021-06-28 20:20:10.647] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 039毫秒======
[2021-06-28 20:21:55.366] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:21:55.520] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:21:55:测试集开始======
[2021-06-28 20:21:55.830] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:21:55:用例【com.pipi.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:21:56.983] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:21:56.983] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:21:56:用例【com.pipi.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:21:56.983] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒153毫秒======
[2021-06-28 20:21:57.652] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:21:57.652] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:21:57.652] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:21:57.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:21:57.662] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:21:57.663] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:21:57.844] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:21:57:测试集结束======
[2021-06-28 20:21:57.844] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒134毫秒======
[2021-06-28 21:24:05.545] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: 57998f91916e4a8a8aef0663c27774ce-api-admin.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:153)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.getAdminToken(CosPlyaPlayerServiceImpl.java:89)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.activityList(CosPlyaPlayerServiceImpl.java:350)
at com.pipi.invoker.CosPlayerTest.testActivityList(CosPlayerTest.java:62)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 21:26:25.622] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 21:26:25.771] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 21:26:25:测试集开始======
[2021-06-28 21:26:26.050] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:26:26:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-06-28 21:26:27.330] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-06-28 21:26:27.331] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:26:27:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-06-28 21:26:27.331] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒281毫秒======
[2021-06-28 21:26:28.028] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:26:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-06-28 21:26:28.580] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 21:26:28.581] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:26:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-06-28 21:26:28.581] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 553毫秒======
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:2
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 21:26:29.580] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 21:26:29.581] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 21:26:29.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 21:26:29:测试集结束======
[2021-06-28 21:26:29.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 03秒804毫秒======
[2021-06-28 21:40:49.358] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 21:40:49.515] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 21:40:49:测试集开始======
[2021-06-28 21:40:49.821] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:40:49:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-06-28 21:40:51.299] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-06-28 21:40:51.300] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:40:51:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-06-28 21:40:51.300] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒479毫秒======
[2021-06-28 21:40:52.076] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:40:52:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-06-28 21:40:52.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 21:40:52.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:40:52:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-06-28 21:40:52.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 577毫秒======
[2021-06-28 21:40:53.508] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:2
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 21:40:53.516] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 21:40:53.518] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 21:40:53.902] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 21:40:53:测试集结束======
[2021-06-28 21:40:53.902] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 03秒996毫秒======
[2021-06-28 21:44:13.153] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 21:44:13.305] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 21:44:13:测试集开始======
[2021-06-28 21:44:13.609] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:44:13:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-06-28 21:44:14.904] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-06-28 21:44:14.905] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:44:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-06-28 21:44:14.905] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒296毫秒======
[2021-06-28 21:44:15.675] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:44:15:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-06-28 21:44:16.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 21:44:16.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:44:16:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-06-28 21:44:16.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 642毫秒======
[2021-06-28 21:44:17.316] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-06-28 21:44:17.316] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 21:44:17.316] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:2
[2021-06-28 21:44:17.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 21:44:17.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 21:44:17.328] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 21:44:17.330] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 21:44:17.693] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 21:44:17:测试集结束======
[2021-06-28 21:44:17.694] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 04秒014毫秒======