mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
57 lines
2.3 KiB
TypeScript
57 lines
2.3 KiB
TypeScript
import fetch from 'node-fetch';
|
|
import {Done, getbaseURL} from '../utils';
|
|
import {db} from '../../src/databases/databases';
|
|
|
|
|
|
describe('postVideoSponsorTime (Old submission method)', () => {
|
|
it('Should be able to submit a time (GET)', (done: Done) => {
|
|
fetch(getbaseURL()
|
|
+ "/api/postVideoSponsorTimes?videoID=dQw4w9WgXcQ&startTime=1&endTime=10&userID=test")
|
|
.then(async res => {
|
|
if (res.status === 200) {
|
|
const row = await db.prepare('get', `SELECT "startTime", "endTime", "category" FROM "sponsorTimes" WHERE "videoID" = ?`, ["dQw4w9WgXcQ"]);
|
|
if (row.startTime === 1 && row.endTime === 10 && row.category === "sponsor") {
|
|
done();
|
|
} else {
|
|
done("Submitted times were not saved. Actual submission: " + JSON.stringify(row));
|
|
}
|
|
} else {
|
|
done("Status code was " + res.status);
|
|
}
|
|
})
|
|
.catch(err => done(err));
|
|
});
|
|
|
|
it('Should be able to submit a time (POST)', (done: Done) => {
|
|
fetch(getbaseURL()
|
|
+ "/api/postVideoSponsorTimes?videoID=dQw4w9WgXcE&startTime=1&endTime=11&userID=test", {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
.then(async res => {
|
|
if (res.status === 200) {
|
|
const row = await db.prepare('get', `SELECT "startTime", "endTime", "category" FROM "sponsorTimes" WHERE "videoID" = ?`, ["dQw4w9WgXcE"]);
|
|
if (row.startTime === 1 && row.endTime === 11 && row.category === "sponsor") {
|
|
done();
|
|
} else {
|
|
done("Submitted times were not saved. Actual submission: " + JSON.stringify(row));
|
|
}
|
|
} else {
|
|
done("Status code was " + res.status);
|
|
}
|
|
})
|
|
.catch(err => done(err));
|
|
});
|
|
|
|
it('Should return 400 for missing params', (done: Done) => {
|
|
fetch(getbaseURL()
|
|
+ "/api/postVideoSponsorTimes?startTime=1&endTime=10&userID=test")
|
|
.then(async res => {
|
|
if (res.status === 400) done();
|
|
else done("Status code was: " + res.status);
|
|
})
|
|
.catch(err => done(err));
|
|
});
|
|
});
|