UNPKG

qobuz

Version:

Qobuz client library for Node.js

46 lines (36 loc) 1.68 kB
'use strict'; const chai = require('chai'); const chaiAsPromised = require('chai-as-promised'); const sinon = require('sinon'); const request = require('request'); const Qobuz = require('../../../lib'); chai.should(); chai.use(chaiAsPromised); describe('Qobuz', function () { const appId = '100000000'; describe('Catalog', function () { describe('Search', function () { it('should throw an error for undefined query', function (done) { const client = new Qobuz(appId); client.catalog.search().should.be.rejectedWith('search() requires a query.').and.notify(done); }); it('should throw an error for invalid type', function (done) { const client = new Qobuz(appId); client.catalog.search('Thriller', 'invalid').should.be.rejectedWith('search() type argument is invalid. Available types are: tracks, albums, artists, playlists.').and.notify(done); }); it('should return the search results and their tracks in JSON', function (done) { const client = new Qobuz(appId); const expected = require('./search.json'); const stub = sinon.stub(request, 'get').callsFake((options, callback) => callback(null, { statusCode: 200 }, expected)); client.catalog.search('Thriller', 'tracks', 2).should.eventually.deep.equal(expected).and.notify((err) => { stub.restore(); stub.should.have.been.calledWith({ uri: 'http://www.qobuz.com/api.json/0.2/catalog/search?app_id=100000000&query=Thriller&type=tracks&limit=2', json: true }); done(err); }); }); }); }); });