New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-mock-record

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-mock-record - npm Package Compare versions

Comparing version

to
1.4.0

server/auth.js

10

client/mock.utilities.js

@@ -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;

2

package.json
{
"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;