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