SponsorBlockServer/test/cases/tokenUtils.ts

75 lines
2.8 KiB
TypeScript
Raw Normal View History

import assert from "assert";
import { config } from "../../src/config";
import axios from "axios";
import * as tokenUtils from "../../src/utils/tokenUtils";
import MockAdapter from "axios-mock-adapter";
2022-10-30 22:07:25 +01:00
import { validateLicenseKeyRegex } from "../../src/routes/verifyToken";
let mock: MockAdapter;
2022-09-25 04:10:29 +02:00
import * as patreon from "../mocks/patreonMock";
2022-10-30 22:07:25 +01:00
const validateToken = validateLicenseKeyRegex;
describe("tokenUtils test", function() {
before(function() {
mock = new MockAdapter(axios, { onNoMatch: "throwException" });
2022-09-25 04:10:29 +02:00
mock.onPost("https://www.patreon.com/api/oauth2/token").reply(200, patreon.fakeOauth);
2022-09-25 08:04:30 +02:00
mock.onGet(/identity/).reply(200, patreon.activeIdentity);
});
it("Should be able to create patreon token", function (done) {
if (!config?.patreon) this.skip();
tokenUtils.createAndSaveToken(tokenUtils.TokenType.patreon, "test_code").then((licenseKey) => {
2023-08-03 07:16:57 +02:00
assert.ok(validateToken(licenseKey[0]));
done();
});
});
it("Should be able to create local token", (done) => {
tokenUtils.createAndSaveToken(tokenUtils.TokenType.local).then((licenseKey) => {
2023-08-03 07:16:57 +02:00
assert.ok(validateToken(licenseKey[0]));
done();
});
});
it("Should be able to get patreon identity", function (done) {
if (!config?.patreon) this.skip();
tokenUtils.getPatreonIdentity("fake_access_token").then((result) => {
2022-09-25 08:04:30 +02:00
assert.deepEqual(result, patreon.activeIdentity);
done();
});
});
it("Should be able to refresh token", function (done) {
if (!config?.patreon) this.skip();
tokenUtils.refreshToken(tokenUtils.TokenType.patreon, "fake-licence-Key", "fake_refresh_token").then((result) => {
assert.strictEqual(result, true);
done();
});
});
2023-03-12 21:30:08 +01:00
after(function () {
mock.restore();
});
});
describe("tokenUtils failing tests", function() {
before(function() {
mock = new MockAdapter(axios, { onNoMatch: "throwException" });
mock.onPost("https://www.patreon.com/api/oauth2/token").reply(204, patreon.fakeOauth);
mock.onGet(/identity/).reply(204, patreon.activeIdentity);
});
it("Should fail if patreon is not correctly stubbed", function (done) {
tokenUtils.createAndSaveToken(tokenUtils.TokenType.patreon, "test_code").then((licenseKey) => {
assert.strictEqual(licenseKey, null);
done();
});
});
it("Should fail if token type is invalid", (done) => {
tokenUtils.createAndSaveToken("invalidTokenType" as tokenUtils.TokenType).then((licenseKey) => {
assert.strictEqual(licenseKey, null);
done();
});
});
after(function () {
mock.restore();
});
});