mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 01:34:27 +00:00 
			
		
		
		
	- Add basic frontend unit testing infrastructure using jest in ESM mode - Rename 'make test' to 'make test-backend' - Introduce 'make test-frontend' and 'make test' that runs both - Bump Node.js requirement to v12. v10 will be EOL in less than a month. - Convert all build-related JS files to ESM. I opted to run frontend tests run as part of the compliance pipeline because they complete fast and are not platform-specific like the golang tests.
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
import fastGlob from 'fast-glob';
 | 
						|
import {optimize, extendDefaultPlugins} from 'svgo';
 | 
						|
import {resolve, parse, dirname} from 'path';
 | 
						|
import {readFile, writeFile, mkdir} from 'fs/promises';
 | 
						|
import {fileURLToPath} from 'url';
 | 
						|
 | 
						|
const __dirname = dirname(fileURLToPath(import.meta.url));
 | 
						|
const glob = (pattern) => fastGlob.sync(pattern, {cwd: resolve(__dirname), absolute: true});
 | 
						|
const outputDir = resolve(__dirname, '../public/img/svg');
 | 
						|
 | 
						|
function exit(err) {
 | 
						|
  if (err) console.error(err);
 | 
						|
  process.exit(err ? 1 : 0);
 | 
						|
}
 | 
						|
 | 
						|
async function processFile(file, {prefix, fullName} = {}) {
 | 
						|
  let name;
 | 
						|
 | 
						|
  if (fullName) {
 | 
						|
    name = fullName;
 | 
						|
  } else {
 | 
						|
    name = parse(file).name;
 | 
						|
    if (prefix) name = `${prefix}-${name}`;
 | 
						|
    if (prefix === 'octicon') name = name.replace(/-[0-9]+$/, ''); // chop of '-16' on octicons
 | 
						|
  }
 | 
						|
 | 
						|
  const {data} = optimize(await readFile(file, 'utf8'), {
 | 
						|
    plugins: extendDefaultPlugins([
 | 
						|
      'removeXMLNS',
 | 
						|
      'removeDimensions',
 | 
						|
      {
 | 
						|
        name: 'addClassesToSVGElement',
 | 
						|
        params: {classNames: ['svg', name]},
 | 
						|
      },
 | 
						|
      {
 | 
						|
        name: 'addAttributesToSVGElement',
 | 
						|
        params: {attributes: [{'width': '16'}, {'height': '16'}, {'aria-hidden': 'true'}]},
 | 
						|
      },
 | 
						|
    ]),
 | 
						|
  });
 | 
						|
  await writeFile(resolve(outputDir, `${name}.svg`), data);
 | 
						|
}
 | 
						|
 | 
						|
function processFiles(pattern, opts) {
 | 
						|
  return glob(pattern).map((file) => processFile(file, opts));
 | 
						|
}
 | 
						|
 | 
						|
async function main() {
 | 
						|
  try {
 | 
						|
    await mkdir(outputDir);
 | 
						|
  } catch {}
 | 
						|
 | 
						|
  await Promise.all([
 | 
						|
    ...processFiles('../node_modules/@primer/octicons/build/svg/*-16.svg', {prefix: 'octicon'}),
 | 
						|
    ...processFiles('../web_src/svg/*.svg'),
 | 
						|
    ...processFiles('../public/img/gitea.svg', {fullName: 'gitea-gitea'}),
 | 
						|
  ]);
 | 
						|
}
 | 
						|
 | 
						|
main().then(exit).catch(exit);
 | 
						|
 |