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';
|
2024-02-15 09:57:06 +00:00
|
|
|
let 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
|
|
|
|
2024-02-15 09:57:06 +00:00
|
|
|
function testIdMatchesExpectationPattern(title, pattern) {
|
|
|
|
const patternRegExString = pattern
|
|
|
|
// Replace `*` with non special character
|
|
|
|
.replace(/\*/g, '--STAR--')
|
|
|
|
// Escape special characters https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
|
|
|
|
.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
|
|
// Replace placeholder with greedy match
|
|
|
|
.replace(/--STAR--/g, '(.*)?');
|
|
|
|
// Match beginning and end explicitly
|
|
|
|
const patternRegEx = new RegExp(`^${patternRegExString}$`);
|
|
|
|
return patternRegEx.test(title);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
});
|
|
|
|
|
2024-02-15 09:57:06 +00:00
|
|
|
function isSubset(superset, subset) {
|
|
|
|
let isSubset = true;
|
|
|
|
|
|
|
|
for (const p of subset) {
|
|
|
|
if (!superset.has(p)) {
|
|
|
|
isSubset = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return isSubset;
|
|
|
|
}
|
|
|
|
|
|
|
|
const toBeRemoved = new Set();
|
|
|
|
for (let i = testExpectations.length - 1; i >= 0; i--) {
|
|
|
|
const expectation = testExpectations[i];
|
|
|
|
const params = new Set(expectation.parameters);
|
|
|
|
const labels = new Set(expectation.expectations);
|
|
|
|
const platforms = new Set(expectation.platforms);
|
|
|
|
|
|
|
|
for (let j = i - 1; j >= 0; j--) {
|
|
|
|
const candidate = testExpectations[j];
|
|
|
|
const candidateParams = new Set(candidate.parameters);
|
|
|
|
const candidateLabels = new Set(candidate.expectations);
|
|
|
|
const candidatePlatforms = new Set(candidate.platforms);
|
|
|
|
|
|
|
|
if (
|
|
|
|
testIdMatchesExpectationPattern(
|
|
|
|
expectation.testIdPattern,
|
|
|
|
candidate.testIdPattern
|
|
|
|
) &&
|
|
|
|
isSubset(candidateParams, params) &&
|
|
|
|
isSubset(candidatePlatforms, platforms)
|
|
|
|
) {
|
|
|
|
if (isSubset(candidateLabels, labels)) {
|
|
|
|
console.log('removing', expectation, 'already covered by', candidate);
|
|
|
|
toBeRemoved.add(expectation);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
testExpectations = testExpectations.filter(item => {
|
|
|
|
return !toBeRemoved.has(item);
|
|
|
|
});
|
|
|
|
|
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',
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|