mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-22 04:03:21 +03:00
Added additional categorization tests
This commit is contained in:
@@ -441,11 +441,34 @@ describe('Multi User', async function() {
|
|||||||
describe('Downloader', function() {
|
describe('Downloader', function() {
|
||||||
const downloader_api = require('../downloader');
|
const downloader_api = require('../downloader');
|
||||||
const url = 'https://www.youtube.com/watch?v=hpigjnKl7nI';
|
const url = 'https://www.youtube.com/watch?v=hpigjnKl7nI';
|
||||||
|
const playlist_url = 'https://www.youtube.com/playlist?list=PLbZT16X07RLhqK-ZgSkRuUyiz9B_WLdNK';
|
||||||
const sub_id = 'dc834388-3454-41bf-a618-e11cb8c7de1c';
|
const sub_id = 'dc834388-3454-41bf-a618-e11cb8c7de1c';
|
||||||
const options = {
|
const options = {
|
||||||
ui_uid: uuid()
|
ui_uid: uuid()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function createCategory(url) {
|
||||||
|
// get info
|
||||||
|
const args = await downloader_api.generateArgs(url, 'video', options, null, true);
|
||||||
|
const [info] = await downloader_api.getVideoInfoByURL(url, args);
|
||||||
|
|
||||||
|
// create category
|
||||||
|
await db_api.removeAllRecords('categories');
|
||||||
|
const new_category = {
|
||||||
|
name: 'test_category',
|
||||||
|
uid: uuid(),
|
||||||
|
rules: [],
|
||||||
|
custom_output: ''
|
||||||
|
};
|
||||||
|
await db_api.insertRecordIntoTable('categories', new_category);
|
||||||
|
await db_api.pushToRecordsArray('categories', {name: 'test_category'}, 'rules', {
|
||||||
|
preceding_operator: null,
|
||||||
|
comparator: 'includes',
|
||||||
|
property: 'title',
|
||||||
|
value: info['title']
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
before(async function() {
|
before(async function() {
|
||||||
const update_available = await youtubedl_api.checkForYoutubeDLUpdate();
|
const update_available = await youtubedl_api.checkForYoutubeDLUpdate();
|
||||||
if (update_available) await youtubedl_api.updateYoutubeDL(update_available);
|
if (update_available) await youtubedl_api.updateYoutubeDL(update_available);
|
||||||
@@ -455,6 +478,7 @@ describe('Downloader', function() {
|
|||||||
beforeEach(async function() {
|
beforeEach(async function() {
|
||||||
// await db_api.connectToDB();
|
// await db_api.connectToDB();
|
||||||
await db_api.removeAllRecords('download_queue');
|
await db_api.removeAllRecords('download_queue');
|
||||||
|
config_api.setConfigItem('ytdl_allow_playlist_categorization', true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Get file info', async function() {
|
it('Get file info', async function() {
|
||||||
@@ -480,6 +504,32 @@ describe('Downloader', function() {
|
|||||||
assert(success);
|
assert(success);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('Downloader - categorize', async function() {
|
||||||
|
this.timeout(300000);
|
||||||
|
await createCategory(url);
|
||||||
|
// collect info
|
||||||
|
const returned_download = await downloader_api.createDownload(url, 'video', options);
|
||||||
|
await downloader_api.collectInfo(returned_download['uid']);
|
||||||
|
assert(returned_download['category']);
|
||||||
|
assert(returned_download['category']['name'] === 'test_category');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Downloader - categorize playlist', async function() {
|
||||||
|
this.timeout(300000);
|
||||||
|
await createCategory(playlist_url);
|
||||||
|
// collect info
|
||||||
|
const returned_download_pass = await downloader_api.createDownload(playlist_url, 'video', options);
|
||||||
|
await downloader_api.collectInfo(returned_download_pass['uid']);
|
||||||
|
assert(returned_download_pass['category']);
|
||||||
|
assert(returned_download_pass['category']['name'] === 'test_category');
|
||||||
|
|
||||||
|
// test with playlist categorization disabled
|
||||||
|
config_api.setConfigItem('ytdl_allow_playlist_categorization', false);
|
||||||
|
const returned_download_fail = await downloader_api.createDownload(playlist_url, 'video', options);
|
||||||
|
await downloader_api.collectInfo(returned_download_fail['uid']);
|
||||||
|
assert(!returned_download_fail['category']);
|
||||||
|
});
|
||||||
|
|
||||||
it('Tag file', async function() {
|
it('Tag file', async function() {
|
||||||
const success = await generateEmptyAudioFile('test/sample_mp3.mp3');
|
const success = await generateEmptyAudioFile('test/sample_mp3.mp3');
|
||||||
const audio_path = './test/sample_mp3.mp3';
|
const audio_path = './test/sample_mp3.mp3';
|
||||||
|
|||||||
Reference in New Issue
Block a user