2023-03-23 09:22:17 +00:00
|
|
|
/**
|
2024-01-03 10:11:33 +00:00
|
|
|
* @license
|
|
|
|
* Copyright 2023 Google Inc.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2023-03-23 09:22:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// TODO: this could be an eslint rule probably.
|
2023-11-14 12:07:24 +00:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
import url from 'url';
|
2023-03-23 09:22:17 +00:00
|
|
|
|
2023-11-14 12:07:24 +00:00
|
|
|
import prettier from 'prettier';
|
2023-03-23 09:22:17 +00:00
|
|
|
|
2023-11-14 12:07:24 +00:00
|
|
|
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
|
2023-03-23 09:22:17 +00:00
|
|
|
const source = 'test/TestExpectations.json';
|
|
|
|
const testExpectations = JSON.parse(fs.readFileSync(source, 'utf-8'));
|
2023-11-14 12:07:24 +00:00
|
|
|
const committedExpectations = structuredClone(testExpectations);
|
2023-03-23 09:22:17 +00:00
|
|
|
|
2023-11-14 12:07:24 +00:00
|
|
|
const prettierConfig = await import(
|
|
|
|
path.join(__dirname, '..', '.prettierrc.cjs')
|
|
|
|
);
|
2023-11-13 12:39:24 +00:00
|
|
|
|
2023-03-23 09:22:17 +00:00
|
|
|
function getSpecificity(item) {
|
|
|
|
return (
|
|
|
|
item.parameters.length +
|
|
|
|
(item.testIdPattern.includes('*')
|
|
|
|
? item.testIdPattern === '*'
|
|
|
|
? 0
|
|
|
|
: 1
|
|
|
|
: 2)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
testExpectations.sort((a, b) => {
|
|
|
|
const result = getSpecificity(a) - getSpecificity(b);
|
|
|
|
if (result === 0) {
|
|
|
|
return a.testIdPattern.localeCompare(b.testIdPattern);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
|
|
|
|
testExpectations.forEach(item => {
|
|
|
|
item.parameters.sort();
|
|
|
|
item.expectations.sort();
|
|
|
|
item.platforms.sort();
|
2024-02-14 17:43:02 +00:00
|
|
|
// Delete comments for PASS expectations. They are likely outdated.
|
|
|
|
if (item.expectations.length === 1 && item.expectations[0] === 'PASS') {
|
|
|
|
delete item.comment;
|
|
|
|
}
|
2023-03-23 09:22:17 +00:00
|
|
|
});
|
|
|
|
|
2023-11-13 12:39:24 +00:00
|
|
|
if (process.argv.includes('--lint')) {
|
|
|
|
if (
|
2023-11-14 12:07:24 +00:00
|
|
|
JSON.stringify(committedExpectations) !== JSON.stringify(testExpectations)
|
2023-11-13 12:39:24 +00:00
|
|
|
) {
|
|
|
|
console.error(
|
|
|
|
`${source} is not formatted properly. Run 'npm run format:expectations'.`
|
|
|
|
);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fs.writeFileSync(
|
|
|
|
source,
|
2023-11-14 12:07:24 +00:00
|
|
|
await prettier.format(JSON.stringify(testExpectations), {
|
|
|
|
...prettierConfig,
|
2023-11-13 12:39:24 +00:00
|
|
|
parser: 'json',
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|