forked from karatelabs/karate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karate-config.js
25 lines (25 loc) · 1019 Bytes
/
karate-config.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
function() {
karate.configure('connectTimeout', 5000);
karate.configure('readTimeout', 5000);
var port = karate.properties['demo.server.port'];
if (!port) {
port = karate.env == 'web' ? 8090 : 8080;
}
var protocol = 'http';
if (karate.properties['demo.server.https'] == 'true') {
protocol = 'https';
karate.configure('ssl', true);
}
var config = { demoBaseUrl: protocol + '://127.0.0.1:' + port };
if (karate.env == 'proxy') {
var proxyPort = karate.properties['demo.proxy.port']
karate.configure('proxy', 'http://127.0.0.1:' + proxyPort);
}
if (karate.env != 'mock' && karate.env != 'proxy' && karate.env != 'contract') {
// 'callSingle' is guaranteed to run only once even across all threads
var result = karate.callSingle('classpath:demo/headers/common-noheaders.feature', config);
// and it sets a variable called 'authInfo' used in headers-single.feature
config.authInfo = { authTime: result.time, authToken: result.token };
}
return config;
}