build new dist

This commit is contained in:
Connor 2024-10-15 13:25:55 -05:00
parent 1e6f7066d9
commit 484ed7ce5c
No known key found for this signature in database
GPG key ID: 455C6C81CB2BD091
5 changed files with 3193 additions and 3306 deletions

View file

@ -1,69 +1,69 @@
import * as fs from 'fs'
import * as path from 'path'
// import * as fs from 'fs'
// import * as path from 'path'
import {DartJsonParser} from '../src/parsers/dart-json/dart-json-parser'
import {ParseOptions} from '../src/test-parser'
import {getReport} from '../src/report/get-report'
import {normalizeFilePath} from '../src/utils/path-utils'
// import {DartJsonParser} from '../src/parsers/dart-json/dart-json-parser'
// import {ParseOptions} from '../src/test-parser'
// import {getReport} from '../src/report/get-report'
// import {normalizeFilePath} from '../src/utils/path-utils'
describe('dart-json tests', () => {
it('produces empty test run result when there are no test cases', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'dart-json.json')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
// describe('dart-json tests', () => {
// it('produces empty test run result when there are no test cases', async () => {
// const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'dart-json.json')
// const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
// const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const opts: ParseOptions = {
parseErrors: true,
trackedFiles: []
}
// const opts: ParseOptions = {
// parseErrors: true,
// trackedFiles: []
// }
const parser = new DartJsonParser(opts, 'dart')
const result = await parser.parse(filePath, fileContent)
expect(result.tests).toBe(0)
expect(result.result).toBe('success')
})
// const parser = new DartJsonParser(opts, 'dart')
// const result = await parser.parse(filePath, fileContent)
// expect(result.tests).toBe(0)
// expect(result.result).toBe('success')
// })
it('matches report snapshot', async () => {
const opts: ParseOptions = {
parseErrors: true,
trackedFiles: ['lib/main.dart', 'test/main_test.dart', 'test/second_test.dart']
//workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dart/'
}
// it('matches report snapshot', async () => {
// const opts: ParseOptions = {
// parseErrors: true,
// trackedFiles: ['lib/main.dart', 'test/main_test.dart', 'test/second_test.dart']
// //workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dart/'
// }
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
const outputPath = path.join(__dirname, '__outputs__', 'dart-json.md')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
// const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
// const outputPath = path.join(__dirname, '__outputs__', 'dart-json.md')
// const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
// const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const parser = new DartJsonParser(opts, 'dart')
const result = await parser.parse(filePath, fileContent)
expect(result).toMatchSnapshot()
// const parser = new DartJsonParser(opts, 'dart')
// const result = await parser.parse(filePath, fileContent)
// expect(result).toMatchSnapshot()
const report = getReport([result])
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
fs.writeFileSync(outputPath, report)
})
// const report = getReport([result])
// fs.mkdirSync(path.dirname(outputPath), {recursive: true})
// fs.writeFileSync(outputPath, report)
// })
it('report from rrousselGit/provider test results matches snapshot', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'flutter', 'provider-test-results.json')
const trackedFilesPath = path.join(__dirname, 'fixtures', 'external', 'flutter', 'files.txt')
const outputPath = path.join(__dirname, '__outputs__', 'provider-test-results.md')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
// it('report from rrousselGit/provider test results matches snapshot', async () => {
// const fixturePath = path.join(__dirname, 'fixtures', 'external', 'flutter', 'provider-test-results.json')
// const trackedFilesPath = path.join(__dirname, 'fixtures', 'external', 'flutter', 'files.txt')
// const outputPath = path.join(__dirname, '__outputs__', 'provider-test-results.md')
// const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
// const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
const opts: ParseOptions = {
trackedFiles,
parseErrors: true
//workDir: '/__w/provider/provider/'
}
// const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
// const opts: ParseOptions = {
// trackedFiles,
// parseErrors: true
// //workDir: '/__w/provider/provider/'
// }
const parser = new DartJsonParser(opts, 'flutter')
const result = await parser.parse(filePath, fileContent)
expect(result).toMatchSnapshot()
// const parser = new DartJsonParser(opts, 'flutter')
// const result = await parser.parse(filePath, fileContent)
// expect(result).toMatchSnapshot()
const report = getReport([result])
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
fs.writeFileSync(outputPath, report)
})
})
// const report = getReport([result])
// fs.mkdirSync(path.dirname(outputPath), {recursive: true})
// fs.writeFileSync(outputPath, report)
// })
// })