wiremock-mapper
Version:
DSL for setting up WireMock mappings.
218 lines • 11.4 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (g && (g = 0, op[0] && (_ = 0)), _) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.WireMockService = void 0;
var http = __importStar(require("http"));
var configuration_1 = require("./configuration");
var WireMockService = /** @class */ (function () {
function WireMockService() {
}
WireMockService.clearWireMockMappings = function () {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
return [2 /*return*/, new Promise(function (resolve, reject) {
var request = http.request({
hostname: configuration_1.Configuration.wireMockHost,
method: 'POST',
path: _this.WIREMOCK_CLEAR_MAPPINGS_PATH,
port: configuration_1.Configuration.wireMockPort
}, WireMockService.responseHandler(function () {
resolve();
}, reject));
request.on('error', reject);
request.end();
})];
});
});
};
WireMockService.deleteFromWireMock = function (mappingId) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
return [2 /*return*/, new Promise(function (resolve, reject) {
var request = http.request({
hostname: configuration_1.Configuration.wireMockHost,
method: 'DELETE',
path: [_this.WIREMOCK_MAPPINGS_PATH, mappingId].join('/'),
port: configuration_1.Configuration.wireMockPort
}, WireMockService.responseHandler(function () {
resolve();
}, reject));
request.on('error', reject);
request.end();
})];
});
});
};
WireMockService.deleteRequests = function (option) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
return [2 /*return*/, new Promise(function (resolve, reject) {
var request = http.request({
hostname: configuration_1.Configuration.wireMockHost,
method: 'DELETE',
path: [_this.WIREMOCK_REQUESTS_PATH, option === null || option === void 0 ? void 0 : option.stubId]
.filter(Boolean)
.join('/'),
port: configuration_1.Configuration.wireMockPort
}, WireMockService.responseHandler(function () {
resolve();
}, reject));
request.on('error', reject);
request.end();
})];
});
});
};
WireMockService.getRequests = function (option) {
return __awaiter(this, void 0, void 0, function () {
var queryString;
var _this = this;
return __generator(this, function (_a) {
queryString = (option === null || option === void 0 ? void 0 : option.stubId) ? "matchingStub=".concat(option.stubId) : '';
return [2 /*return*/, new Promise(function (resolve, reject) {
var request = http.request({
headers: { 'Content-Type': 'application/json' },
hostname: configuration_1.Configuration.wireMockHost,
method: 'GET',
path: [_this.WIREMOCK_REQUESTS_PATH, queryString]
.filter(Boolean)
.join('?'),
port: configuration_1.Configuration.wireMockPort
}, WireMockService.responseHandler(resolve, reject));
request.on('error', reject);
request.end();
})];
});
});
};
WireMockService.sendToWireMock = function (requestBuilder, responseBuilder, scenarioBuilder) {
return __awaiter(this, void 0, void 0, function () {
var _this = this;
return __generator(this, function (_a) {
return [2 /*return*/, new Promise(function (resolve, reject) {
var request = http.request({
headers: { 'Content-Type': 'application/json' },
hostname: configuration_1.Configuration.wireMockHost,
method: 'POST',
path: _this.WIREMOCK_MAPPINGS_PATH,
port: configuration_1.Configuration.wireMockPort
}, WireMockService.responseHandler(resolve, reject, 201));
request.on('error', reject);
var wiremockRequest = __assign({ request: requestBuilder, response: responseBuilder }, scenarioBuilder.toJSON());
request.write(JSON.stringify(wiremockRequest));
request.end();
})];
});
});
};
Object.defineProperty(WireMockService, "WIREMOCK_CLEAR_MAPPINGS_PATH", {
get: function () {
var _a, _b;
return "".concat(((_b = (_a = configuration_1.Configuration.baseUrl) === null || _a === void 0 ? void 0 : _a.pathname) === null || _b === void 0 ? void 0 : _b.replace(/\/$/, '')) || '', "/__admin/mappings/reset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WireMockService, "WIREMOCK_MAPPINGS_PATH", {
get: function () {
var _a, _b;
return "".concat(((_b = (_a = configuration_1.Configuration.baseUrl) === null || _a === void 0 ? void 0 : _a.pathname) === null || _b === void 0 ? void 0 : _b.replace(/\/$/, '')) || '', "/__admin/mappings");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WireMockService, "WIREMOCK_REQUESTS_PATH", {
get: function () {
var _a, _b;
return "".concat(((_b = (_a = configuration_1.Configuration.baseUrl) === null || _a === void 0 ? void 0 : _a.pathname) === null || _b === void 0 ? void 0 : _b.replace(/\/$/, '')) || '', "/__admin/requests");
},
enumerable: false,
configurable: true
});
WireMockService.responseHandler = function (resolve, reject, successStatusCode) {
if (successStatusCode === void 0) { successStatusCode = 200; }
return function (response) {
if (response.statusCode !== successStatusCode) {
reject(new Error("Unexpected Status Code: ".concat(response.statusCode)));
}
var data = '';
response.on('data', function (chunk) { return (data += chunk); });
response.on('end', function () { return resolve(data); });
};
};
return WireMockService;
}());
exports.WireMockService = WireMockService;
//# sourceMappingURL=wiremock_service.js.map