mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
4438ce7db6
transformative: - getUserID - redisTest - reputation mocha test reconfig: - etag - getIP - userCounter - validateVideoIDs
27 lines
No EOL
1 KiB
TypeScript
27 lines
No EOL
1 KiB
TypeScript
import axios from "axios";
|
|
import assert from "assert";
|
|
import { config } from "../../src/config";
|
|
import { getHash } from "../../src/utils/getHash";
|
|
import { client } from "../utils/httpClient";
|
|
|
|
describe("userCounter", () => {
|
|
it("Should return 200", function () {
|
|
if (!config.userCounterURL) this.skip(); // skip if no userCounterURL is set
|
|
return axios.request({
|
|
method: "POST",
|
|
baseURL: config.userCounterURL,
|
|
url: "/api/v1/addIP",
|
|
params: {
|
|
hashedIP: getHash("127.0.0.1",1)
|
|
}
|
|
}).then(res => assert.strictEqual(res.status, 200));
|
|
});
|
|
it("Should not incremeent counter on OPTIONS", function () {
|
|
/* cannot spy test */
|
|
if (!config.userCounterURL) this.skip(); // skip if no userCounterURL is set
|
|
//const spy = sinon.spy(UserCounter);
|
|
return client({ method: "OPTIONS", url: "/api/status" })
|
|
.then(() => client({ method: "GET", url: "/api/status" }));
|
|
//assert.strictEqual(spy.callCount, 1);
|
|
});
|
|
}); |