mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-12 12:21:34 +00:00
Add all minified fields to expanded library item JSON so socket updates remain a strict superset of shelf payloads
This commit is contained in:
parent
6f03467f35
commit
3bb53d939d
4 changed files with 196 additions and 36 deletions
158
test/server/models/oldJsonSerialization.test.js
Normal file
158
test/server/models/oldJsonSerialization.test.js
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
const { expect } = require('chai')
|
||||
const { Sequelize } = require('sequelize')
|
||||
|
||||
const Database = require('../../../server/Database')
|
||||
|
||||
/**
|
||||
* Assert that `expanded` contains every key from `minified` with matching values.
|
||||
* Used to enforce the contract: toOldJSONExpanded() is a strict superset of toOldJSONMinified().
|
||||
*
|
||||
* @param {object} minified
|
||||
* @param {object} expanded
|
||||
* @param {string} [path]
|
||||
*/
|
||||
function assertExpandedSuperset(minified, expanded, path = '') {
|
||||
for (const key of Object.keys(minified)) {
|
||||
const keyPath = path ? `${path}.${key}` : key
|
||||
expect(expanded, `missing key ${keyPath}`).to.have.property(key)
|
||||
|
||||
const minifiedValue = minified[key]
|
||||
const expandedValue = expanded[key]
|
||||
|
||||
if (minifiedValue !== null && typeof minifiedValue === 'object' && !Array.isArray(minifiedValue)) {
|
||||
assertExpandedSuperset(minifiedValue, expandedValue, keyPath)
|
||||
} else if (Array.isArray(minifiedValue)) {
|
||||
expect(expandedValue, `expected array at ${keyPath}`).to.be.an('array')
|
||||
expect(expandedValue).to.deep.equal(minifiedValue)
|
||||
} else {
|
||||
expect(expandedValue, `value mismatch at ${keyPath}`).to.equal(minifiedValue)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
describe('old JSON serialization', () => {
|
||||
let bookLibraryItemId
|
||||
let podcastLibraryItemId
|
||||
|
||||
beforeEach(async () => {
|
||||
global.ServerSettings = {}
|
||||
Database.sequelize = new Sequelize({ dialect: 'sqlite', storage: ':memory:', logging: false })
|
||||
Database.sequelize.uppercaseFirst = (str) => (str ? `${str[0].toUpperCase()}${str.substr(1)}` : '')
|
||||
await Database.buildModels()
|
||||
|
||||
const bookLibrary = await Database.libraryModel.create({ name: 'Book Library', mediaType: 'book' })
|
||||
const bookLibraryFolder = await Database.libraryFolderModel.create({ path: '/books', libraryId: bookLibrary.id })
|
||||
|
||||
const book = await Database.bookModel.create({
|
||||
title: 'Test Book',
|
||||
audioFiles: [{ index: 1, ino: '1', metadata: { filename: 'track.mp3', ext: '.mp3', path: '/track.mp3', relPath: 'track.mp3', size: 1000 } }],
|
||||
tags: ['fiction'],
|
||||
narrators: ['Narrator One'],
|
||||
genres: ['Fantasy'],
|
||||
chapters: [{ id: 0, start: 0, end: 100, title: 'Chapter 1' }],
|
||||
ebookFile: { ino: '2', metadata: { filename: 'book.epub', ext: '.epub', path: '/book.epub', relPath: 'book.epub', size: 500 }, ebookFormat: 'epub' }
|
||||
})
|
||||
const bookLibraryItem = await Database.libraryItemModel.create({
|
||||
libraryFiles: [{ ino: '1', metadata: { filename: 'track.mp3', ext: '.mp3', path: '/track.mp3', relPath: 'track.mp3' } }],
|
||||
mediaId: book.id,
|
||||
mediaType: 'book',
|
||||
libraryId: bookLibrary.id,
|
||||
libraryFolderId: bookLibraryFolder.id
|
||||
})
|
||||
bookLibraryItemId = bookLibraryItem.id
|
||||
|
||||
const author = await Database.authorModel.create({ name: 'Test Author', libraryId: bookLibrary.id })
|
||||
await Database.bookAuthorModel.create({ bookId: book.id, authorId: author.id })
|
||||
|
||||
const series = await Database.seriesModel.create({ name: 'Test Series', libraryId: bookLibrary.id })
|
||||
await Database.bookSeriesModel.create({ bookId: book.id, seriesId: series.id, sequence: '2' })
|
||||
|
||||
const podcastLibrary = await Database.libraryModel.create({ name: 'Podcast Library', mediaType: 'podcast' })
|
||||
const podcastLibraryFolder = await Database.libraryFolderModel.create({ path: '/podcasts', libraryId: podcastLibrary.id })
|
||||
|
||||
const podcast = await Database.podcastModel.create({
|
||||
title: 'Test Podcast',
|
||||
tags: ['news'],
|
||||
genres: ['Technology'],
|
||||
autoDownloadEpisodes: false
|
||||
})
|
||||
const podcastLibraryItem = await Database.libraryItemModel.create({
|
||||
libraryFiles: [],
|
||||
mediaId: podcast.id,
|
||||
mediaType: 'podcast',
|
||||
libraryId: podcastLibrary.id,
|
||||
libraryFolderId: podcastLibraryFolder.id
|
||||
})
|
||||
podcastLibraryItemId = podcastLibraryItem.id
|
||||
|
||||
await Database.podcastEpisodeModel.create({
|
||||
podcastId: podcast.id,
|
||||
title: 'Episode 1',
|
||||
index: 1,
|
||||
audioFile: { ino: '3', metadata: { filename: 'ep1.mp3', ext: '.mp3', path: '/ep1.mp3', relPath: 'ep1.mp3' } }
|
||||
})
|
||||
})
|
||||
|
||||
afterEach(async () => {
|
||||
await Database.sequelize.sync({ force: true })
|
||||
})
|
||||
|
||||
describe('Book', () => {
|
||||
it('toOldJSONExpanded is a strict superset of toOldJSONMinified', async () => {
|
||||
const libraryItem = await Database.libraryItemModel.getExpandedById(bookLibraryItemId)
|
||||
const minified = libraryItem.media.toOldJSONMinified()
|
||||
const expanded = libraryItem.media.toOldJSONExpanded(libraryItem.id)
|
||||
|
||||
assertExpandedSuperset(minified, expanded)
|
||||
|
||||
expect(expanded).to.have.property('libraryItemId', libraryItem.id)
|
||||
expect(expanded).to.have.property('audioFiles')
|
||||
expect(expanded).to.have.property('chapters')
|
||||
expect(expanded).to.have.property('tracks')
|
||||
expect(expanded.numTracks).to.equal(expanded.tracks.length)
|
||||
expect(expanded.numAudioFiles).to.equal(expanded.audioFiles.length)
|
||||
expect(expanded.numChapters).to.equal(expanded.chapters.length)
|
||||
expect(expanded.ebookFormat).to.equal('epub')
|
||||
})
|
||||
})
|
||||
|
||||
describe('Podcast', () => {
|
||||
it('toOldJSONExpanded is a strict superset of toOldJSONMinified', async () => {
|
||||
const libraryItem = await Database.libraryItemModel.getExpandedById(podcastLibraryItemId)
|
||||
const minified = libraryItem.media.toOldJSONMinified()
|
||||
const expanded = libraryItem.media.toOldJSONExpanded(libraryItem.id)
|
||||
|
||||
assertExpandedSuperset(minified, expanded)
|
||||
|
||||
expect(expanded).to.have.property('libraryItemId', libraryItem.id)
|
||||
expect(expanded).to.have.property('episodes')
|
||||
expect(expanded.numEpisodes).to.equal(expanded.episodes.length)
|
||||
})
|
||||
})
|
||||
|
||||
describe('LibraryItem', () => {
|
||||
it('book library item expanded is a strict superset of minified', async () => {
|
||||
const libraryItem = await Database.libraryItemModel.getExpandedById(bookLibraryItemId)
|
||||
const minified = libraryItem.toOldJSONMinified()
|
||||
const expanded = libraryItem.toOldJSONExpanded()
|
||||
|
||||
assertExpandedSuperset(minified, expanded)
|
||||
|
||||
expect(expanded).to.have.property('libraryFiles')
|
||||
expect(expanded).to.have.property('lastScan')
|
||||
expect(expanded.numFiles).to.equal(expanded.libraryFiles.length)
|
||||
expect(expanded.media.numTracks).to.equal(expanded.media.tracks.length)
|
||||
})
|
||||
|
||||
it('podcast library item expanded is a strict superset of minified', async () => {
|
||||
const libraryItem = await Database.libraryItemModel.getExpandedById(podcastLibraryItemId)
|
||||
const minified = libraryItem.toOldJSONMinified()
|
||||
const expanded = libraryItem.toOldJSONExpanded()
|
||||
|
||||
assertExpandedSuperset(minified, expanded)
|
||||
|
||||
expect(expanded).to.have.property('libraryFiles')
|
||||
expect(expanded.media.numEpisodes).to.equal(expanded.media.episodes.length)
|
||||
})
|
||||
})
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue