Update lint.test.ts

This commit is contained in:
freearhey 2025-01-03 11:52:50 +03:00
parent cbeac9dd35
commit bb36840b72

View file

@ -9,13 +9,27 @@ describe('channels:lint', () => {
it('will show a message if the file contains a syntax error', () => {
try {
const cmd =
'npm run channels:lint --- --channels=tests/__data__/input/channels-lint/channels-lint.channels.xml'
'npm run channels:lint --- --channels=tests/__data__/input/channels-lint/error.channels.xml'
execSync(cmd, { encoding: 'utf8' })
process.exit(1)
} catch (error) {
expect((error as ExecError).status).toBe(1)
expect((error as ExecError).stdout).toContain(
"channels-lint.channels.xml\n 3:0 Element 'channel': The attribute 'lang' is required but missing.\n\n1 error(s)\n"
"error.channels.xml\n 3:0 Element 'channel': The attribute 'lang' is required but missing.\n\n1 error(s)\n"
)
}
})
it('will show a message if an error occurred while parsing an xml file', () => {
try {
const cmd =
'npm run channels:lint --- --channels=tests/__data__/input/channels-lint/invalid.channels.xml'
execSync(cmd, { encoding: 'utf8' })
process.exit(1)
} catch (error) {
expect((error as ExecError).status).toBe(1)
expect((error as ExecError).stdout).toContain(
'invalid.channels.xml\n 2:6 XML declaration allowed only at the start of the document\n'
)
}
})