tenfourfox/devtools/server/tests/unit/test_protocol_abort.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

76 lines
1.8 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Outstanding requests should be rejected when the connection aborts
* unexpectedly.
*/
var protocol = require("devtools/server/protocol");
var {method, Arg, Option, RetVal} = protocol;
var events = require("sdk/event/core");
function simpleHello() {
return {
from: "root",
applicationType: "xpcshell-tests",
traits: [],
}
}
var RootActor = protocol.ActorClass({
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: method(function() {
return this.sequence++;
}, {
response: { value: RetVal() },
})
});
var RootFront = protocol.FrontClass(RootActor, {
initialize: function(client) {
this.actorID = "root";
protocol.Front.prototype.initialize.call(this, client);
// Root owns itself.
this.manage(this);
}
});
function run_test() {
DebuggerServer.createRootActor = RootActor;
DebuggerServer.init();
let trace = connectPipeTracing();
let client = new DebuggerClient(trace);
let rootClient;
client.connect((applicationType, traits) => {
rootClient = RootFront(client);
rootClient.simpleReturn().then(() => {
ok(false, "Connection was aborted, request shouldn't resolve");
do_test_finished();
}, e => {
let 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();
}