mirror of
https://github.com/iptv-org/database.git
synced 2025-05-10 03:30:01 -04:00
Update tests
This commit is contained in:
parent
67387a0a29
commit
37b4197fb2
6 changed files with 198 additions and 150 deletions
38
tests/commands/db/export.test.ts
Normal file
38
tests/commands/db/export.test.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import { execSync } from 'child_process'
|
||||
import * as fs from 'fs-extra'
|
||||
import os from 'os'
|
||||
|
||||
beforeEach(() => {
|
||||
fs.emptyDirSync('tests/__data__/output')
|
||||
})
|
||||
|
||||
describe('db:export', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/input/db/export/data API_DIR=tests/__data__/output/api'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR =
|
||||
'SET "DATA_DIR=tests/__data__/input/db/export/data" && SET "API_DIR=tests/__data__/output/api" &&'
|
||||
}
|
||||
|
||||
it('can export data as json', () => {
|
||||
const cmd = `${ENV_VAR} npm run db:export`
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
|
||||
expect(content('output/api/blocklist.json')).toEqual(
|
||||
content('expected/db/export/api/blocklist.json')
|
||||
)
|
||||
expect(content('output/api/channels.json')).toEqual(
|
||||
content('expected/db/export/api/channels.json')
|
||||
)
|
||||
expect(content('output/api/timezones.json')).toEqual(
|
||||
content('expected/db/export/api/timezones.json')
|
||||
)
|
||||
expect(content('output/api/feeds.json')).toEqual(content('expected/db/export/api/feeds.json'))
|
||||
})
|
||||
})
|
||||
|
||||
function content(filepath: string) {
|
||||
return fs.readFileSync(`tests/__data__/${filepath}`, {
|
||||
encoding: 'utf8'
|
||||
})
|
||||
}
|
38
tests/commands/db/update.test.ts
Normal file
38
tests/commands/db/update.test.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import { execSync } from 'child_process'
|
||||
import * as fs from 'fs-extra'
|
||||
import os from 'os'
|
||||
|
||||
beforeEach(() => {
|
||||
fs.emptyDirSync('tests/__data__/output')
|
||||
fs.copySync('tests/__data__/input/db/update/data', 'tests/__data__/output/data')
|
||||
})
|
||||
|
||||
describe('db:update', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/output/data'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR = 'SET "DATA_DIR=tests/__data__/output/data" &&'
|
||||
}
|
||||
|
||||
it('can update db with data from issues', () => {
|
||||
const cmd = `${ENV_VAR} npm run db:update --silent`
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
|
||||
expect(content('output/data/blocklist.csv')).toEqual(
|
||||
content('expected/db/update/data/blocklist.csv')
|
||||
)
|
||||
expect(content('output/data/channels.csv')).toEqual(
|
||||
content('expected/db/update/data/channels.csv')
|
||||
)
|
||||
expect(content('output/data/feeds.csv')).toEqual(content('expected/db/update/data/feeds.csv'))
|
||||
expect(stdout).toEqual(
|
||||
'OUTPUT=closes #6871, closes #5871, closes #7901, closes #17612, closes #5901, closes #5902, closes #5903, closes #5701, closes #8900, closes #5900, closes #5899, closes #5898, closes #5897, closes #5891'
|
||||
)
|
||||
})
|
||||
})
|
||||
|
||||
function content(filepath: string) {
|
||||
return fs.readFileSync(`tests/__data__/${filepath}`, {
|
||||
encoding: 'utf8'
|
||||
})
|
||||
}
|
122
tests/commands/db/validate.test.ts
Normal file
122
tests/commands/db/validate.test.ts
Normal file
|
@ -0,0 +1,122 @@
|
|||
import { execSync } from 'child_process'
|
||||
import os from 'os'
|
||||
|
||||
type ExecError = {
|
||||
status: number
|
||||
stdout: string
|
||||
}
|
||||
|
||||
describe('db:validate', () => {
|
||||
it('shows an error if the number of columns in a row is incorrect', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/input/db/validate/wrong_num_cols'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR = 'SET "DATA_DIR=tests/__data__/input/db/validate/wrong_num_cols" &&'
|
||||
}
|
||||
const cmd = `${ENV_VAR} npm run db:validate`
|
||||
try {
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
process.exit(1)
|
||||
} catch (error) {
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, (error as ExecError).stdout)
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect((error as ExecError).stdout).toContain('row has the wrong number of columns')
|
||||
}
|
||||
})
|
||||
|
||||
it('shows an error if one of the lines ends with an invalid character', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/input/db/validate/invalid_line_ending'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR = 'SET "DATA_DIR=tests/__data__/input/db/validate/invalid_line_ending" &&'
|
||||
}
|
||||
const cmd = `${ENV_VAR} npm run db:validate`
|
||||
try {
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
process.exit(1)
|
||||
} catch (error) {
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, (error as ExecError).stdout)
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'row has the wrong line ending character, should be CRLF'
|
||||
)
|
||||
}
|
||||
})
|
||||
|
||||
it('shows an error if there are duplicates in the file', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/input/db/validate/duplicate'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR = 'SET "DATA_DIR=tests/__data__/input/db/validate/duplicate" &&'
|
||||
}
|
||||
const cmd = `${ENV_VAR} npm run db:validate`
|
||||
try {
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
process.exit(1)
|
||||
} catch (error) {
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, (error as ExecError).stdout)
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect((error as ExecError).stdout).toContain('category with id "aaa" already exists')
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'blocklist record with channel "002RadioTV.do" and ref "https://en.wikipedia.org/wiki/Lemurs_of_Madagascar_(book)" already exists'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'feed with channel "002RadioTV.do" and id "SD" already exists'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain('3 error(s)')
|
||||
}
|
||||
})
|
||||
|
||||
it('shows an error if the data contains an error', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/input/db/validate/invalid_value'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR = 'SET "DATA_DIR=tests/__data__/input/db/validate/invalid_value" &&'
|
||||
}
|
||||
const cmd = `${ENV_VAR} npm run db:validate`
|
||||
try {
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
process.exit(1)
|
||||
} catch (error) {
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, (error as ExecError).stdout)
|
||||
expect((error as ExecError).status).toBe(1)
|
||||
expect((error as ExecError).stdout).toContain('"aaa.us" is missing from the channels.csv')
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'"002RadioTV.do" has an invalid replaced_by "002RadioTV.do@4K"'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain('"24B.do" does not have a main feed')
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'002RadioTV.do: "website" must be a valid uri with a scheme matching the http|https pattern'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'"002RadioTV.do" has an more than one main feed'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain('"0TV.dk@SD" has the wrong channel "0TV.dk"')
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'"0TV.dk@SD" has the wrong broadcast_area "c/BE"'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'"0TV.dk@SD" has the wrong timezones "Europe/Copenhagen"'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain(
|
||||
'0TV.dk@SD: "video_format" with value "576I" fails to match the required pattern'
|
||||
)
|
||||
expect((error as ExecError).stdout).toContain('10 error(s)')
|
||||
}
|
||||
})
|
||||
|
||||
it('does not show an error if all data are correct', () => {
|
||||
let ENV_VAR = 'DATA_DIR=tests/__data__/input/db/validate/valid_data'
|
||||
if (os.platform() === 'win32') {
|
||||
ENV_VAR = 'SET "DATA_DIR=tests/__data__/input/db/validate/valid_data" &&'
|
||||
}
|
||||
const cmd = `${ENV_VAR} npm run db:validate`
|
||||
try {
|
||||
const stdout = execSync(cmd, { encoding: 'utf8' })
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
|
||||
} catch (error) {
|
||||
if (process.env.DEBUG === 'true') console.log(cmd, (error as ExecError).stdout)
|
||||
process.exit(1)
|
||||
}
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue