angular-mock-record
Advanced tools
Comparing version
@@ -53,4 +53,14 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
}; | ||
MockUtilities.prototype.login = function (user) { | ||
browser.executeScript(this.loginRequest(user)); | ||
}; | ||
MockUtilities.prototype.loginRequest = function (user) { | ||
var url = this.api_host + '/login/' + user; | ||
var xmlHttp = new XMLHttpRequest(); | ||
xmlHttp.open('GET', url, false); | ||
xmlHttp.send(null); | ||
return xmlHttp.responseText; | ||
}; | ||
return MockUtilities; | ||
}()); | ||
exports.MockUtilities = MockUtilities; |
{ | ||
"name": "angular-mock-record", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"description": "An angular / protractor framework that mocks and records requests. Requests can be manually mocked or recorded like VCR.", | ||
@@ -5,0 +5,0 @@ "main": "server.js", |
@@ -33,2 +33,25 @@ class Http { | ||
post(url, form) { | ||
return new Promise((resolve, reject) => { | ||
this.http.post( | ||
{ | ||
url: url, | ||
jar: true, | ||
form: form, | ||
}, (error, response, body) => { | ||
if (error) { | ||
reject(error); | ||
} | ||
resolve({ | ||
status: response.statusCode, | ||
body: response.body, | ||
headers: response.headers | ||
}); | ||
}); | ||
}); | ||
} | ||
setRequestHeaders(requestHeaders) { | ||
@@ -35,0 +58,0 @@ let out = {}; |
const Http = require('./http.js'); | ||
const Record = require('./record.js'); | ||
const Mock = require('./mock.js'); | ||
const Auth = require('./auth.js'); | ||
const Utilities = require('./utilities.js'); | ||
@@ -9,3 +10,2 @@ | ||
constructor(config) { | ||
this.defaultDomain = config.domain; | ||
this.config = config; | ||
@@ -15,6 +15,9 @@ this.http = new Http(this.config); | ||
this.mock = new Mock(); | ||
this.auth = new Auth(); | ||
this.utilities = new Utilities(); | ||
this.login(); | ||
} | ||
handle(req, res) { | ||
const matchedPath = this.utilities.matchPath(req.path); | ||
@@ -31,13 +34,13 @@ | ||
} else if (this.shouldSetDomain(req.path)) { | ||
this.setDomain(req.path); | ||
res.status(200).send(true); | ||
} else if (this.shouldClearMocks(req.path)) { | ||
this.mock.clearMockedRequests(); | ||
this.setDefaultDomain(); | ||
res.status(200).send(true); | ||
} else if (this.shouldLogin(req.path)) { | ||
this.auth.login( this.auth.getUser(req.path) ).then(status => { | ||
res.status(200).send(true); | ||
}); | ||
} else if (this.hasRequestBeenMocked(matchedPath)) { | ||
@@ -102,2 +105,6 @@ | ||
shouldLogin(path) { | ||
return !!( path.includes('/login') ); | ||
} | ||
shouldSetDomain(path) { | ||
@@ -118,9 +125,4 @@ return !!( path.includes('/domain/') ); | ||
refreshConfigs() { | ||
this.http = new Http(this.config); | ||
this.recorder = new Record(this.config); | ||
} | ||
} | ||
module.exports = RequestHandler; |
17588
11.08%11
10%481
15.63%