Prefer using sequelize replacements even for tests
This commit is contained in:
parent
66b73484c7
commit
25691c9930
3 changed files with 54 additions and 68 deletions
|
@ -148,7 +148,7 @@ describe('Test AP cleaner', function () {
|
||||||
it('Should destroy server 3 internal shares and correctly clean them', async function () {
|
it('Should destroy server 3 internal shares and correctly clean them', async function () {
|
||||||
this.timeout(20000)
|
this.timeout(20000)
|
||||||
|
|
||||||
const preCount = await servers[0].sql.getCount('videoShare')
|
const preCount = await servers[0].sql.getVideoShareCount()
|
||||||
expect(preCount).to.equal(6)
|
expect(preCount).to.equal(6)
|
||||||
|
|
||||||
await servers[2].sql.deleteAll('videoShare')
|
await servers[2].sql.deleteAll('videoShare')
|
||||||
|
@ -156,7 +156,7 @@ describe('Test AP cleaner', function () {
|
||||||
await waitJobs(servers)
|
await waitJobs(servers)
|
||||||
|
|
||||||
// Still 6 because we don't have remote shares on local videos
|
// Still 6 because we don't have remote shares on local videos
|
||||||
const postCount = await servers[0].sql.getCount('videoShare')
|
const postCount = await servers[0].sql.getVideoShareCount()
|
||||||
expect(postCount).to.equal(6)
|
expect(postCount).to.equal(6)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -185,7 +185,7 @@ describe('Test AP cleaner', function () {
|
||||||
async function check (like: string, ofServerUrl: string, urlSuffix: string, remote: 'true' | 'false') {
|
async function check (like: string, ofServerUrl: string, urlSuffix: string, remote: 'true' | 'false') {
|
||||||
const query = `SELECT "videoId", "accountVideoRate".url FROM "accountVideoRate" ` +
|
const query = `SELECT "videoId", "accountVideoRate".url FROM "accountVideoRate" ` +
|
||||||
`INNER JOIN video ON "accountVideoRate"."videoId" = video.id AND remote IS ${remote} WHERE "accountVideoRate"."url" LIKE '${like}'`
|
`INNER JOIN video ON "accountVideoRate"."videoId" = video.id AND remote IS ${remote} WHERE "accountVideoRate"."url" LIKE '${like}'`
|
||||||
const res = await servers[0].sql.selectQuery(query)
|
const res = await servers[0].sql.selectQuery<{ url: string }>(query)
|
||||||
|
|
||||||
for (const rate of res) {
|
for (const rate of res) {
|
||||||
const matcher = new RegExp(`^${ofServerUrl}/accounts/root/dislikes/\\d+${urlSuffix}$`)
|
const matcher = new RegExp(`^${ofServerUrl}/accounts/root/dislikes/\\d+${urlSuffix}$`)
|
||||||
|
@ -231,7 +231,7 @@ describe('Test AP cleaner', function () {
|
||||||
const query = `SELECT "videoId", "videoComment".url, uuid as "videoUUID" FROM "videoComment" ` +
|
const query = `SELECT "videoId", "videoComment".url, uuid as "videoUUID" FROM "videoComment" ` +
|
||||||
`INNER JOIN video ON "videoComment"."videoId" = video.id AND remote IS ${remote} WHERE "videoComment"."url" LIKE '${like}'`
|
`INNER JOIN video ON "videoComment"."videoId" = video.id AND remote IS ${remote} WHERE "videoComment"."url" LIKE '${like}'`
|
||||||
|
|
||||||
const res = await servers[0].sql.selectQuery(query)
|
const res = await servers[0].sql.selectQuery<{ url: string, videoUUID: string }>(query)
|
||||||
|
|
||||||
for (const comment of res) {
|
for (const comment of res) {
|
||||||
const matcher = new RegExp(`${ofServerUrl}/videos/watch/${comment.videoUUID}/comments/\\d+${urlSuffix}`)
|
const matcher = new RegExp(`${ofServerUrl}/videos/watch/${comment.videoUUID}/comments/\\d+${urlSuffix}`)
|
||||||
|
|
|
@ -129,7 +129,7 @@ describe('Fast restream in live', function () {
|
||||||
await server.config.enableLive({ allowReplay: true, transcoding: true, resolutions: 'min' })
|
await server.config.enableLive({ allowReplay: true, transcoding: true, resolutions: 'min' })
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should correctly fast reastream in a permanent live with and without save replay', async function () {
|
it('Should correctly fast restream in a permanent live with and without save replay', async function () {
|
||||||
this.timeout(480000)
|
this.timeout(480000)
|
||||||
|
|
||||||
// A test can take a long time, so prefer to run them in parallel
|
// A test can take a long time, so prefer to run them in parallel
|
||||||
|
|
|
@ -13,89 +13,47 @@ export class SQLCommand extends AbstractCommand {
|
||||||
return seq.query(`DELETE FROM "${table}"`, options)
|
return seq.query(`DELETE FROM "${table}"`, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
async getCount (table: string) {
|
async getVideoShareCount () {
|
||||||
const seq = this.getSequelize()
|
const [ { total } ] = await this.selectQuery<{ total: string }>(`SELECT COUNT(*) as total FROM "videoShare"`)
|
||||||
|
|
||||||
const options = { type: QueryTypes.SELECT as QueryTypes.SELECT }
|
|
||||||
|
|
||||||
const [ { total } ] = await seq.query<{ total: string }>(`SELECT COUNT(*) as total FROM "${table}"`, options)
|
|
||||||
if (total === null) return 0
|
if (total === null) return 0
|
||||||
|
|
||||||
return parseInt(total, 10)
|
return parseInt(total, 10)
|
||||||
}
|
}
|
||||||
|
|
||||||
async getInternalFileUrl (fileId: number) {
|
async getInternalFileUrl (fileId: number) {
|
||||||
return this.selectQuery(`SELECT "fileUrl" FROM "videoFile" WHERE id = ${fileId}`)
|
return this.selectQuery<{ fileUrl: string }>(`SELECT "fileUrl" FROM "videoFile" WHERE id = :fileId`, { fileId })
|
||||||
.then(rows => rows[0].fileUrl as string)
|
.then(rows => rows[0].fileUrl)
|
||||||
}
|
}
|
||||||
|
|
||||||
setActorField (to: string, field: string, value: string) {
|
setActorField (to: string, field: string, value: string) {
|
||||||
const seq = this.getSequelize()
|
return this.updateQuery(`UPDATE actor SET ${this.escapeColumnName(field)} = :value WHERE url = :to`, { value, to })
|
||||||
|
|
||||||
const options = { type: QueryTypes.UPDATE }
|
|
||||||
|
|
||||||
return seq.query(`UPDATE actor SET "${field}" = '${value}' WHERE url = '${to}'`, options)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setVideoField (uuid: string, field: string, value: string) {
|
setVideoField (uuid: string, field: string, value: string) {
|
||||||
const seq = this.getSequelize()
|
return this.updateQuery(`UPDATE video SET ${this.escapeColumnName(field)} = :value WHERE uuid = :uuid`, { value, uuid })
|
||||||
|
|
||||||
const options = { type: QueryTypes.UPDATE }
|
|
||||||
|
|
||||||
return seq.query(`UPDATE video SET "${field}" = '${value}' WHERE uuid = '${uuid}'`, options)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setPlaylistField (uuid: string, field: string, value: string) {
|
setPlaylistField (uuid: string, field: string, value: string) {
|
||||||
const seq = this.getSequelize()
|
return this.updateQuery(`UPDATE "videoPlaylist" SET ${this.escapeColumnName(field)} = :value WHERE uuid = :uuid`, { value, uuid })
|
||||||
|
|
||||||
const options = { type: QueryTypes.UPDATE }
|
|
||||||
|
|
||||||
return seq.query(`UPDATE "videoPlaylist" SET "${field}" = '${value}' WHERE uuid = '${uuid}'`, options)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async countVideoViewsOf (uuid: string) {
|
async countVideoViewsOf (uuid: string) {
|
||||||
const seq = this.getSequelize()
|
|
||||||
|
|
||||||
const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' +
|
const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' +
|
||||||
`INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = '${uuid}'`
|
`INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = :uuid`
|
||||||
|
|
||||||
const options = { type: QueryTypes.SELECT as QueryTypes.SELECT }
|
|
||||||
const [ { total } ] = await seq.query<{ total: number }>(query, options)
|
|
||||||
|
|
||||||
|
const [ { total } ] = await this.selectQuery<{ total: number }>(query, { uuid })
|
||||||
if (!total) return 0
|
if (!total) return 0
|
||||||
|
|
||||||
return forceNumber(total)
|
return forceNumber(total)
|
||||||
}
|
}
|
||||||
|
|
||||||
getActorImage (filename: string) {
|
getActorImage (filename: string) {
|
||||||
return this.selectQuery(`SELECT * FROM "actorImage" WHERE filename = '${filename}'`)
|
return this.selectQuery<{ width: number, height: number }>(`SELECT * FROM "actorImage" WHERE filename = :filename`, { filename })
|
||||||
.then(rows => rows[0])
|
.then(rows => rows[0])
|
||||||
}
|
}
|
||||||
|
|
||||||
selectQuery (query: string) {
|
|
||||||
const seq = this.getSequelize()
|
|
||||||
const options = { type: QueryTypes.SELECT as QueryTypes.SELECT }
|
|
||||||
|
|
||||||
return seq.query<any>(query, options)
|
|
||||||
}
|
|
||||||
|
|
||||||
updateQuery (query: string) {
|
|
||||||
const seq = this.getSequelize()
|
|
||||||
const options = { type: QueryTypes.UPDATE as QueryTypes.UPDATE }
|
|
||||||
|
|
||||||
return seq.query(query, options)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
setPluginField (pluginName: string, field: string, value: string) {
|
|
||||||
const seq = this.getSequelize()
|
|
||||||
|
|
||||||
const options = { type: QueryTypes.UPDATE }
|
|
||||||
|
|
||||||
return seq.query(`UPDATE "plugin" SET "${field}" = '${value}' WHERE "name" = '${pluginName}'`, options)
|
|
||||||
}
|
|
||||||
|
|
||||||
setPluginVersion (pluginName: string, newVersion: string) {
|
setPluginVersion (pluginName: string, newVersion: string) {
|
||||||
return this.setPluginField(pluginName, 'version', newVersion)
|
return this.setPluginField(pluginName, 'version', newVersion)
|
||||||
}
|
}
|
||||||
|
@ -104,10 +62,38 @@ export class SQLCommand extends AbstractCommand {
|
||||||
return this.setPluginField(pluginName, 'latestVersion', newVersion)
|
return this.setPluginField(pluginName, 'latestVersion', newVersion)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setPluginField (pluginName: string, field: string, value: string) {
|
||||||
|
return this.updateQuery(
|
||||||
|
`UPDATE "plugin" SET ${this.escapeColumnName(field)} = :value WHERE "name" = :pluginName`,
|
||||||
|
{ pluginName, value }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
selectQuery <T extends object> (query: string, replacements: { [id: string]: string | number } = {}) {
|
||||||
|
const seq = this.getSequelize()
|
||||||
|
const options = {
|
||||||
|
type: QueryTypes.SELECT as QueryTypes.SELECT,
|
||||||
|
replacements
|
||||||
|
}
|
||||||
|
|
||||||
|
return seq.query<T>(query, options)
|
||||||
|
}
|
||||||
|
|
||||||
|
updateQuery (query: string, replacements: { [id: string]: string | number } = {}) {
|
||||||
|
const seq = this.getSequelize()
|
||||||
|
const options = { type: QueryTypes.UPDATE as QueryTypes.UPDATE, replacements }
|
||||||
|
|
||||||
|
return seq.query(query, options)
|
||||||
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
async getPlaylistInfohash (playlistId: number) {
|
async getPlaylistInfohash (playlistId: number) {
|
||||||
const result = await this.selectQuery('SELECT "p2pMediaLoaderInfohashes" FROM "videoStreamingPlaylist" WHERE id = ' + playlistId)
|
const query = 'SELECT "p2pMediaLoaderInfohashes" FROM "videoStreamingPlaylist" WHERE id = :playlistId'
|
||||||
|
|
||||||
|
const result = await this.selectQuery<{ p2pMediaLoaderInfohashes: string }>(query, { playlistId })
|
||||||
if (!result || result.length === 0) return []
|
if (!result || result.length === 0) return []
|
||||||
|
|
||||||
return result[0].p2pMediaLoaderInfohashes
|
return result[0].p2pMediaLoaderInfohashes
|
||||||
|
@ -116,19 +102,14 @@ export class SQLCommand extends AbstractCommand {
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
setActorFollowScores (newScore: number) {
|
setActorFollowScores (newScore: number) {
|
||||||
const seq = this.getSequelize()
|
return this.updateQuery(`UPDATE "actorFollow" SET "score" = :newScore`, { newScore })
|
||||||
|
|
||||||
const options = { type: QueryTypes.UPDATE }
|
|
||||||
|
|
||||||
return seq.query(`UPDATE "actorFollow" SET "score" = ${newScore}`, options)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setTokenField (accessToken: string, field: string, value: string) {
|
setTokenField (accessToken: string, field: string, value: string) {
|
||||||
const seq = this.getSequelize()
|
return this.updateQuery(
|
||||||
|
`UPDATE "oAuthToken" SET ${this.escapeColumnName(field)} = :value WHERE "accessToken" = :accessToken`,
|
||||||
const options = { type: QueryTypes.UPDATE }
|
{ value, accessToken }
|
||||||
|
)
|
||||||
return seq.query(`UPDATE "oAuthToken" SET "${field}" = '${value}' WHERE "accessToken" = '${accessToken}'`, options)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async cleanup () {
|
async cleanup () {
|
||||||
|
@ -157,4 +138,9 @@ export class SQLCommand extends AbstractCommand {
|
||||||
return this.sequelize
|
return this.sequelize
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private escapeColumnName (columnName: string) {
|
||||||
|
return this.getSequelize().escape(columnName)
|
||||||
|
.replace(/^'/, '"')
|
||||||
|
.replace(/'$/, '"')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue