gecko-dev/devtools/server/tests/unit/test_protocol_abort.js

91 строка
1.9 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Outstanding requests should be rejected when the connection aborts
* unexpectedly.
*/
var protocol = require("devtools/shared/protocol");
var { RetVal } = protocol;
function simpleHello() {
return {
from: "root",
applicationType: "xpcshell-tests",
traits: [],
};
}
const rootSpec = protocol.generateActorSpec({
typeName: "root",
methods: {
simpleReturn: {
response: { value: RetVal() },
},
},
});
var RootActor = protocol.ActorClassWithSpec(rootSpec, {
typeName: "root",
initialize: function(conn) {
protocol.Actor.prototype.initialize.call(this, conn);
// Root actor owns itself.
this.manage(this);
this.actorID = "root";
this.sequence = 0;
},
sayHello: simpleHello,
simpleReturn: function() {
return this.sequence++;
},
});
class RootFront extends protocol.FrontClassWithSpec(rootSpec) {
constructor(client) {
super(client);
this.actorID = "root";
// Root owns itself.
this.manage(this);
}
}
function run_test() {
DebuggerServer.createRootActor = RootActor;
DebuggerServer.init();
const trace = connectPipeTracing();
const client = new DebuggerClient(trace);
let rootFront;
client.connect().then(([applicationType, traits]) => {
rootFront = new RootFront(client);
rootFront.simpleReturn().then(
() => {
ok(false, "Connection was aborted, request shouldn't resolve");
do_test_finished();
},
e => {
const error = e.toString();
ok(true, "Connection was aborted, request rejected correctly");
ok(error.includes("Request stack:"), "Error includes request stack");
ok(
error.includes("test_protocol_abort.js"),
"Stack includes this test"
);
do_test_finished();
}
);
trace.close();
});
do_test_pending();
}