2022-02-15 07:16:21 +01:00
|
|
|
import Pretender from "pretender";
|
2022-02-17 07:08:14 +01:00
|
|
|
import WizardJson from "./fixtures/wizard";
|
2022-02-15 07:16:21 +01:00
|
|
|
|
|
|
|
// TODO: This file has some copied and pasted functions from `create-pretender` - would be good
|
|
|
|
// to centralize that code at some point.
|
|
|
|
|
|
|
|
function parsePostData(query) {
|
|
|
|
const result = {};
|
|
|
|
query.split("&").forEach(function (part) {
|
|
|
|
const item = part.split("=");
|
|
|
|
const firstSeg = decodeURIComponent(item[0]);
|
|
|
|
const m = /^([^\[]+)\[([^\]]+)\]/.exec(firstSeg);
|
|
|
|
|
|
|
|
const val = decodeURIComponent(item[1]).replace(/\+/g, " ");
|
|
|
|
if (m) {
|
|
|
|
result[m[1]] = result[m[1]] || {};
|
|
|
|
result[m[1]][m[2]] = val;
|
|
|
|
} else {
|
|
|
|
result[firstSeg] = val;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function response(code, obj) {
|
|
|
|
if (typeof code === "object") {
|
|
|
|
obj = code;
|
|
|
|
code = 200;
|
|
|
|
}
|
|
|
|
return [code, { "Content-Type": "application/json" }, obj];
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function () {
|
|
|
|
const server = new Pretender(function () {
|
2022-02-17 07:08:14 +01:00
|
|
|
this.get("/w/wizard.json", () => {
|
|
|
|
return response(200, cloneJSON(WizardJson);
|
2022-02-15 07:16:21 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
this.put("/wizard/steps/:id", (request) => {
|
|
|
|
const body = parsePostData(request.requestBody);
|
|
|
|
|
|
|
|
if (body.fields.full_name === "Server Fail") {
|
|
|
|
return response(422, {
|
|
|
|
errors: [{ field: "full_name", description: "Invalid name" }],
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return response(200, { success: true });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
server.prepareBody = function (body) {
|
|
|
|
if (body && typeof body === "object") {
|
|
|
|
return JSON.stringify(body);
|
|
|
|
}
|
|
|
|
return body;
|
|
|
|
};
|
|
|
|
|
|
|
|
server.unhandledRequest = function (verb, path) {
|
|
|
|
const error =
|
|
|
|
"Unhandled request in test environment: " + path + " (" + verb + ")";
|
|
|
|
window.console.error(error);
|
|
|
|
throw error;
|
|
|
|
};
|
|
|
|
|
|
|
|
return server;
|
|
|
|
}
|