add_test(function test_toJSON() {
_("Create a record, for now without a TTL.");
let wbo = new WBORecord("coll", "a_record");
wbo.modified = 12345;
wbo.sortindex = 42;
wbo.payload = {};
_( "Verify that the JSON representation contains the WBO properties, but not TTL."
);
let json = JSON.parse(JSON.stringify(wbo)); Assert.equal(json.modified, 12345); Assert.equal(json.sortindex, 42); Assert.equal(json.payload, "{}"); Assert.equal(false, "ttl" in json);
_("Set a TTL, make sure it's present in the JSON representation.");
wbo.ttl = 30 * 60;
json = JSON.parse(JSON.stringify(wbo)); Assert.equal(json.ttl, 30 * 60);
run_next_test();
});
add_task(async function test_fetch() {
let record = {
id: "asdf-1234-asdf-1234",
modified: 2454725.98283,
payload: JSON.stringify({ cheese: "roquefort" }),
};
let record2 = {
id: "record2",
modified: 2454725.98284,
payload: JSON.stringify({ cheese: "gruyere" }),
};
let coll = [
{
id: "record2",
modified: 2454725.98284,
payload: JSON.stringify({ cheese: "gruyere" }),
},
];
_("Setting up server.");
let server = httpd_setup({ "/record": httpd_handler(200, "OK", JSON.stringify(record)), "/record2": httpd_handler(200, "OK", JSON.stringify(record2)), "/coll": httpd_handler(200, "OK", JSON.stringify(coll)),
});
try {
_("Fetching a WBO record");
let rec = new WBORecord("coll", "record");
await rec.fetch(Service.resource(server.baseURI + "/record")); Assert.equal(rec.id, "asdf-1234-asdf-1234"); // NOT "record"!
_("Fetching a WBO record using the record manager");
let rec2 = await Service.recordManager.get(server.baseURI + "/record2"); Assert.equal(rec2.id, "record2"); Assert.equal(rec2.modified, 2454725.98284); Assert.equal(typeof rec2.payload, "object"); Assert.equal(rec2.payload.cheese, "gruyere"); Assert.equal(Service.recordManager.response.status, 200);
// Testing collection extraction.
_("Extracting collection.");
let rec3 = new WBORecord("tabs", "foo"); // Create through constructor. Assert.equal(rec3.collection, "tabs");
} finally {
await promiseStopServer(server);
}
});
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-06-05)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.