Jamstash/app/subsonic/subsonic_test.js
Hyzual 9c8c8cf6a8 Refactor getAlbumListBy()
- subsonic-service no longer computes the offset, it gets it as an int param and uses it.
- subsonic-controller is now in charge of computing the offset given a 'prev', 'next' or undefined param. It no longer allows the offset to go in the negatives, which made no sense.
- subsonic-controller's scope's AutoAlbums array is now a map indexed by the type of auto-album. It also contains each item's offset so we no longer share the offset between auto-albums, which avoids weird behaviours.
- Plus some minor code style fixes.
2015-07-07 22:09:12 +02:00

1016 lines
46 KiB
JavaScript

describe("Subsonic controller", function() {
'use strict';
var scope, $rootScope, $controller, $window,
_, subsonic, notifications, player, utils, persistence, breadcrumbs, mockGlobals, controllerParams, deferred;
beforeEach(function() {
jasmine.addCustomEqualityTester(angular.equals);
module('jamstash.subsonic.controller');
inject(function (_$controller_, _$rootScope_, map, $q, lodash) {
$rootScope = _$rootScope_;
scope = $rootScope.$new();
deferred = $q.defer();
_ = lodash;
$window = jasmine.createSpyObj("$window", [
"prompt",
"confirm"
]);
notifications = jasmine.createSpyObj("notifications", ["updateMessage"]);
utils = jasmine.createSpyObj("utils", ["getValue"]);
persistence = jasmine.createSpyObj("persistence", [
"getSelectedMusicFolder",
"saveSelectedMusicFolder",
"deleteSelectedMusicFolder"
]);
breadcrumbs = jasmine.createSpyObj("breadcrumbs", [
"reset",
"push"
]);
breadcrumbs.reset.and.returnValue(breadcrumbs);
mockGlobals = {
settings: {
AutoAlbumSize: 3,
DefaultAlbumSort: {
id: "default",
name: "Default Sort"
}
}
};
// Mock the subsonic service
subsonic = jasmine.createSpyObj("subsonic", [
"deletePlaylist",
"getAlbums",
"getAlbumListBy",
"getArtists",
"getGenres",
"getMusicFolders",
"getPlaylist",
"getPlaylists",
"getPodcast",
"getPodcasts",
"getRandomSongs",
"getRandomStarredSongs",
"getSongs",
"newPlaylist",
"recursiveGetSongs",
"savePlaylist",
"search"
]);
// We make them return different promises and use our deferred variable only when testing
// a particular function, so that they stay isolated
_.forIn(subsonic, _.method('and.returnValue', $q.defer().promise));
subsonic.showIndex = false;
// Mock the player service
player = jasmine.createSpyObj("player", [
"emptyQueue",
"addSong",
"addSongs",
"play",
"playFirstSong"
]);
_.forIn(player, _.method('and.returnValue', player));
player.queue = [];
$controller = _$controller_;
controllerParams = {
$scope: scope,
$rootScope: $rootScope,
$routeParams: {},
$window: $window,
utils: utils,
globals: mockGlobals,
map: map,
subsonic: subsonic,
notifications: notifications,
player: player,
persistence: persistence,
breadcrumbs: breadcrumbs
};
});
});
describe("", function() {
beforeEach(function() {
$controller('SubsonicController', controllerParams);
scope.selectedPlaylist = null;
scope.$apply();
});
describe("getSongs -", function() {
beforeEach(function() {
subsonic.getSongs.and.returnValue(deferred.promise);
subsonic.recursiveGetSongs.and.returnValue(deferred.promise);
spyOn(scope, "requestSongs").and.returnValue(deferred.promise);
});
it("Given a music directory that contained 3 songs and given its id and name, when I display it, then subsonic-service will be called, the breadcrumbs will be updated and the songs will be published to the scope", function() {
scope.getSongs('display', 87, 'Covetous Dadayag', "root");
deferred.resolve({
directories: [],
songs: [
{ id: 660 },
{ id: 859 },
{ id: 545 }
]
});
scope.$apply();
expect(subsonic.getSongs).toHaveBeenCalledWith(87);
expect(scope.album).toEqual([]);
expect(scope.song).toEqual([
{ id: 660 },
{ id: 859 },
{ id: 545 }
]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(breadcrumbs.push).toHaveBeenCalledWith({
id: 87,
name: "Covetous Dadayag"
});
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBe(87);
expect(scope.selectedAutoPlaylist).toBeNull();
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBeNull();
});
it("Given that there was a previous level in the breadcrumbs, when I display a music directory, then the album breadcrumb will be added", function() {
scope.BreadCrumbs = [
{
type: 'artist',
id: 73,
name: 'Evan Mestanza'
}
];
scope.getSongs('display', 883, 'Pitiedly preutilizable', "forward");
deferred.resolve({
directories: [],
songs: []
});
scope.$apply();
expect(breadcrumbs.reset).not.toHaveBeenCalled();
expect(breadcrumbs.push).toHaveBeenCalledWith({
id: 883,
name: "Pitiedly preutilizable"
});
});
it("Given a music directory that contained 2 songs and 1 subdirectory and given its id and name, when I display it, then subsonic-service will be called, the songs and directory will be published to the scope", function() {
scope.getSongs('display', 6, 'Potsander dormilona');
deferred.resolve({
directories: [{id: 387, type: 'byfolder'}],
songs: [
{ id: 102 },
{ id: 340 }
]
});
scope.$apply();
expect(scope.album).toEqual([
{id: 387, type: 'byfolder'}
]);
expect(scope.song).toEqual([
{ id: 102 },
{ id: 340 }
]);
});
it("Given a music directory, when I display it, then handleErrors will handle HTTP and Subsonic errors", function() {
spyOn(scope, 'handleErrors').and.returnValue(deferred.promise);
scope.getSongs('display', 88);
expect(scope.handleErrors).toHaveBeenCalledWith(deferred.promise);
});
it("Given a music directory that didn't contain anything, when I display it, then an error notification will be displayed", function() {
scope.getSongs('display', 214, 'Upside bunemost');
deferred.reject({reason: 'This directory is empty.'});
scope.$apply();
expect(notifications.updateMessage).toHaveBeenCalledWith('This directory is empty.', true);
});
it("Given a music directory that contained 3 songs and given its id, when I add it to the playing queue, then requestSongs() will be called", function() {
scope.getSongs('add', 720);
deferred.resolve([
{ id: 927 },
{ id: 598 },
{ id: 632 }
]);
scope.$apply();
expect(subsonic.recursiveGetSongs).toHaveBeenCalledWith(720);
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'add');
});
it("Given a music directory that contained 3 songs and given its id, when I play it, then requestSongs() will be called", function() {
scope.getSongs('play', 542);
deferred.resolve([
{ id: 905 },
{ id: 181 },
{ id: 880 }
]);
scope.$apply();
expect(subsonic.recursiveGetSongs).toHaveBeenCalledWith(542);
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'play');
});
});
describe("Given that my library contained 3 songs, ", function() {
var response;
beforeEach(function() {
response = [
{id:"2548"}, {id:"8986"}, {id:"2986"}
];
});
describe("", function() {
beforeEach(function() {
spyOn(scope, "requestSongs").and.returnValue(deferred.promise);
});
it("when I request random starred songs, then subsonic-service will be called, displaying, adding or playing songs will be delegated to requestSongs and the current playlist will be published to the scope", function() {
subsonic.getRandomStarredSongs.and.returnValue(deferred.promise);
scope.getRandomStarredSongs('whatever action');
deferred.resolve(response);
scope.$apply();
expect(subsonic.getRandomStarredSongs).toHaveBeenCalled();
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'whatever action');
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBe('starred');
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBeNull();
});
describe("when I request random songs", function() {
beforeEach(function() {
subsonic.getRandomSongs.and.returnValue(deferred.promise);
});
it("from all folders or genres, then subsonic-service will be called, displaying, adding or playing songs will be delegated to requestSongs and the current playlist will be published to the scope", function() {
scope.getRandomSongs('whatever action');
deferred.resolve(response);
scope.$apply();
expect(subsonic.getRandomSongs).toHaveBeenCalled();
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'whatever action');
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBe('random');
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBeNull();
});
it("from a given genre, then subsonic-service will be called, displaying, adding or playing songs will be delegated to requestSongs and the current playlist will be published to the scope", function() {
scope.getRandomSongs('whatever action', 'Rock');
deferred.resolve(response);
scope.$apply();
expect(subsonic.getRandomSongs).toHaveBeenCalledWith('Rock', undefined);
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'whatever action');
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBe('Rock');
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBeNull();
});
it("from a given folder id, then subsonic-service will be called, displaying, adding or playing songs will be delegated to requestSongs and the current playlist will be published to the scope", function() {
scope.getRandomSongs('whatever action', '', 1);
deferred.resolve(response);
scope.$apply();
expect(subsonic.getRandomSongs).toHaveBeenCalledWith('', 1);
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'whatever action');
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBe(1);
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBeNull();
});
});
describe("given a playlist that contained those 3 songs,", function() {
beforeEach(function() {
subsonic.getPlaylist.and.returnValue(deferred.promise);
});
it("when I request it, then subsonic-service will be called, displaying, adding or playing songs will be delegated to requestSongs and the current playlist will be published to the scope", function() {
scope.getPlaylist('whatever action', 1146);
deferred.resolve(response);
scope.$apply();
expect(subsonic.getPlaylist).toHaveBeenCalledWith(1146);
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'whatever action');
expect(scope.song).toEqual([]);
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBeNull();
expect(scope.selectedPlaylist).toBe(1146);
expect(scope.selectedPodcast).toBeNull();
});
it("when I display it, the number of songs in the playlist will be notified", function() {
scope.getPlaylist('display', 1146);
deferred.resolve(response);
scope.$apply();
expect(notifications.updateMessage).toHaveBeenCalledWith('3 Song(s) in Playlist', true);
});
});
it("given a podcast that contained those 3 songs as episodes, when I request it, then subsonic-service will be called, displaying adding or playing songs will be delegated to requestSongs and the current selected podcast will be published to the scope", function() {
subsonic.getPodcast.and.returnValue(deferred.promise);
scope.getPodcast('whatever action', 45);
deferred.resolve(response);
scope.$apply();
expect(subsonic.getPodcast).toHaveBeenCalledWith(45);
expect(scope.requestSongs).toHaveBeenCalledWith(deferred.promise, 'whatever action');
expect(scope.song).toEqual([]);
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBeNull();
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBeNull();
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBe(45);
});
});
describe("requestSongs -", function() {
it("when I display songs, it sets the scope with the selected songs", function() {
scope.requestSongs(deferred.promise, 'display');
deferred.resolve(response);
scope.$apply();
expect(scope.song).toEqual([
{id: "2548"}, {id: "8986"}, {id: "2986"}
]);
});
it("when I add songs, it adds the selected songs to the playing queue and notifies the user", function() {
scope.requestSongs(deferred.promise, 'add');
deferred.resolve(response);
scope.$apply();
expect(player.addSongs).toHaveBeenCalledWith([
{id: "2548"}, {id: "8986"}, {id: "2986"}
]);
expect(notifications.updateMessage).toHaveBeenCalledWith('3 Song(s) Added to Queue', true);
});
it("when I play songs, it plays the first selected song, empties the queue and fills it with the selected songs and it notifies the user", function() {
scope.requestSongs(deferred.promise, 'play');
deferred.resolve(response);
scope.$apply();
expect(player.emptyQueue).toHaveBeenCalled();
expect(player.addSongs).toHaveBeenCalledWith([
{id: "2548"}, {id: "8986"}, {id: "2986"}
]);
expect(player.playFirstSong).toHaveBeenCalled();
expect(notifications.updateMessage).toHaveBeenCalledWith('3 Song(s) Added to Queue', true);
});
it("when I request songs, it returns a promise so that I can chain it further", function() {
var success = jasmine.createSpy("success");
scope.requestSongs(deferred.promise, 'whatever action').then(success);
deferred.resolve(response);
scope.$apply();
expect(success).toHaveBeenCalled();
});
it("when I request songs, it lets handleErrors handle HTTP and Subsonic errors", function() {
spyOn(scope, 'handleErrors').and.returnValue(deferred.promise);
scope.requestSongs(deferred.promise, 'whatever action');
deferred.reject({reason: 'Error when contacting the Subsonic server.',
httpError: 404
});
scope.$apply();
expect(scope.handleErrors).toHaveBeenCalledWith(deferred.promise);
});
it("given that I don't have any song in my library, when I request songs, it notifies the user with an error message, does not play a song and does not change the queue", function() {
player.queue = [{id: "7666"}];
scope.requestSongs(deferred.promise, 'whatever action');
deferred.reject({reason: 'No songs found on the Subsonic server.'});
scope.$apply();
expect(player.playFirstSong).not.toHaveBeenCalled();
expect(player.queue).toEqual([{id: "7666"}]);
expect(notifications.updateMessage).toHaveBeenCalledWith('No songs found on the Subsonic server.', true);
});
});
});
describe("handleErrors -", function() {
it("when I make a request, it returns a promise so that I can chain it further", function() {
var success = jasmine.createSpy("success");
scope.handleErrors(deferred.promise).then(success);
deferred.resolve();
scope.$apply();
expect(success).toHaveBeenCalled();
});
it("given that the Subsonic server returns an error, when I make a request, it notifies the user with the error message", function() {
scope.handleErrors(deferred.promise);
deferred.reject({reason: 'Error when contacting the Subsonic server.',
subsonicError: {code: 10, message:'Required parameter is missing.'}
});
scope.$apply();
expect(notifications.updateMessage).toHaveBeenCalledWith('Error when contacting the Subsonic server. Required parameter is missing.', true);
});
it("given that the Subsonic server is unreachable, when I make a request, it notifies the user with the HTTP error code", function() {
scope.handleErrors(deferred.promise);
deferred.reject({reason: 'Error when contacting the Subsonic server.',
httpError: 404
});
scope.$apply();
expect(notifications.updateMessage).toHaveBeenCalledWith('Error when contacting the Subsonic server. HTTP error 404', true);
});
});
describe("reorders playlists by drag and drop - ", function() {
var mockUI;
beforeEach(function() {
scope.song = [
{id: 1084},
{id: 6810},
{id: 214}
];
mockUI = {
item: {}
};
});
it("given a song in a list of songs, when I start dragging it, it records what its starting position in the list was", function() {
mockUI.item.index = jasmine.createSpy('index').and.returnValue('1');
mockUI.item.data = jasmine.createSpy('data');
scope.dragStart({}, mockUI);
expect(mockUI.item.index).toHaveBeenCalled();
expect(mockUI.item.data).toHaveBeenCalledWith('start', '1');
});
it("given a song in a list of songs that I started dragging, when I drop it, its position in the list of songs has changed", function() {
mockUI.item.index = jasmine.createSpy('index').and.returnValue('0');
mockUI.item.data = jasmine.createSpy('data').and.returnValue('1');
scope.dragEnd({}, mockUI);
expect(mockUI.item.index).toHaveBeenCalled();
expect(mockUI.item.data).toHaveBeenCalledWith('start');
// The second song should now be first
expect(scope.song).toEqual([
{id: 6810},
{id: 1084},
{id: 214}
]);
});
});
it("Given a song, when I call playSong, then the player service's queue will be emptied, the song will be added to the queue and played", function() {
var fakeSong = {"id": 3572};
scope.playSong(fakeSong);
expect(player.emptyQueue).toHaveBeenCalled();
expect(player.addSong).toHaveBeenCalledWith({"id": 3572});
expect(player.playFirstSong).toHaveBeenCalled();
});
//TODO: Hyz: all starred
describe("", function() {
beforeEach(function() {
spyOn(scope, "getArtists");
});
it("Given no previously selected music folder, when I select a music folder, then it will be stored in persistence and the artists will be loaded from subsonic", function() {
scope.SelectedMusicFolder = { id: 22, name: "Cascadia" };
scope.$apply();
expect(persistence.saveSelectedMusicFolder).toHaveBeenCalledWith({ id: 22, name: "Cascadia" });
expect(scope.getArtists).toHaveBeenCalledWith(22);
});
it("Given a previously selected music folder, when I select the 'All Folders' (undefined) music folder, then the stored value will be deleted from persistence and all the artists will be loaded from subsonic", function() {
scope.SelectedMusicFolder = { id: 23, name: "grantable" };
scope.$apply();
scope.SelectedMusicFolder = undefined;
scope.$apply();
expect(persistence.deleteSelectedMusicFolder).toHaveBeenCalled();
expect(scope.getArtists).not.toHaveBeenCalledWith(jasmine.any(Number));
});
});
describe("getArtists() -", function() {
beforeEach(function() {
subsonic.getArtists.and.returnValue(deferred.promise);
});
it("Given that there were artists in the library, when I load the artists, then subsonic will be queried and an index array containing the artists and a shortcut array containing the shortcuts (such as Podcasts) will be publisehd to the scope", function() {
scope.getArtists();
deferred.resolve({
index: [
{id: 520}
],
shortcut: [
{id: 342}
]
});
scope.$apply();
expect(subsonic.getArtists).toHaveBeenCalled();
expect(scope.index).toEqual([
{id: 520}
]);
expect(scope.shortcut).toEqual([
{id: 342}
]);
});
it("Given no folder id and given a selected music folder had been set in the scope, when I get the artists, then the selected music folder's id will be used as parameter to subsonic service", function() {
scope.SelectedMusicFolder = { id: 62, name: "dollardee" };
scope.getArtists();
expect(subsonic.getArtists).toHaveBeenCalledWith(62);
});
it("Given that there weren't any artist in the library, when I load the artists, then a notification with an error message will be displayed", function() {
scope.getArtists();
deferred.reject({reason: 'No artist found on the Subsonic server.'});
scope.$apply();
expect(scope.index).toEqual([]);
expect(scope.shortcut).toEqual([]);
expect(notifications.updateMessage).toHaveBeenCalledWith('No artist found on the Subsonic server.', true);
});
it("Given that the server was unreachable, when I get the music folders, then handleErrors() will deal with the error", function() {
spyOn(scope, 'handleErrors').and.returnValue(deferred.promise);
scope.getArtists();
expect(scope.handleErrors).toHaveBeenCalledWith(deferred.promise);
});
});
describe("getAlbumListBy() - Given that the global setting AutoAlbum Size was 3,", function() {
beforeEach(function() {
subsonic.getAlbumListBy.and.returnValue(deferred.promise);
});
it("and given that there were albums in the library, when I get the newest albums, then subsonic will be queried and the albums will be published on the scope", function() {
scope.getAlbumListBy("newest");
deferred.resolve([
{ id: 85, isDir: true },
{ id: 581, isDir: true },
{ id: 415, isDir: true }
]);
scope.$apply();
expect(subsonic.getAlbumListBy).toHaveBeenCalledWith("newest", 0);
expect(scope.song).toEqual([]);
expect(scope.album).toEqual([
{ id: 85, isDir: true },
{ id: 581, isDir: true },
{ id: 415, isDir: true }
]);
expect(breadcrumbs.reset).toHaveBeenCalled();
expect(scope.selectedAutoAlbum).toBe("newest");
expect(scope.selectedArtist).toBeNull();
expect(scope.selectedAlbum).toBeNull();
expect(scope.selectedAutoPlaylist).toBeNull();
expect(scope.selectedPlaylist).toBeNull();
expect(scope.selectedPodcast).toBeNull();
});
describe("and given that we had already queried the first 3 most played albums,", function() {
beforeEach(function() {
scope.autoAlbums['frequent'].offset = 3;
});
it("when I get the next most played albums, then subsonic will be queried with an offset of 6", function() {
scope.getAlbumListBy("frequent", "next");
expect(subsonic.getAlbumListBy).toHaveBeenCalledWith("frequent", 6);
});
it("when I get the previous most played albums, then subsonic will be queried with an offset of 0", function() {
scope.getAlbumListBy("frequent", "prev");
expect(subsonic.getAlbumListBy).toHaveBeenCalledWith("frequent", 0);
});
it("when I get the first 3 top rated albums, then the 'most played' offset will be ignored and subsonic will be queried with an offset of 0", function() {
scope.getAlbumListBy("highest");
expect(subsonic.getAlbumListBy).toHaveBeenCalledWith("highest", 0);
});
});
it("Given that there weren't any albums in the library, when I get the newest albums, then a notification with an error message will be displayed", function() {
scope.getAlbumListBy("frequent");
deferred.reject({reason: 'No matching albums found on the Subsonic server.'});
scope.$apply();
expect(scope.album).toEqual([]);
expect(notifications.updateMessage).toHaveBeenCalledWith('No matching albums found on the Subsonic server.', true);
});
it("Given that the server was unreachable, when I get the newest albums, then handleErrors() will deal with the error", function() {
spyOn(scope, 'handleErrors').and.returnValue(deferred.promise);
scope.getAlbumListBy("newest");
expect(scope.handleErrors).toHaveBeenCalledWith(deferred.promise);
});
});
it("refreshArtists() - When I refresh the artists, then the selected music folder will be reset to undefined and the artists and playlists will be loaded", function() {
spyOn(scope, "getArtists");
spyOn(scope, "getPlaylists");
scope.refreshArtists();
expect(scope.SelectedMusicFolder).toBeUndefined();
expect(scope.getArtists).toHaveBeenCalled();
expect(scope.getPlaylists).toHaveBeenCalled();
});
describe("When I load the playlists,", function() {
beforeEach(function() {
subsonic.getPlaylists.and.returnValue(deferred.promise);
});
it("Given that there are playlists in the library, it loads the playlists and publishes them to the scope", function() {
scope.getPlaylists();
deferred.resolve({
playlists: [
{id: 588}
],
playlistsPublic: [
{id: 761}
]
});
scope.$apply();
expect(subsonic.getPlaylists).toHaveBeenCalled();
expect(scope.playlists).toEqual([
{id: 588}
]);
expect(scope.playlistsPublic).toEqual([
{id: 761}
]);
});
it("Given that there aren't any playlists in the library, it publishes an empty array to the scope and does not notify the user with the error message", function() {
scope.getPlaylists();
deferred.reject({reason: 'No playlist found on the Subsonic server.'});
scope.$apply();
expect(subsonic.getPlaylists).toHaveBeenCalled();
expect(scope.playlists).toEqual([]);
expect(scope.playlistsPublic).toEqual([]);
expect(notifications.updateMessage).not.toHaveBeenCalled();
});
});
it("When I create a playlist, then it will ask for a name, use subsonic-service and reload the playlists", function() {
$window.prompt.and.returnValue('declassicize');
subsonic.newPlaylist.and.returnValue(deferred.promise);
spyOn(scope, 'getPlaylists');
scope.newPlaylist();
deferred.resolve();
scope.$apply();
expect($window.prompt).toHaveBeenCalledWith("Choose a name for your new playlist.", "");
expect(subsonic.newPlaylist).toHaveBeenCalledWith('declassicize');
expect(scope.getPlaylists).toHaveBeenCalled();
});
it("When I create a playlist and provide no name, then the playlist won't be created", function() {
$window.prompt.and.returnValue(null);
scope.newPlaylist();
expect(subsonic.newPlaylist).not.toHaveBeenCalled();
});
it("Given a selected playlist, when I delete that playlist, it will ask for confirmation, use subsonic-service and reload the playlists", function() {
$window.confirm.and.returnValue(true);
subsonic.deletePlaylist.and.returnValue(deferred.promise);
spyOn(scope, 'getPlaylists');
scope.selectedPlaylist = 8885;
scope.deletePlaylist();
deferred.resolve();
scope.$apply();
expect($window.confirm).toHaveBeenCalledWith('Are you sure you want to delete the selected playlist?');
expect(subsonic.deletePlaylist).toHaveBeenCalledWith(8885);
expect(scope.getPlaylists).toHaveBeenCalled();
});
it("Given no selected playlist, when I try to delete a playlist, an error notification will be displayed", function() {
scope.selectedPlaylist = null;
scope.deletePlaylist();
expect(notifications.updateMessage).toHaveBeenCalledWith('Please select a playlist to delete.');
expect(subsonic.deletePlaylist).not.toHaveBeenCalled();
});
it("Given a selected playlist, when I save that playlist, the displayed songs will be sent to subsonic-service, the playlist will be displayed again and a notification message will be displayed", function() {
subsonic.savePlaylist.and.returnValue(deferred.promise);
spyOn(scope, 'getPlaylist');
scope.selectedPlaylist = 8469;
scope.song = [
{ id: 3352 },
{ id: 1518 },
{ id: 5179 }
];
scope.savePlaylist();
deferred.resolve();
scope.$apply();
expect(subsonic.savePlaylist).toHaveBeenCalledWith(8469, [
{ id: 3352 },
{ id: 1518 },
{ id: 5179 }
]);
expect(scope.getPlaylist).toHaveBeenCalledWith('display', 8469);
expect(notifications.updateMessage).toHaveBeenCalledWith('Playlist Updated!', true);
});
it("Given no selected playlist, when I try to save a playlist, an error notification will be displayed", function() {
scope.selectedPlaylist = null;
scope.savePlaylist();
expect(notifications.updateMessage).toHaveBeenCalledWith('Please select a playlist to save.');
expect(subsonic.savePlaylist).not.toHaveBeenCalled();
});
describe("getPodcasts() -", function() {
beforeEach(function() {
subsonic.getPodcasts.and.returnValue(deferred.promise);
});
it("Given that there were podcasts in the library, When I load the podcasts, then the podcasts will be published to the scope", function() {
scope.getPodcasts();
deferred.resolve([
{id: 9775},
{id: 5880},
{id: 5554}
]);
scope.$apply();
expect(subsonic.getPodcasts).toHaveBeenCalled();
expect(scope.podcasts).toEqual([
{id: 9775},
{id: 5880},
{id: 5554}
]);
});
it("Given that there wasn't any podcast in the library, When I load the podcasts, then an empty array will be published to the scope and the user won't be notified", function() {
scope.getPodcasts();
deferred.reject({reason: 'No podcast found on the Subsonic server.'});
scope.$apply();
expect(subsonic.getPodcasts).toHaveBeenCalled();
expect(scope.podcasts).toEqual([]);
expect(notifications.updateMessage).not.toHaveBeenCalled();
});
});
describe("getGenres() -", function() {
beforeEach(function() {
subsonic.getGenres.and.returnValue(deferred.promise);
});
it("Given that there were music genres in the library, when I get the genres, then the genre names will be published to the scope", function() {
scope.getGenres();
deferred.resolve([
"matriarchalism",
"Glyptodontidae",
"archcozener"
]);
scope.$apply();
expect(subsonic.getGenres).toHaveBeenCalled();
expect(scope.Genres).toEqual([
"matriarchalism",
"Glyptodontidae",
"archcozener"
]);
});
it("Given that there wasn't any music genre in the library, when I get the genres, then an empty array will be published to the scope and the user won't be notified", function() {
scope.getGenres();
deferred.reject({reason: 'No genre found on the Subsonic server.'});
scope.$apply();
expect(subsonic.getGenres).toHaveBeenCalled();
expect(scope.Genres).toEqual([]);
expect(notifications.updateMessage).not.toHaveBeenCalled();
});
});
describe("getMusicFolders() -", function() {
beforeEach(function() {
subsonic.getMusicFolders.and.returnValue(deferred.promise);
});
it("Given that there were music folders in the library, when I get the music folders, then the folders will be published to the scope", function() {
scope.getMusicFolders();
deferred.resolve([
{ id: 74, name: "scirrhosis"},
{ id: 81, name: "drooper"}
]);
scope.$apply();
expect(subsonic.getMusicFolders).toHaveBeenCalled();
expect(scope.MusicFolders).toEqual([
{ id: 74, name: "scirrhosis"},
{ id: 81, name: "drooper"}
]);
});
describe("Given that there was a selected music folder previously saved in persistence", function() {
it("and that it matched one of the music folders returned by subsonic, when I get the music folders, then the scope's selected music folder will be set", function() {
persistence.getSelectedMusicFolder.and.returnValue({ id: 79, name: "dismember" });
scope.getMusicFolders();
deferred.resolve([
{ id: 93, name: "illish" },
{ id: 79, name: "dismember" }
]);
scope.$apply();
expect(scope.SelectedMusicFolder).toEqual({ id: 79, name: "dismember" });
});
it("and that it didn't match one of the music folders returned by subsonic, when I get the music folders, then the scope's selected music folder will be undefined", function() {
persistence.getSelectedMusicFolder.and.returnValue({ id: 49, name: "metafulminuric" });
scope.getMusicFolders();
deferred.resolve([
{ id: 94, name: "dorsiflexor" }
]);
scope.$apply();
expect(scope.SelectedMusicFolder).toBeUndefined();
});
});
it("Given that there weren't any music folder in the library, when I get the music folders, then handleErrors() will deal with the error", function() {
spyOn(scope, 'handleErrors').and.returnValue(deferred.promise);
scope.getMusicFolders();
deferred.reject({reason: 'No music folder found on the Subsonic server.'});
scope.$apply();
expect(scope.handleErrors).toHaveBeenCalledWith(deferred.promise);
});
});
describe("search() -", function() {
beforeEach(function() {
subsonic.search.and.returnValue(deferred.promise);
});
it("Given that songs containing 'fireboard' existed in my library, when I search for a song that contains 'fireboard', then the scope's songs will be filled with an array containing those songs and the other scope arrays will be emptied", function() {
scope.search('fireboard', 0);
deferred.resolve([
{id: 318, name: "antichronically fireboard"},
{id: 890, name: "fireboard Rhoda"},
{id: 643, name: "fireboarding stalactical"}
]);
scope.$apply();
expect(subsonic.search).toHaveBeenCalledWith('fireboard', 0);
expect(scope.song).toEqual([
{id: 318, name: "antichronically fireboard"},
{id: 890, name: "fireboard Rhoda"},
{id: 643, name: "fireboarding stalactical"}
]);
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
});
it("Given that albums containing 'neolalia' existed in my library, when I search for an album that contains 'neolalia', then the scope's albums will be filled with an array containing those albums and the other scope arrays will be emptied", function() {
scope.search('neolalia', 1);
deferred.resolve([
{id: 74, name: "Magdalen neolalia"},
{id: 2, name: "neolalia tribrac"},
{id: 19, name: "neolaliaviator"},
]);
scope.$apply();
expect(subsonic.search).toHaveBeenCalledWith('neolalia', 1);
expect(scope.album).toEqual([
{id: 74, name: "Magdalen neolalia"},
{id: 2, name: "neolalia tribrac"},
{id: 19, name: "neolaliaviator"},
]);
expect(scope.song).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
});
it("Given that artists containing 'brazenly' existed in my library, when I search for an artist that contains 'brazenly', then the scope's shortcuts will be filled with an array containing those artists and the other scope arrays will be emptied", function() {
scope.search('brazenly', 2);
deferred.resolve([
{id: 645, name: "brazenly unsheriff"},
{id: 831, name: "planorotund brazenly"},
{id: 181, name: "brazenlyon"},
]);
scope.$apply();
expect(subsonic.search).toHaveBeenCalledWith('brazenly', 2);
expect(scope.shortcut).toEqual([
{id: 645, name: "brazenly unsheriff"},
{id: 831, name: "planorotund brazenly"},
{id: 181, name: "brazenlyon"},
]);
expect(scope.song).toEqual([]);
expect(scope.album).toEqual([]);
expect(breadcrumbs.reset).toHaveBeenCalled();
});
it("Given any type of search and given that the library didn't contain anything containing 'shindig', when I search for 'shindig', then an error notification will be displayed", function() {
scope.search('shindig', jasmine.any(Number()));
deferred.reject({reason: "No results."});
scope.$apply();
expect(subsonic.search).toHaveBeenCalledWith('shindig', jasmine.any(Number()));
expect(notifications.updateMessage).toHaveBeenCalledWith('No results.', true);
});
it("Given any type of search, When I search for an empty string, then subsonic service won't be called", function() {
scope.search('', 34);
expect(subsonic.search).not.toHaveBeenCalled();
});
});
});
describe("On startup,", function() {
//TODO: Hyz: Search types and default types published at startup
xit("it loads the indexes, the playlists", function() {
controllerParams.$scope.getArtists = jasmine.createSpy('getArtists');
controllerParams.$scope.getPlaylists = jasmine.createSpy('getPlaylists');
// spyOn(scope, 'getArtists');
// spyOn(scope, 'getPlaylists');
$controller('SubsonicController', controllerParams);
expect(scope.getArtists).toHaveBeenCalled();
expect(scope.getPlaylists).toHaveBeenCalled();
//TODO: Hyz: Complete with everything called on startup
});
});
});