socialblade-data
Version:
A node.js module for getting data from socialblade.
53 lines (38 loc) • 1.54 kB
text/coffeescript
should = require 'should'
Socialblade = require '../lib/Socialblade'
describe 'Socialblade', ->
describe '.loadChannelData(...)', ->
it 'should be done', (done) ->
channelId = 'sment'
Socialblade.loadChannelData channelId, (err, data) ->
should.not.exist err
should.exist data
data.dailySubscribersGained.should.not.be.empty
data.totalSubscribers.should.not.be.empty
data.dailyVideoViews.should.not.be.empty
data.totalVideoViews.should.not.be.empty
data.dailyChannelViews.should.not.be.empty
data.totalChannelViews.should.not.be.empty
data.avarageViewsPerDayPerMonth.should.not.be.empty
data.totalViewsPerDayPerMonth.should.not.be.empty
Object.keys(data.byDate).length.should.equal data.totalSubscribers.length
done()
it 'should be null', (done) ->
channelId = 'jamiroquaie'
Socialblade.loadChannelData channelId, (err, data) ->
should.not.exist err
should.not.exist data
done()
describe '.getPartnerIdByVideoId(...)', ->
it 'should be done', (done) ->
videoId = 'vqsthBOE1Dc'
Socialblade.getPartnerIdByVideoId videoId, (err, data) ->
should.not.exist err
should.exist data
done()
it 'should be done', (done) ->
videoId = 'hEQNz3Rdst0'
Socialblade.getPartnerIdByVideoId videoId, (err, data) ->
should.not.exist err
should.not.exist data
done()