SponsorBlockServer/test/cases/postSkipSegments.ts

1019 lines
37 KiB
TypeScript
Raw Normal View History

2021-09-23 00:52:35 +02:00
import { config } from "../../src/config";
import { getHash } from "../../src/utils/getHash";
import { partialDeepEquals, arrayDeepEquals } from "../utils/partialDeepEquals";
2021-09-23 00:52:35 +02:00
import { db } from "../../src/databases/databases";
import { ImportMock } from "ts-mock-imports";
2021-07-12 08:43:46 +02:00
import * as YouTubeAPIModule from "../../src/utils/youtubeApi";
2021-09-23 00:52:35 +02:00
import { YouTubeApiMock } from "../youtubeMock";
2021-07-12 08:43:46 +02:00
import assert from "assert";
2021-09-23 05:18:31 +02:00
import { client } from "../utils/httpClient";
2021-07-12 08:43:46 +02:00
const mockManager = ImportMock.mockStaticClass(YouTubeAPIModule, "YouTubeAPI");
const sinonStub = mockManager.mock("listVideos");
sinonStub.callsFake(YouTubeApiMock.listVideos);
2020-10-17 20:56:54 +02:00
2021-09-17 05:05:16 +02:00
describe("postSkipSegments", () => {
2021-09-17 02:44:12 +02:00
// Constant and helpers
2021-09-17 05:05:16 +02:00
const submitUserOne = `PostSkipUser1${".".repeat(18)}`;
const submitUserTwo = `PostSkipUser2${".".repeat(18)}`;
const submitUserThree = `PostSkipUser3${".".repeat(18)}`;
const warnUser01 = "warn-user01-qwertyuiopasdfghjklzxcvbnm";
const warnUser01Hash = getHash(warnUser01);
const warnUser02 = "warn-user02-qwertyuiopasdfghjklzxcvbnm";
const warnUser02Hash = getHash(warnUser02);
const warnUser03 = "warn-user03-qwertyuiopasdfghjklzxcvbnm";
const warnUser03Hash = getHash(warnUser03);
const warnUser04 = "warn-user04-qwertyuiopasdfghjklzxcvbnm";
const warnUser04Hash = getHash(warnUser04);
2021-10-30 23:58:17 +02:00
const banUser01 = "ban-user01-loremipsumdolorsitametconsectetur";
const banUser01Hash = getHash(banUser01);
2021-09-17 05:05:16 +02:00
const submitUserOneHash = getHash(submitUserOne);
const submitVIPuser = `VIPPostSkipUser${".".repeat(16)}`;
const warnVideoID = "postSkip2";
2021-09-17 05:05:16 +02:00
const badInputVideoID = "dQw4w9WgXcQ";
2021-10-30 23:58:17 +02:00
const shadowBanVideoID = "postSkipBan";
2021-09-17 05:05:16 +02:00
2021-09-17 06:03:42 +02:00
const queryDatabase = (videoID: string) => db.prepare("get", `SELECT "startTime", "endTime", "locked", "category" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
const queryDatabaseActionType = (videoID: string) => db.prepare("get", `SELECT "startTime", "endTime", "locked", "category", "actionType" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
const queryDatabaseDuration = (videoID: string) => db.prepare("get", `SELECT "startTime", "endTime", "locked", "category", "videoDuration" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
2021-10-17 20:42:48 +02:00
const queryDatabaseVideoInfo = (videoID: string) => db.prepare("get", `SELECT * FROM "videoInfo" WHERE "videoID" = ?`, [videoID]);
2021-09-17 05:05:16 +02:00
2021-09-23 05:18:31 +02:00
const endpoint = "/api/skipSegments";
const postSkipSegmentJSON = (data: Record<string, any>) => client({
method: "POST",
url: endpoint,
data
});
const postSkipSegmentParam = (params: Record<string, any>) => client({
method: "POST",
url: endpoint,
params
});
2021-09-17 02:44:12 +02:00
2020-10-17 20:56:54 +02:00
before(() => {
2021-05-07 01:51:11 +02:00
const insertSponsorTimeQuery = 'INSERT INTO "sponsorTimes" ("videoID", "startTime", "endTime", "votes", "UUID", "userID", "timeSubmitted", views, category, "shadowHidden", "hashedVideoID") VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)';
2021-09-17 02:44:12 +02:00
db.prepare("run", insertSponsorTimeQuery, ["80percent_video", 0, 1000, 0, "80percent-uuid-0", submitUserOneHash, 0, 0, "interaction", 0, "80percent_video"]);
db.prepare("run", insertSponsorTimeQuery, ["80percent_video", 1001, 1005, 0, "80percent-uuid-1", submitUserOneHash, 0, 0, "interaction", 0, "80percent_video"]);
db.prepare("run", insertSponsorTimeQuery, ["80percent_video", 0, 5000, -2, "80percent-uuid-2", submitUserOneHash, 0, 0, "interaction", 0, "80percent_video"]);
2020-10-17 20:56:54 +02:00
const now = Date.now();
const warnVip01Hash = getHash("warn-vip01-qwertyuiopasdfghjklzxcvbnm");
2021-07-12 08:43:46 +02:00
const reason01 = "Reason01";
const reason02 = "";
const reason03 = "Reason03";
const reason04 = "";
2020-10-17 20:56:54 +02:00
const MILLISECONDS_IN_HOUR = 3600000;
const warningExpireTime = MILLISECONDS_IN_HOUR * config.hoursAfterWarningExpires;
2021-09-17 02:50:59 +02:00
const insertWarningQuery = 'INSERT INTO warnings ("userID", "issuerUserID", "enabled", "reason", "issueTime") VALUES(?, ?, ?, ?, ?)';
2021-09-17 02:44:12 +02:00
// User 1
db.prepare("run", insertWarningQuery, [warnUser01Hash, warnVip01Hash, 1, reason01, now]);
db.prepare("run", insertWarningQuery, [warnUser01Hash, warnVip01Hash, 1, reason01, (now - 1000)]);
db.prepare("run", insertWarningQuery, [warnUser01Hash, warnVip01Hash, 1, reason01, (now - 2000)]);
db.prepare("run", insertWarningQuery, [warnUser01Hash, warnVip01Hash, 1, reason01, (now - 3601000)]);
// User 2
db.prepare("run", insertWarningQuery, [warnUser02Hash, warnVip01Hash, 1, reason02, now]);
db.prepare("run", insertWarningQuery, [warnUser02Hash, warnVip01Hash, 1, reason02, now]);
db.prepare("run", insertWarningQuery, [warnUser02Hash, warnVip01Hash, 1, reason02, (now - (warningExpireTime + 1000))]);
db.prepare("run", insertWarningQuery, [warnUser02Hash, warnVip01Hash, 1, reason02, (now - (warningExpireTime + 2000))]);
// User 3
db.prepare("run", insertWarningQuery, [warnUser03Hash, warnVip01Hash, 0, reason03, now]);
db.prepare("run", insertWarningQuery, [warnUser03Hash, warnVip01Hash, 0, reason03, (now - 1000)]);
db.prepare("run", insertWarningQuery, [warnUser03Hash, warnVip01Hash, 1, reason03, (now - 2000)]);
db.prepare("run", insertWarningQuery, [warnUser03Hash, warnVip01Hash, 1, reason03, (now - 3601000)]);
// User 4
db.prepare("run", insertWarningQuery, [warnUser04Hash, warnVip01Hash, 0, reason04, now]);
db.prepare("run", insertWarningQuery, [warnUser04Hash, warnVip01Hash, 0, reason04, (now - 1000)]);
db.prepare("run", insertWarningQuery, [warnUser04Hash, warnVip01Hash, 1, reason04, (now - 2000)]);
db.prepare("run", insertWarningQuery, [warnUser04Hash, warnVip01Hash, 1, reason04, (now - 3601000)]);
2021-05-07 01:51:11 +02:00
const insertVipUserQuery = 'INSERT INTO "vipUsers" ("userID") VALUES (?)';
2021-09-17 02:44:12 +02:00
db.prepare("run", insertVipUserQuery, [getHash(submitVIPuser)]);
2021-10-30 23:58:17 +02:00
// ban user
db.prepare("run", `INSERT INTO "shadowBannedUsers" ("userID") VALUES(?)`, [banUser01Hash]);
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time (Params method)", (done) => {
const videoID = "postSkip1";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 2,
endTime: 10,
userID: submitUserOne,
category: "sponsor"
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabase(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 2,
endTime: 10,
category: "sponsor",
};
assert.ok(partialDeepEquals(row, expected));
2021-10-17 20:42:48 +02:00
const videoInfo = await queryDatabaseVideoInfo(videoID);
const expectedVideoInfo = {
videoID,
title: "Example Title",
channelID: "ExampleChannel",
published: 123,
genreUrl: ""
};
assert.ok(partialDeepEquals(videoInfo, expectedVideoInfo));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time (JSON method)", (done) => {
const videoID = "postSkip2";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [0, 10],
category: "sponsor",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabase(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
locked: 0,
category: "sponsor",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time with an action type (JSON method)", (done) => {
const videoID = "postSkip3";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [0, 10],
category: "sponsor",
actionType: "mute"
}],
2021-07-06 06:22:01 +02:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabaseActionType(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
category: "sponsor",
actionType: "mute",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2021-07-06 06:22:01 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should not be able to submit an intro with mute action type (JSON method)", (done) => {
const videoID = "postSkip4";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [0, 10],
category: "intro",
actionType: "mute"
}],
})
.then(async res => {
assert.strictEqual(res.status, 400);
2021-09-17 02:44:12 +02:00
const row = await queryDatabaseActionType(videoID);
assert.strictEqual(row, undefined);
done();
})
.catch(err => done(err));
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time with a duration from the YouTube API (JSON method)", (done) => {
const videoID = "postSkip5";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
videoDuration: 100,
segments: [{
segment: [0, 10],
category: "sponsor",
}],
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabaseDuration(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
category: "sponsor",
videoDuration: 4980,
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time with a precise duration close to the one from the YouTube API (JSON method)", (done) => {
const videoID = "postSkip6";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
videoDuration: 4980.20,
segments: [{
segment: [1, 10],
category: "sponsor",
}],
2021-03-27 00:13:52 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabaseDuration(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 1,
endTime: 10,
locked: 0,
category: "sponsor",
videoDuration: 4980.20,
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2021-03-27 00:13:52 +01:00
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time with a duration in the body (JSON method)", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "noDuration";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
videoDuration: 100,
segments: [{
segment: [0, 10],
category: "sponsor",
}],
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabaseDuration(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
locked: 0,
category: "sponsor",
videoDuration: 100,
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
});
2021-07-12 08:43:46 +02:00
it("Should be able to submit with a new duration, and hide old submissions and remove segment locks", async () => {
2021-09-17 02:44:12 +02:00
const videoID = "noDuration";
await db.prepare("run", `INSERT INTO "lockCategories" ("userID", "videoID", "category")
2021-09-17 02:44:12 +02:00
VALUES(?, ?, ?)`, [getHash("VIPUser-lockCategories"), videoID, "sponsor"]);
try {
2021-09-23 05:18:31 +02:00
const res = await postSkipSegmentJSON({
userID: submitUserOne,
videoID,
videoDuration: 100,
segments: [{
segment: [1, 10],
category: "sponsor",
}],
});
2021-07-07 09:47:08 +02:00
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const lockCategoriesRow = await db.prepare("get", `SELECT * from "lockCategories" WHERE videoID = ?`, [videoID]);
const videoRows = await db.prepare("all", `SELECT "startTime", "endTime", "locked", "category", "videoDuration"
2021-09-17 02:44:12 +02:00
FROM "sponsorTimes" WHERE "videoID" = ? AND hidden = 0`, [videoID]);
const hiddenVideoRows = await db.prepare("all", `SELECT "startTime", "endTime", "locked", "category", "videoDuration"
2021-09-17 02:44:12 +02:00
FROM "sponsorTimes" WHERE "videoID" = ? AND hidden = 1`, [videoID]);
2021-07-07 09:47:08 +02:00
assert.ok(!lockCategoriesRow);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 1,
endTime: 10,
locked: 0,
category: "sponsor",
videoDuration: 100,
};
assert.ok(partialDeepEquals(videoRows[0], expected));
2021-07-07 09:47:08 +02:00
assert.strictEqual(videoRows.length, 1);
assert.strictEqual(hiddenVideoRows.length, 1);
} catch (e) {
return e;
}
});
2021-09-23 05:18:31 +02:00
it("Should still not be allowed if youtube thinks duration is 0", (done) => {
2021-09-17 02:44:12 +02:00
const videoID= "noDuration";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserThree,
videoID,
videoDuration: 100,
segments: [{
segment: [30, 10000],
category: "sponsor",
}],
2021-06-03 04:34:38 +02:00
})
2021-09-23 05:34:46 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
assert.strictEqual(res.status, 403);
done();
})
.catch(err => done(err));
2021-06-03 04:34:38 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit a single time under a different service (JSON method)", (done) => {
const videoID = "postSkip7";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
service: "PeerTube",
segments: [{
segment: [0, 10],
category: "sponsor",
}],
2021-03-20 02:31:16 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await db.prepare("get", `SELECT "startTime", "endTime", "locked", "category", "service" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
locked: 0,
category: "sponsor",
service: "PeerTube",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2021-03-20 02:31:16 +01:00
});
2021-09-23 05:18:31 +02:00
it("VIP submission should start locked", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "vipuserIDSubmission";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitVIPuser,
videoID,
segments: [{
segment: [0, 10],
category: "sponsor",
}],
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabase(videoID);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
locked: 1,
category: "sponsor",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
});
2021-07-12 08:43:46 +02:00
2021-09-23 05:18:31 +02:00
it("Should be able to submit multiple times (JSON method)", (done) => {
const videoID = "postSkip11";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [3, 10],
category: "sponsor",
}, {
segment: [30, 60],
category: "intro",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const rows = await db.prepare("all", `SELECT "startTime", "endTime", "category" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
2021-07-12 08:43:46 +02:00
const expected = [{
startTime: 3,
endTime: 10,
category: "sponsor"
}, {
startTime: 30,
endTime: 60,
category: "intro"
}];
assert.ok(arrayDeepEquals(rows, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
}).timeout(5000);
2021-09-23 05:18:31 +02:00
it("Should allow multiple times if total is under 80% of video(JSON method)", (done) => {
const videoID = "postSkip9";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [3, 3000],
category: "sponsor",
}, {
segment: [3002, 3050],
category: "intro",
}, {
segment: [45, 100],
category: "interaction",
}, {
segment: [99, 170],
category: "sponsor",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const rows = await db.prepare("all", `SELECT "startTime", "endTime", "category" FROM "sponsorTimes" WHERE "videoID" = ? and "votes" > -1`, [videoID]);
2021-07-12 08:43:46 +02:00
const expected = [{
startTime: 3,
endTime: 3000,
category: "sponsor"
}, {
startTime: 3002,
endTime: 3050,
category: "intro"
}, {
startTime: 45,
endTime: 100,
category: "interaction"
}, {
startTime: 99,
endTime: 170,
category: "sponsor"
}];
assert.ok(arrayDeepEquals(rows, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
}).timeout(5000);
2021-09-23 05:18:31 +02:00
it("Should reject multiple times if total is over 80% of video (JSON method)", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "n9rIGdXnSJc";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [0, 2000],
category: "interaction",
}, {
segment: [3000, 4000],
category: "sponsor",
}, {
segment: [1500, 2750],
category: "sponsor",
}, {
segment: [4050, 4750],
category: "intro",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 403);
2021-09-17 02:44:12 +02:00
const rows = await db.prepare("all", `SELECT "startTime", "endTime", "category" FROM "sponsorTimes" WHERE "videoID" = ? and "votes" > -1`, [videoID]);
2021-07-12 08:43:46 +02:00
assert.deepStrictEqual(rows, []);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
}).timeout(5000);
2021-09-23 05:18:31 +02:00
it("Should reject multiple times if total is over 80% of video including previosuly submitted times(JSON method)", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "80percent_video";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [2000, 4000],
category: "sponsor",
}, {
segment: [1500, 2750],
category: "sponsor",
}, {
segment: [4050, 4750],
category: "sponsor",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(async res => {
assert.strictEqual(res.status, 403);
const expected = [{
category: "interaction",
startTime: 0,
endTime: 1000
2021-07-12 08:43:46 +02:00
}, {
category: "interaction",
startTime: 1001,
endTime: 1005
2021-07-12 08:43:46 +02:00
}, {
category: "interaction",
startTime: 0,
endTime: 5000
2021-07-12 08:43:46 +02:00
}];
const rows = await db.prepare("all", `SELECT "category", "startTime", "endTime" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
assert.ok(arrayDeepEquals(rows, expected));
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
}).timeout(5000);
2021-09-23 05:18:31 +02:00
it("Should be accepted if a non-sponsor is less than 1 second", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 30,
endTime: 30.5,
userID: submitUserTwo,
category: "intro"
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 200);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected if segment starts and ends at the same time", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 90,
endTime: 90,
userID: submitUserTwo,
category: "intro"
2021-04-05 05:12:26 +02:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2021-04-05 05:12:26 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be accepted if highlight segment starts and ends at the same time", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 30,
endTime: 30,
userID: submitUserTwo,
category: "poi_highlight"
2021-04-05 05:12:26 +02:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 200);
done();
})
.catch(err => done(err));
2021-04-05 05:12:26 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected if highlight segment doesn't start and end at the same time", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 30,
endTime: 30.5,
userID: submitUserTwo,
category: "poi_highlight"
2021-04-05 05:12:26 +02:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2021-04-05 05:12:26 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected if a sponsor is less than 1 second", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 30,
endTime: 30.5,
userID: submitUserTwo
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected if over 80% of the video", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 30,
endTime: 1000000,
userID: submitUserTwo,
category: "sponsor"
2021-09-17 02:44:12 +02:00
})
2021-09-23 05:18:31 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
assert.strictEqual(res.status, 403);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected if NB's predicted probability is <70%.", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "LevkAjUE6d4";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 40,
endTime: 60,
userID: submitUserTwo,
category: "sponsor"
2021-09-17 02:44:12 +02:00
})
2021-09-23 05:18:31 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
assert.strictEqual(res.status, 200);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected with custom message if user has to many active warnings", (done) => {
postSkipSegmentJSON({
userID: warnUser01,
videoID: warnVideoID,
segments: [{
segment: [0, 10],
category: "sponsor",
}],
2021-01-06 01:43:28 +01:00
})
2021-09-23 05:34:46 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
assert.strictEqual(res.status, 403);
2021-09-23 05:18:31 +02:00
const errorMessage = res.data;
2021-07-22 23:50:39 +02:00
const reason = "Reason01";
2021-07-25 20:34:55 +02:00
const expected = "Submission rejected due to a warning from a moderator. This means that we noticed you were making some common mistakes"
+ " that are not malicious, and we just want to clarify the rules. "
2021-08-29 20:58:12 +02:00
+ "Could you please send a message in discord.gg/SponsorBlock or matrix.to/#/#sponsor:ajay.app so we can further help you? "
2021-09-17 02:44:12 +02:00
+ `Your userID is ${warnUser01Hash}.\n\nWarning reason: '${reason}'`;
2021-07-25 20:34:55 +02:00
2021-07-22 23:50:39 +02:00
assert.strictEqual(errorMessage, expected);
2021-07-12 08:43:46 +02:00
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be accepted if user has some active warnings", (done) => {
postSkipSegmentJSON({
userID: warnUser02,
videoID: warnVideoID,
segments: [{
segment: [50, 60],
category: "sponsor",
}],
2021-01-24 18:45:13 +01:00
})
2021-09-23 05:18:31 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
if (res.status === 200) {
done(); // success
} else {
2021-09-23 05:18:31 +02:00
done(`Status code was ${res.status} ${res.data}`);
2021-07-12 08:43:46 +02:00
}
})
.catch(err => done(err));
2021-01-24 18:45:13 +01:00
});
2021-09-23 05:18:31 +02:00
it("Should be accepted if user has some warnings removed", (done) => {
postSkipSegmentJSON({
userID: warnUser03,
videoID: warnVideoID,
segments: [{
segment: [53, 60],
category: "sponsor",
}],
2021-01-06 01:43:28 +01:00
})
2021-09-23 05:18:31 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
if (res.status === 200) {
done(); // success
} else {
2021-09-23 05:18:31 +02:00
done(`Status code was ${res.status} ${res.data}`);
2021-07-12 08:43:46 +02:00
}
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 400 for missing params (Params method)", (done) => {
postSkipSegmentParam({
startTime: 9,
endTime: 10,
userID: submitUserOne
2021-01-06 01:43:28 +01:00
})
2021-09-23 05:18:31 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
if (res.status === 400) done();
else done(true);
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should be rejected with default message if user has to many active warnings", (done) => {
postSkipSegmentJSON({
userID: warnUser01,
videoID: warnVideoID,
segments: [{
segment: [0, 10],
category: "sponsor",
}],
2021-07-04 04:45:13 +02:00
})
2021-09-23 05:34:46 +02:00
.then(res => {
2021-07-12 08:43:46 +02:00
assert.strictEqual(res.status, 403);
2021-09-23 05:18:31 +02:00
const errorMessage = res.data;
2021-07-12 08:43:46 +02:00
assert.notStrictEqual(errorMessage, "");
done();
})
.catch(err => done(err));
2021-07-04 04:45:13 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 400 for missing params (JSON method) 1", (done) => {
postSkipSegmentJSON({
userID: submitUserOne,
segments: [{
segment: [9, 10],
category: "sponsor",
}, {
segment: [31, 60],
category: "intro",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 400 for missing params (JSON method) 2", (done) => {
postSkipSegmentJSON({
userID: submitUserOne,
videoID: badInputVideoID,
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 400 for missing params (JSON method) 3", (done) => {
postSkipSegmentJSON({
userID: submitUserOne,
videoID: badInputVideoID,
segments: [{
segment: [0],
category: "sponsor",
}, {
segment: [31, 60],
category: "intro",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 400 for missing params (JSON method) 4", (done) => {
postSkipSegmentJSON({
userID: submitUserOne,
videoID: badInputVideoID,
segments: [{
segment: [9, 10],
}, {
segment: [31, 60],
category: "intro",
}],
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 400 for missing params (JSON method) 5", (done) => {
postSkipSegmentJSON({
userID: submitUserOne,
videoID: badInputVideoID,
2021-01-06 01:43:28 +01:00
})
2021-07-12 08:43:46 +02:00
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
2020-10-17 20:56:54 +02:00
});
2021-09-23 05:18:31 +02:00
it("Should return 403 and custom reason for submiting in lockedCategory", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "lockedVideo";
2021-09-23 05:18:31 +02:00
db.prepare("run", `INSERT INTO "lockCategories" ("userID", "videoID", "category", "reason")
VALUES(?, ?, ?, ?)`, [getHash("VIPUser-lockCategories"), videoID, "sponsor", "Custom Reason"])
.then(() => postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [1, 10],
category: "sponsor",
}],
}))
.then(res => {
assert.strictEqual(res.status, 403);
assert.match(res.data, /Lock reason: /);
assert.match(res.data, /Custom Reason/);
done();
})
.catch(err => done(err));
});
2021-09-23 05:18:31 +02:00
it("Should return 403 for submiting in lockedCategory", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "lockedVideo1";
2021-09-23 05:18:31 +02:00
db.prepare("run", `INSERT INTO "lockCategories" ("userID", "videoID", "category", "reason")
VALUES(?, ?, ?, ?)`, [getHash("VIPUser-lockCategories"), videoID, "intro", ""])
.then(() => postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: [1, 10],
category: "intro",
}],
}))
.then(res => {
assert.strictEqual(res.status, 403);
assert.doesNotMatch(res.data, /Lock reason: /);
assert.doesNotMatch(res.data, /Custom Reason/);
done();
})
.catch(err => done(err));
});
2021-07-30 08:44:37 +02:00
2021-09-23 05:18:31 +02:00
it("Should be able to submit with custom user-agent 1", (done) => {
client({
url: endpoint,
2021-07-30 08:44:37 +02:00
method: "POST",
headers: {
"Content-Type": "application/json",
2021-08-01 08:57:02 +02:00
"User-Agent": "com.google.android.youtube/5.0"
2021-07-30 08:44:37 +02:00
},
2021-09-23 05:18:31 +02:00
data: {
2021-09-17 02:44:12 +02:00
userID: submitUserOne,
2021-07-30 08:44:37 +02:00
videoID: "userAgent-1",
segments: [{
segment: [0, 10],
category: "sponsor",
}],
2021-09-23 05:18:31 +02:00
}
2021-07-30 08:44:37 +02:00
})
.then(async res => {
assert.strictEqual(res.status, 200);
const row = await db.prepare("get", `SELECT "startTime", "endTime", "locked", "category", "userAgent" FROM "sponsorTimes" WHERE "videoID" = ?`, ["userAgent-1"]);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
userAgent: "Vanced/5.0",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-30 08:44:37 +02:00
done();
})
.catch(err => done(err));
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit with empty user-agent", (done) => {
client({
url: endpoint,
2021-07-30 08:44:37 +02:00
method: "POST",
2021-09-23 05:18:31 +02:00
data: {
2021-09-17 02:44:12 +02:00
userID: submitUserOne,
2021-08-01 08:57:02 +02:00
videoID: "userAgent-3",
2021-07-30 08:44:37 +02:00
segments: [{
segment: [0, 10],
category: "sponsor",
}],
2021-09-23 05:18:31 +02:00
userAgent: "",
}
2021-07-30 08:44:37 +02:00
})
.then(async res => {
assert.strictEqual(res.status, 200);
2021-08-01 08:57:02 +02:00
const row = await db.prepare("get", `SELECT "startTime", "endTime", "locked", "category", "userAgent" FROM "sponsorTimes" WHERE "videoID" = ?`, ["userAgent-3"]);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
userAgent: "",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-30 08:44:37 +02:00
done();
})
.catch(err => done(err));
});
2021-09-23 05:18:31 +02:00
it("Should be able to submit with custom userAgent in body", (done) => {
postSkipSegmentJSON({
userID: submitUserOne,
videoID: "userAgent-4",
segments: [{
segment: [0, 10],
category: "sponsor",
}],
userAgent: "MeaBot/5.0"
2021-07-30 08:44:37 +02:00
})
.then(async res => {
assert.strictEqual(res.status, 200);
2021-08-01 08:57:02 +02:00
const row = await db.prepare("get", `SELECT "startTime", "endTime", "locked", "category", "userAgent" FROM "sponsorTimes" WHERE "videoID" = ?`, ["userAgent-4"]);
2021-08-03 06:19:37 +02:00
const expected = {
startTime: 0,
endTime: 10,
userAgent: "MeaBot/5.0",
};
assert.ok(partialDeepEquals(row, expected));
2021-07-30 08:44:37 +02:00
done();
})
.catch(err => done(err));
});
2021-08-11 05:12:20 +02:00
2021-09-23 05:18:31 +02:00
it("Should be able to submit with commas in timestamps", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "commas-1";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: ["0,2", "10,392"],
category: "sponsor",
}]
2021-08-11 05:12:20 +02:00
})
.then(async res => {
assert.strictEqual(res.status, 200);
2021-09-17 02:44:12 +02:00
const row = await queryDatabase(videoID);
2021-08-11 05:12:20 +02:00
const expected = {
startTime: 0.2,
endTime: 10.392
};
assert.ok(partialDeepEquals(row, expected));
done();
})
.catch(err => done(err));
});
2021-08-27 22:44:29 +02:00
2021-09-23 05:18:31 +02:00
it("Should be rejected if a POI is at less than 1 second", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "qqwerty";
2021-09-23 05:18:31 +02:00
postSkipSegmentParam({
videoID,
startTime: 0.5,
endTime: 0.5,
category: "poi_highlight",
userID: submitUserTwo
2021-08-27 22:44:29 +02:00
})
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
});
2021-09-23 05:18:31 +02:00
it("Should not be able to submit with colons in timestamps", (done) => {
2021-09-17 02:44:12 +02:00
const videoID = "colon-1";
2021-09-23 05:18:31 +02:00
postSkipSegmentJSON({
userID: submitUserOne,
videoID,
segments: [{
segment: ["0:2.000", "3:10.392"],
category: "sponsor",
}]
})
.then(res => {
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));
});
2021-10-30 23:58:17 +02:00
it("Should automatically shadowban segments if user is banned", (done) => {
const videoID = shadowBanVideoID;
postSkipSegmentParam({
videoID,
startTime: 0,
endTime: 10,
category: "sponsor",
userID: banUser01
})
.then(async res => {
assert.strictEqual(res.status, 200);
const row = await db.prepare("get", `SELECT "startTime", "endTime", "shadowHidden", "userID" FROM "sponsorTimes" WHERE "videoID" = ?`, [videoID]);
const expected = {
startTime: 0,
endTime: 10,
shadowHidden: 1,
userID: banUser01Hash
};
assert.deepStrictEqual(row, expected);
done();
})
.catch(err => done(err));
});
2020-10-17 20:56:54 +02:00
});