more edge cast test cases

- check for null instead of 0 #267
- check that parameter specifying multiple overrides repeating parameters
This commit is contained in:
Michael C
2021-06-24 01:37:51 -04:00
parent 1570657e28
commit ae8a25e481
3 changed files with 48 additions and 0 deletions

View File

@@ -292,4 +292,21 @@ describe('getSkipSegments', () => {
})
.catch(err => ("Couldn't call endpoint"));
});
it('Should be able to get, categories param overriding repeating category', (done: Done) => {
fetch(getbaseURL() + "/api/skipSegments?videoID=testtesttest&categories=[\"sponsor\"]&category=intro")
.then(async res => {
if (res.status !== 200) done("Status code was: " + res.status);
else {
const data = await res.json();
if (data.length === 1 && data[0].segment[0] === 1 && data[0].segment[1] === 11
&& data[0].category === "sponsor" && data[0].UUID === "1-uuid-0") {
done();
} else {
done("Received incorrect body: " + (await res.text()));
}
}
})
.catch(err => ("Couldn't call endpoint"));
});
});