Path: blob/master/node_modules/@bochilteam/scraper/lib/cjs/social-media/test.js
1126 views
"use strict";1Object.defineProperty(exports, "__esModule", { value: true });2const chai_1 = require("chai");3const index_js_1 = require("./index.js");4describe('Social media', () => {5describe('Tiktok scraper', function () {6it('tiktokdl', function (done) {7(0, index_js_1.tiktokdl)('https://www.tiktok.com/@omagadsus/video/7025456384175017243?is_from_webapp=1&sender_device=pc&web_id6982004129280116226').then(function (res) {8(0, chai_1.expect)(res).to.be.an('object');9(0, chai_1.expect)(res.author).to.be.an('object');10(0, chai_1.expect)(res.author.nickname).to.be.a('string');11(0, chai_1.expect)(res.description).to.be.a('string');12(0, chai_1.expect)(res.video).to.be.an('object');13(0, chai_1.expect)(res.video.no_watermark).to.be.a('string');14(0, chai_1.expect)(res.video.no_watermark2).to.be.a('string');15(0, chai_1.expect)(res.video.no_watermark_raw).to.be.a('string');16return done();17}).catch(done);18});19it('tiktokdl v2', function (done) {20(0, index_js_1.tiktokdlv2)('https://www.tiktok.com/@omagadsus/video/7025456384175017243?is_from_webapp=1&sender_device=pc&web_id6982004129280116226').then(function (res) {21(0, chai_1.expect)(res).to.be.an('object');22(0, chai_1.expect)(res.author).to.be.an('object');23(0, chai_1.expect)(res.author.unique_id).to.be.a('string');24(0, chai_1.expect)(res.author.nickname).to.be.a('string');25(0, chai_1.expect)(res.author.avatar).to.be.a('string');26(0, chai_1.expect)(res.video).to.be.an('object');27(0, chai_1.expect)(res.video.no_watermark).to.be.a('string');28(0, chai_1.expect)(res.video.no_watermark_hd).to.be.a('string');29return done();30}).catch(done);31});32it('tiktokdl v3', function (done) {33(0, index_js_1.tiktokdlv3)('https://www.tiktok.com/@omagadsus/video/7025456384175017243?is_from_webapp=1&sender_device=pc&web_id6982004129280116226').then(function (res) {34(0, chai_1.expect)(res).to.be.an('object');35(0, chai_1.expect)(res.author).to.be.an('object');36(0, chai_1.expect)(res.author.nickname).to.be.a('string');37(0, chai_1.expect)(res.author.avatar).to.be.a('string');38(0, chai_1.expect)(res.description).to.be.a('string');39(0, chai_1.expect)(res.video).to.be.an('object');40(0, chai_1.expect)(res.video.no_watermark).to.be.a('string');41(0, chai_1.expect)(res.video.no_watermark2).to.be.a('string');42(0, chai_1.expect)(res.music).to.be.a('string');43return done();44}).catch(done);45});46// it('tiktokfyp', function (done) {47// tiktokfyp().then(function (res) {48// expect(res).to.be.an('array')49// expect(res.length).to.be.above(0)50// return done()51// }).catch(done)52// })53// it('tiktokstalk', function (done) {54// tiktokstalk('Tiktok').then(function (res) {55// expect(res).to.be.an('object')56// // expect(res.username).to.be.a('string')57// // expect(res.profile).to.be.a('string')58// // expect(res.avatar).to.be.a('string')59// // expect(res.verified).to.be.a('boolean') Github action error!60// // expect(res.following).to.be.a('string')61// // expect(res.followers).to.be.a('string')62// // expect(res.likes).to.be.a('string')63// // expect(res.description).to.be.a('string')64// return done()65// }).catch(done)66// })67});68describe('Instagram', () => {69it('Instagram Downloader', done => {70// https://www.instagram.com/p/CaHpoweBjmx/?utm_source=ig_web_copy_link71(0, index_js_1.instagramdl)('https://www.instagram.com/reel/CXK49yFLtJ_/?utm_source=ig_web_copy_link').then(res => {72(0, chai_1.expect)(res).to.be.an('array');73(0, chai_1.expect)(res).to.have.lengthOf.at.least(1);74res.forEach(({ thumbnail, url }) => {75(0, chai_1.expect)(thumbnail).to.be.a('string');76(0, chai_1.expect)(url).to.be.a('string');77});78return done();79}).catch(done);80});81it('Instagram Downloader V2', done => {82(0, index_js_1.instagramdlv2)('https://www.instagram.com/reel/CXK49yFLtJ_/?utm_source=ig_web_copy_link').then(res => {83(0, chai_1.expect)(res).to.be.an('array');84(0, chai_1.expect)(res).to.have.lengthOf.at.least(1);85res.forEach(({ thumbnail, url }) => {86(0, chai_1.expect)(thumbnail).to.be.a('string');87(0, chai_1.expect)(url).to.be.a('string');88});89return done();90}).catch(done);91});92it('Instagram Downloader V3', done => {93(0, index_js_1.instagramdlv3)('https://www.instagram.com/reel/CXK49yFLtJ_/?utm_source=ig_web_copy_link').then(res => {94(0, chai_1.expect)(res).to.be.an('array');95(0, chai_1.expect)(res).to.have.lengthOf.at.least(1);96res.forEach(({ thumbnail, url }) => {97(0, chai_1.expect)(thumbnail).to.be.a('string');98(0, chai_1.expect)(url).to.be.a('string');99});100return done();101}).catch(done);102});103it('Instagram Downloader V4', done => {104(0, index_js_1.instagramdlv4)('https://www.instagram.com/reel/CXK49yFLtJ_/?utm_source=ig_web_copy_link').then(res => {105(0, chai_1.expect)(res).to.be.an('array');106(0, chai_1.expect)(res).to.have.lengthOf.at.least(1);107res.forEach(({ thumbnail, url }) => {108(0, chai_1.expect)(thumbnail).to.be.a('string');109(0, chai_1.expect)(url).to.be.a('string');110});111return done();112}).catch(done);113});114it('Instagram Story', function (done) {115(0, index_js_1.instagramStory)('raffinagita1717').then(res => {116(0, chai_1.expect)(res).to.be.an('object');117(0, chai_1.expect)(res.user).to.be.an('object');118(0, chai_1.expect)(res.results).to.be.an('array');119(0, chai_1.expect)(res.results).to.have.lengthOf.at.least(1);120res.results.forEach(({ thumbnail, url, type, isVideo }) => {121(0, chai_1.expect)(thumbnail).to.be.a('string');122(0, chai_1.expect)(url).to.be.a('string');123(0, chai_1.expect)(type).to.be.a('string');124(0, chai_1.expect)(isVideo).to.be.a('boolean');125});126return done();127}).catch(done);128});129it('Instagram Story V2', function (done) {130(0, index_js_1.instagramStoryv2)('raffinagita1717').then(res => {131(0, chai_1.expect)(res).to.be.an('object');132(0, chai_1.expect)(res.user).to.be.an('object');133(0, chai_1.expect)(res.results).to.be.an('array');134(0, chai_1.expect)(res.results).to.have.lengthOf.at.least(1);135res.results.forEach(({ thumbnail, isVideo, url }) => {136(0, chai_1.expect)(thumbnail).to.be.a('string');137(0, chai_1.expect)(isVideo).to.be.a('boolean');138(0, chai_1.expect)(url).to.be.a('string');139});140return done();141}).catch(done);142});143it('Instagram Stalk', done => {144(0, index_js_1.instagramStalk)('freefirebgid').then(res => {145(0, chai_1.expect)(res).to.be.an('object');146(0, chai_1.expect)(res.name).to.be.a('string');147(0, chai_1.expect)(res.username).to.be.a('string');148(0, chai_1.expect)(res.description).to.be.a('string');149(0, chai_1.expect)(res.postsH).to.be.a('string');150(0, chai_1.expect)(res.posts).to.be.a('number');151(0, chai_1.expect)(res.followersH).to.be.a('string');152(0, chai_1.expect)(res.followers).to.be.a('number');153(0, chai_1.expect)(res.followingH).to.be.a('string');154(0, chai_1.expect)(res.following).to.be.a('number');155return done();156}).catch(done);157});158});159describe('Facebook (Metaverse :V)', function () {160it('Facebook Downloader', done => {161(0, index_js_1.facebookdl)('https://fb.watch/9WktuN9j-z/').then(res => {162(0, chai_1.expect)(res).to.be.an('object');163(0, chai_1.expect)(res.id).to.be.a('string');164(0, chai_1.expect)(res.thumbnail).to.be.a('string');165(0, chai_1.expect)(res.duration).to.be.a('number');166(0, chai_1.expect)(res.result).to.be.an('array');167(0, chai_1.expect)(res.result).to.have.lengthOf.at.least(1);168res.result.forEach(({ ext, url, isVideo, isAudio }) => {169(0, chai_1.expect)(ext).to.be.a('string');170(0, chai_1.expect)(url).to.be.a('string');171(0, chai_1.expect)(isVideo).to.be.a('boolean');172(0, chai_1.expect)(isAudio).to.be.a('boolean');173});174return done();175}).catch(done);176});177it('Facebook Downloader V2', done => {178(0, index_js_1.facebookdlv2)('https://fb.watch/9WktuN9j-z/').then(res => {179(0, chai_1.expect)(res).to.be.an('object');180(0, chai_1.expect)(res.id).to.be.a('string');181(0, chai_1.expect)(res.title).to.be.a('string');182(0, chai_1.expect)(res.description).to.be.a('string');183(0, chai_1.expect)(res.thumbnail).to.be.a('string');184(0, chai_1.expect)(res.result).to.be.an('array');185(0, chai_1.expect)(res.result).to.have.lengthOf.at.least(1);186res.result.forEach(({ quality, url }) => {187(0, chai_1.expect)(quality).to.be.a('string');188(0, chai_1.expect)(url).to.be.a('string');189});190return done();191}).catch(done);192});193it('Facebook Downloader V3', done => {194(0, index_js_1.facebookdlv3)('https://fb.watch/9WktuN9j-z/').then(res => {195(0, chai_1.expect)(res).to.be.an('object');196(0, chai_1.expect)(res.title).to.be.a('string');197(0, chai_1.expect)(res.thumbnail).to.be.a('string');198(0, chai_1.expect)(res.result).to.be.an('array');199(0, chai_1.expect)(res.result).to.have.lengthOf.at.least(1);200res.result.forEach(({ url, quality, isAudio, isVideo }) => {201(0, chai_1.expect)(url).to.be.a('string');202(0, chai_1.expect)(quality).to.be.a('string');203(0, chai_1.expect)(isAudio).to.be.a('boolean');204(0, chai_1.expect)(isVideo).to.be.a('boolean');205});206return done();207}).catch(done);208});209});210describe('Twitter', () => {211it('Twitter Downloader', done => {212(0, index_js_1.twitterdl)('https://twitter.com/jen_degen/status/1458167531869458440?s=20').then(res => {213(0, chai_1.expect)(res).to.be.an('array');214res.forEach(({ quality, type, url, isVideo }) => {215(0, chai_1.expect)(quality).to.be.a('string');216(0, chai_1.expect)(type).to.be.a('string');217(0, chai_1.expect)(url).to.be.a('string');218(0, chai_1.expect)(isVideo).to.be.a('boolean');219});220return done();221}).catch(done);222});223it('Twitter Downloader V2', done => {224(0, index_js_1.twitterdlv2)('https://twitter.com/jen_degen/status/1458167531869458440?s=20').then(res => {225(0, chai_1.expect)(res).to.be.an('array');226res.forEach(({ quality, type, url }) => {227(0, chai_1.expect)(quality).to.be.a('string');228(0, chai_1.expect)(type).to.be.a('string');229(0, chai_1.expect)(url).to.be.a('string');230});231return done();232}).catch(done);233});234});235describe('Youtube', function () {236it('Youtube Downloader', done => {237(0, index_js_1.youtubedl)('https://youtu.be/iik25wqIuFo').then(res => {238res.video['360p'].download().catch(done);239(0, chai_1.expect)(res).to.be.an('object');240(0, chai_1.expect)(res.thumbnail).to.be.a('string');241(0, chai_1.expect)(res.title).to.be.a('string');242(0, chai_1.expect)(res.video).to.be.an('object');243(0, chai_1.expect)(res.audio).to.be.an('object');244return done();245}).catch(done);246});247it('Youtube Downloader v2', done => {248(0, index_js_1.youtubedlv2)('https://youtu.be/iik25wqIuFo').then(res => {249res.video['240p'].download().catch(done);250(0, chai_1.expect)(res).to.be.an('object');251(0, chai_1.expect)(res.thumbnail).to.be.a('string');252(0, chai_1.expect)(res.title).to.be.a('string');253(0, chai_1.expect)(res.video).to.be.an('object');254(0, chai_1.expect)(res.audio).to.be.an('object');255return done();256}).catch(done);257});258it('Youtube Downloader v3', done => {259(0, index_js_1.youtubedlv3)('https://youtu.be/iik25wqIuFo').then(res => {260res.video['360'].download().catch(done);261(0, chai_1.expect)(res).to.be.an('object');262(0, chai_1.expect)(res.thumbnail).to.be.a('string');263(0, chai_1.expect)(res.title).to.be.a('string');264(0, chai_1.expect)(res.video).to.be.an('object');265(0, chai_1.expect)(res.audio).to.be.an('object');266return done();267}).catch(done);268});269it('Youtube Search', done => {270(0, index_js_1.youtubeSearch)('Minecraft').then(res => {271(0, chai_1.expect)(res).to.be.an('object');272(0, chai_1.expect)(res.video).to.be.an('array');273(0, chai_1.expect)(res.video).to.have.lengthOf.at.least(1);274(0, chai_1.expect)(res.channel).to.be.an('array');275(0, chai_1.expect)(res.playlist).to.be.an('array');276return done();277}).catch(done);278});279});280it('Google It', done => {281(0, index_js_1.googleIt)('Minecraft').then(res => {282(0, chai_1.expect)(res).to.be.an('object');283(0, chai_1.expect)(res.info).to.be.an('object');284(0, chai_1.expect)(res.articles).to.be.an('array');285(0, chai_1.expect)(res.articles).to.have.lengthOf.at.least(1);286return done();287}).catch(done);288});289it('Group Whatsapp', done => {290(0, index_js_1.groupWA)('A').then(res => {291(0, chai_1.expect)(res).to.be.an('array');292(0, chai_1.expect)(res).to.have.lengthOf.at.least(1);293res.forEach(({ url, subject }) => {294(0, chai_1.expect)(url).to.be.a('string');295(0, chai_1.expect)(subject).to.be.a('string');296});297return done();298}).catch(done);299});300describe('aiovideodl', () => {301it('Tiktok download', done => {302(0, index_js_1.aiovideodl)('https://www.tiktok.com/@omagadsus/video/7025456384175017243?is_from_webapp=1&sender_device=pc&web_id6982004129280116226').then(res => {303(0, chai_1.expect)(res).to.be.an('object');304(0, chai_1.expect)(res.medias).to.be.an('array');305(0, chai_1.expect)(res.medias).to.have.lengthOf.at.least(1);306(0, chai_1.expect)(res.source).to.be.eq('tiktok');307return done();308}).catch(done);309});310it('Facebook download', done => {311(0, index_js_1.aiovideodl)('https://fb.watch/9WktuN9j-z/').then(res => {312(0, chai_1.expect)(res).to.be.an('object');313(0, chai_1.expect)(res.medias).to.be.an('array');314(0, chai_1.expect)(res.medias).to.have.lengthOf.at.least(1);315(0, chai_1.expect)(res.source).to.be.eq('facebook');316return done();317}).catch(done);318});319it('Twitter download', done => {320(0, index_js_1.aiovideodl)('https://twitter.com/jen_degen/status/1458167531869458440?s=20').then(res => {321(0, chai_1.expect)(res).to.be.an('object');322(0, chai_1.expect)(res.medias).to.be.an('array');323(0, chai_1.expect)(res.medias).to.have.lengthOf.at.least(1);324(0, chai_1.expect)(res.source).to.be.eq('twitter');325return done();326}).catch(done);327});328});329describe('Savefrom', () => {330it('Tiktok download', done => {331(0, index_js_1.savefrom)('https://www.tiktok.com/@omagadsus/video/7025456384175017243?is_from_webapp=1&sender_device=pc&web_id6982004129280116226').then(res => {332(0, chai_1.expect)(res).to.be.an('object');333(0, chai_1.expect)(res.url).to.be.an('array');334(0, chai_1.expect)(res.url).to.have.lengthOf.at.least(1);335(0, chai_1.expect)(res.hosting).to.be.eq('tiktok.com');336return done();337}).catch(done);338});339it('Facebook download', done => {340(0, index_js_1.savefrom)('https://fb.watch/9WktuN9j-z/').then(res => {341(0, chai_1.expect)(res).to.be.an('object');342(0, chai_1.expect)(res.url).to.be.an('array');343(0, chai_1.expect)(res.url).to.have.lengthOf.at.least(1);344(0, chai_1.expect)(res.hosting).to.be.eq('facebook.com');345return done();346}).catch(done);347});348it('Twitter download', done => {349(0, index_js_1.savefrom)('https://twitter.com/jen_degen/status/1458167531869458440?s=20').then(res => {350(0, chai_1.expect)(res).to.be.an('object');351(0, chai_1.expect)(res.url).to.be.an('array');352(0, chai_1.expect)(res.url).to.have.lengthOf.at.least(1);353(0, chai_1.expect)(res.hosting).to.be.eq('twitter.com');354return done();355}).catch(done);356});357it('Instagram download', done => {358(0, index_js_1.savefrom)('https://www.instagram.com/reel/CXK49yFLtJ_/?utm_source=ig_web_copy_link').then(res => {359(0, chai_1.expect)(res).to.be.an('object');360(0, chai_1.expect)(res.url).to.be.an('array');361(0, chai_1.expect)(res.url).to.have.lengthOf.at.least(1);362(0, chai_1.expect)(res.hosting).to.be.eq('instagram.com');363return done();364}).catch(done);365});366});367});368//# sourceMappingURL=test.js.map369370