const moment = require('moment') const path = require('path') const should = require('should/as-function') const Album = require('../../src/model/album') const fixtures = require('../fixtures') describe('Album', function () { describe('options', function () { it('can pass the title as a single argument', function () { const a = new Album('Holidays') should(a.title).eql('Holidays') }) it('can pass a full hash of options', function () { const a = new Album({ id: 12, title: 'Holidays' }) should(a.id).eql(12) should(a.title).eql('Holidays') }) }) describe('output paths', function () { it('sanitises album titles for the file name', function () { const a = new Album('& déjà vu') should(a.basename).eql('and-deja-vu') }) it('concatenates nested filenames for uniqueness', function () { // to avoid having two nested albums called "October" overwrite each other // note: doesn't use the root title to avoid "home-" or "index-" const root = new Album({ title: 'home', albums: [ new Album({ title: '2010', albums: [ new Album({ title: 'October' }) ] }), new Album({ title: '2011', albums: [ new Album({ title: 'October' }) ] }) ] }) root.finalize() should(root.basename).eql('home') should(root.albums[0].basename).eql('2010') should(root.albums[1].basename).eql('2011') should(root.albums[0].albums[0].basename).eql('2010-October') should(root.albums[1].albums[0].basename).eql('2011-October') }) it('calculates the output file path', function () { const root = new Album({ title: 'home', albums: [new Album({ title: '2010' })] }) root.finalize({ index: 'index.html' }) should(root.path).eql('index.html') should(root.albums[0].path).eql('2010.html') }) it('calculates the URL for the browser', function () { const root = new Album({ title: 'home', albums: [new Album({ title: '2010' })] }) root.finalize({ index: 'index.html' }) should(root.url).eql('index.html') should(root.albums[0].url).eql('2010.html') }) it('calculates the output path with a target folder (slashes match the OS)', function () { const root = new Album({ title: 'home', albums: [new Album({ title: '2010' })] }) root.finalize({ index: 'index.html', albumsOutputFolder: 'albums' }) should(root.path).eql('index.html') should(root.albums[0].path).eql(path.join('albums', '2010.html')) }) it('calculates the URL with a target folder (always forward slashes)', function () { const root = new Album({ title: 'home', albums: [new Album({ title: '2010' })] }) root.finalize({ index: 'index.html', albumsOutputFolder: 'albums' }) should(root.path).eql('index.html') should(root.albums[0].path).eql('albums/2010.html') }) }) describe('previews', function () { it('picks the first 10 files as previews', function () { const a = new Album({ files: [ fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo(), fixtures.photo() ] }) a.finalize() should(a.previews).have.length(10) }) it('adds thumbnails to fill', function () { const a = new Album({ files: [ fixtures.photo(), fixtures.photo() ] }) a.finalize() should(a.previews[2].urls.thumbnail).eql('public/missing.png') should(a.previews[9].urls.thumbnail).eql('public/missing.png') }) it('uses files from nested albums too', function () { const a = new Album({ title: 'a', albums: [ new Album({ title: 'b', files: [fixtures.photo(), fixtures.photo()] }), new Album({ title: 'c', files: [fixtures.photo(), fixtures.photo()] }) ] }) a.finalize() should(a.previews).have.length(10) for (var i = 0; i < 4; ++i) { should(a.previews[i].urls.thumbnail).not.eql('public/missing.png') } }) }) describe('sorting', function () { it('can sort albums by title', function () { const a = new Album('A') const b = new Album('B') const c = new Album('C') const root = new Album({ albums: [c, a, b] }) root.finalize({ sortAlbumsBy: 'title' }) should(root.albums).eql([a, b, c]) }) it('can sort albums by start date', function () { const startJan = albumWithFileDates(['2010-01-01', '2010-05-01']) const startFeb = albumWithFileDates(['2010-02-01', '2010-04-01']) const startMar = albumWithFileDates(['2010-03-01', '2010-03-01']) const root = new Album({ albums: [startFeb, startMar, startJan] }) root.finalize({ sortAlbumsBy: 'start-date' }) should(root.albums).eql([startJan, startFeb, startMar]) }) it('can sort albums by end date', function () { const endMay = albumWithFileDates(['2010-01-01', '2010-05-01']) const endApr = albumWithFileDates(['2010-02-01', '2010-04-01']) const endMar = albumWithFileDates(['2010-03-01', '2010-03-01']) const root = new Album({ albums: [endMay, endMar, endApr] }) root.finalize({ sortAlbumsBy: 'end-date' }) should(root.albums).eql([endMar, endApr, endMay]) }) it('can sort media by filename', function () { const a = fixtures.photo({ path: 'a' }) const b = fixtures.photo({ path: 'b' }) const c = fixtures.photo({ path: 'c' }) const album = new Album({ files: [c, a, b] }) album.finalize({ sortMediaBy: 'filename' }) should(album.files).eql([a, b, c]) }) it('can sort media by reverse filename', function () { const a = fixtures.photo({ path: 'a' }) const b = fixtures.photo({ path: 'b' }) const c = fixtures.photo({ path: 'c' }) const album = new Album({ files: [c, a, b] }) album.finalize({ sortMediaBy: 'filename', sortMediaDirection: 'desc' }) should(album.files).eql([c, b, a]) }) it('can sort media by date', function () { const album = albumWithFileDates(['2010-10-15', '2010-01-01', '2010-03-24']) album.finalize({ sortMediaBy: 'date' }) const datesInAlbum = album.files.map(f => { return moment(f.meta.date).format('YYYY-MM-DD') }) should(datesInAlbum).eql(['2010-01-01', '2010-03-24', '2010-10-15']) }) it('sorts nested albums too', function () { const nested = new Album({ title: 'nested', files: [ fixtures.photo({ path: 'b' }), fixtures.photo({ path: 'a' }) ] }) const root = new Album({ title: 'home', albums: [nested] }) root.finalize({ sortMediaBy: 'filename' }) should(nested.files[0].path).eql('a') should(nested.files[1].path).eql('b') }) }) describe('nested albums basic logic', function () { it('calculates the depth of every album', function () { const a = new Album('single') const b = new Album('single') const c = new Album('single') const d = new Album('single') a.albums = [b, c] c.albums = [d] a.finalize() should(a.depth).eql(0) should(b.depth).eql(1) should(c.depth).eql(1) should(d.depth).eql(2) }) it('sets the home flag on the top-level album', function () { const a = new Album('single') const b = new Album('single') const c = new Album('single') const d = new Album('single') a.albums = [b, c] c.albums = [d] a.finalize() should(a.home).eql(true) should(b.home).eql(false) should(c.home).eql(false) should(d.home).eql(false) }) it('passes finalising options to all nested albums (e.g. sorting)', function () { const nested = new Album({ title: 'nested', files: [ fixtures.photo({ path: 'b' }), fixtures.photo({ path: 'a' }) ] }) const root = new Album({ title: 'home', albums: [nested] }) root.finalize({ sortMediaBy: 'filename' }) should(nested.files[0].path).eql('a') should(nested.files[1].path).eql('b') }) }) }) function albumWithFileDates (dates) { const files = dates.map(function (d) { return fixtures.photo({ date: d }) }) return new Album({ files: files }) }