Skip to content

Commit

Permalink
Merge pull request #9 from jonasgrunert/dev
Browse files Browse the repository at this point in the history
fix(index.ts): fix obsucer mitm bug
  • Loading branch information
jonasgrunert authored Sep 16, 2020
2 parents f342855 + 30c76fa commit 0562620
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions __tests__/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,17 @@ describe("Serialize reqeust serializes an incoming request", () => {
expect(ser.parameters.petId).toBe("69");
});
});

describe("Mitm internal keepAlive", () => {
it("Properly destroys connection with keep alive", async () => {
const agent = new https.Agent({ keepAlive: true });
for (let i = 1; i < 10000; i++) {
await new Promise((resolve, reject) => {
https.get("https://example.com", { agent }, res => {
res.on("data", d => {});
res.on("end", resolve);
});
});
}
});
});
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ class MockAPI {
} catch (err) {
res.statusCode = 500;
res.end(err.message);
} finally {
req.destroy();
}
});
}
Expand Down

0 comments on commit 0562620

Please sign in to comment.