1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-02 00:22:59 +00:00

Create new static index route with ability to create/update bags and recipes

Also introduces a new /.system/filename route for stylesheets, scripts etc.
This commit is contained in:
Jeremy Ruston
2024-03-20 09:44:52 +00:00
parent 1c64646393
commit 6063256439
23 changed files with 305 additions and 319 deletions

View File

@@ -33,7 +33,8 @@ Command.prototype.execute = function() {
}
// Set up server
this.server = $tw.mws.serverManager.createServer({
wiki: $tw.wiki
wiki: $tw.wiki,
variables: self.params
});
this.server.listen(null,null,null,{
callback: function() {

View File

@@ -74,6 +74,7 @@ TestRunner.prototype.runTests = function(callback) {
};
TestRunner.prototype.runTest = function(testSpec,callback) {
const self = this;
console.log(`Running Server Test: ${testSpec.description}`)
if(testSpec.method === "GET" || testSpec.method === "POST") {
const request = this.httpLibrary.request({
@@ -84,8 +85,8 @@ TestRunner.prototype.runTest = function(testSpec,callback) {
method: testSpec.method,
headers: testSpec.headers
}, function(response) {
if (response.statusCode < 200 || response.statusCode >= 300) {
return callback(`Request failed to ${response.url} with status code ${response.statusCode} and ${JSON.stringify(response.headers)}`);
if (response.statusCode < 200 || response.statusCode >= 400) {
return callback(`Request failed to ${self.urlServerParsed.toString()} with status code ${response.statusCode} and ${JSON.stringify(response.headers)}`);
}
response.setEncoding("utf8");
let buffer = "";
@@ -94,7 +95,7 @@ TestRunner.prototype.runTest = function(testSpec,callback) {
});
response.on("end", () => {
const jsonData = $tw.utils.parseJSONSafe(buffer,function() {return undefined;});
const testResult = testSpec.expectedResult(jsonData,buffer);
const testResult = testSpec.expectedResult(jsonData,buffer,response.headers);
callback(testResult ? null : "Test failed");
});
});
@@ -135,6 +136,20 @@ const testSpecs = [
expectedResult: (jsonData,data) => {
return jsonData["imported-tiddlers"] && $tw.utils.isArray(jsonData["imported-tiddlers"]) && jsonData["imported-tiddlers"][0] === "One White Pixel";
}
},
{
description: "Create a recipe",
method: "POST",
path: "/recipes",
headers: {
"Accept": '*/*',
"Content-Type": 'application/x-www-form-urlencoded',
"User-Agent": 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'
},
data: "recipe_name=Elephants3214234&bag_names=one%20two%20three&description=A%20bag%20of%20elephants",
expectedResult: (jsonData,data,headers) => {
return headers.location === "/";
}
}
];