-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest-proxy.js
55 lines (50 loc) · 1.41 KB
/
test-proxy.js
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
const rp = require('request-promise');
const { getAgent } = require('./lib/auto-proxy-agent');
const { url, proxy, proxyType } = JSON.parse(process.argv[2]);
const agent = getAgent(proxy, proxyType, url);
const requestHeaders = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36',
'Cache-Control': 'max-age=0',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Upgrade-Inescure-Requests': '1',
'Accept-Language': 'en-US,en;q=0.8',
'X-Requested-With': 'XMLHttpRequest',
'Connection': 'keep-alive',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
};
const testProxy = () => {
try {
rp(Object.assign({
headers: requestHeaders,
url,
method: 'get',
gzip: true,
time: true,
resolveWithFullResponse: true,
timeout: 5000,
}, agent))
.then(res => {
process.send({
status: 'next',
statusCode: res.statusCode,
proxy,
time: res.elapsedTime / 1000
});
})
.catch(e => {
if (e.cause.code === 'ETIMEDOUT') {
process.send({
status: 'next',
statusCode: 'ETIMEDOUT',
proxy,
time: ''
});
} else {
console.log('promise error', e);
}
})
} catch (e) {
console.log('try/catch error');
}
}
testProxy();