Make HTTP tests more reliable
This commit is contained in:
parent
0b9f463b9f
commit
12ccbf45c8
1 changed files with 9 additions and 4 deletions
|
@ -54,6 +54,11 @@ describe("Zotero.HTTP", function () {
|
||||||
server.autoRespond = true;
|
server.autoRespond = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
afterEach(async function () {
|
||||||
|
// Allow requests to settle
|
||||||
|
await Zotero.Promise.delay(50);
|
||||||
|
});
|
||||||
|
|
||||||
after(function* () {
|
after(function* () {
|
||||||
var defer = new Zotero.Promise.defer();
|
var defer = new Zotero.Promise.defer();
|
||||||
httpd.stop(() => defer.resolve());
|
httpd.stop(() => defer.resolve());
|
||||||
|
@ -173,13 +178,13 @@ describe("Zotero.HTTP", function () {
|
||||||
spy = sinon.spy(Zotero.HTTP, "_requestInternal");
|
spy = sinon.spy(Zotero.HTTP, "_requestInternal");
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
cancel();
|
cancel();
|
||||||
}, 50);
|
}, 80);
|
||||||
var e = await getPromiseError(
|
var e = await getPromiseError(
|
||||||
Zotero.HTTP.request(
|
Zotero.HTTP.request(
|
||||||
"GET",
|
"GET",
|
||||||
baseURL + "error",
|
baseURL + "error",
|
||||||
{
|
{
|
||||||
errorDelayIntervals: [10, 10, 100],
|
errorDelayIntervals: [10, 10, 150],
|
||||||
cancellerReceiver: function () {
|
cancellerReceiver: function () {
|
||||||
cancel = arguments[0];
|
cancel = arguments[0];
|
||||||
}
|
}
|
||||||
|
@ -187,7 +192,7 @@ describe("Zotero.HTTP", function () {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
assert.instanceOf(e, Zotero.HTTP.CancelledException);
|
assert.instanceOf(e, Zotero.HTTP.CancelledException);
|
||||||
assert.isTrue(spy.calledTwice);
|
assert.equal(spy.callCount, 3);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should obey Retry-After for 503", function* () {
|
it("should obey Retry-After for 503", function* () {
|
||||||
|
@ -224,7 +229,7 @@ describe("Zotero.HTTP", function () {
|
||||||
});
|
});
|
||||||
spy = sinon.spy(Zotero.HTTP, "_requestInternal");
|
spy = sinon.spy(Zotero.HTTP, "_requestInternal");
|
||||||
yield Zotero.HTTP.request("GET", baseURL + "error");
|
yield Zotero.HTTP.request("GET", baseURL + "error");
|
||||||
assert.isTrue(spy.calledThrice);
|
assert.equal(3, spy.callCount);
|
||||||
// DEBUG: Why are these slightly off?
|
// DEBUG: Why are these slightly off?
|
||||||
assert.approximately(delayStub.args[0][0], 5 * 1000, 5);
|
assert.approximately(delayStub.args[0][0], 5 * 1000, 5);
|
||||||
assert.approximately(delayStub.args[1][0], 10 * 1000, 5);
|
assert.approximately(delayStub.args[1][0], 10 * 1000, 5);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue