1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* 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("resource://devtools/shared/protocol.js");
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(conn) {
protocol.Actor.prototype.initialize.call(this, conn);
// Root actor owns itself.
this.manage(this);
this.actorID = "root";
this.sequence = 0;
},
sayHello: simpleHello,
simpleReturn() {
return this.sequence++;
},
});
class RootFront extends protocol.FrontClassWithSpec(rootSpec) {
constructor(client) {
super(client);
this.actorID = "root";
// Root owns itself.
this.manage(this);
}
}
protocol.registerFront(RootFront);
add_task(async function() {
DevToolsServer.createRootActor = RootActor;
DevToolsServer.init();
const trace = connectPipeTracing();
const client = new DevToolsClient(trace);
await client.connect();
const rootFront = client.mainRoot;
const onSimpleReturn = rootFront.simpleReturn();
trace.close();
try {
await onSimpleReturn;
ok(false, "Connection was aborted, request shouldn't resolve");
} catch (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");
}
});
|