Skip to content

Commit

Permalink
Add python generator compare tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
goodov committed Oct 23, 2024
1 parent f767ef8 commit adab0c8
Show file tree
Hide file tree
Showing 6 changed files with 140 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-src.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ jobs:

- name: build
run: npm run build

- name: Compare python and typescript seed generator
run: npm run seed_tools compare_python_gen
3 changes: 1 addition & 2 deletions src/scripts/lint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ function getLintAllCommands(options: Options): string[] {
return [
'prettier . --ignore-unknown' + (options.fix ? ' --write' : ' --check'),
'eslint . --config src/.eslintrc.js' + (options.fix ? ' --fix' : ''),
// TODO(goodov): Add a command to lint JSON studies when per-file structure
// appears.
'npm run seed_tools -- lint studies' + (options.fix ? ' --fix' : ''),
];
}

Expand Down
74 changes: 74 additions & 0 deletions src/seed_tools/commands/compare_python_gen.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
// Copyright (c) 2024 The Brave Authors. All rights reserved.
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.

import { Command } from '@commander-js/extra-typings';
import { execSync } from 'child_process';
import { assert } from 'console';
import { existsSync, promises as fs } from 'fs';
import * as os from 'os';
import * as path from 'path';

export default function createCommand() {
return new Command('compare_python_gen')
.description(
'Run python and typescript seed generators and compare results',
)
.option('--python <value>', 'Path to python executable', 'python3')
.action(main);
}

interface Options {
python: string;
}

async function main(options: Options) {
const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), 'seed-compare-'));
const mockSerialNumber = 'mock_serial_number';

try {
const pythonSeedFilePath = path.join(tempDir, 'python_seed.bin');
const typescriptSeedFilePath = path.join(tempDir, 'typescript_seed.bin');
const pythonSeedSerialNumberFilePath = path.join(
tempDir,
'python_serialnumber',
);
const typescriptSeedSerialNumberFilePath = path.join(
tempDir,
'typescript_serialnumber',
);

// Run Python seed generator
execSync(
`${options.python} ./seed/serialize.py ./seed/seed.json --mock_serial_number ${mockSerialNumber}`,
{
stdio: 'inherit',
},
);
// Move generated seed.bin and serialnumber to temporary directory.
await moveFile('./seed.bin', pythonSeedFilePath);
await moveFile('./serialnumber', pythonSeedSerialNumberFilePath);

// Run TypeScript seed generator
execSync(
`npm run seed_tools create ./studies ${typescriptSeedFilePath} -- --mock_serial_number ${mockSerialNumber} --output_serial_number_file ${typescriptSeedSerialNumberFilePath}`,
{ stdio: 'inherit' },
);

// Run seed comparator
execSync(
`npm run seed_tools compare_seeds ${pythonSeedFilePath} ${typescriptSeedFilePath} ${pythonSeedSerialNumberFilePath} ${typescriptSeedSerialNumberFilePath}`,
{ stdio: 'inherit' },
);
} finally {
// Clean up temporary directory
await fs.rm(tempDir, { recursive: true, force: true });
}
}

async function moveFile(src: string, dest: string) {
await fs.copyFile(src, dest);
await fs.unlink(src);
assert(!existsSync(src));
}
39 changes: 31 additions & 8 deletions src/seed_tools/commands/compare_seeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@ export default function createCommand() {
.description('Compare two seed.bin')
.argument('<seed1_file>', 'seed1 file')
.argument('<seed2_file>', 'seed2 file')
.argument('<seed1_serialnumber>', 'seed1 serialnumber file')
.argument('<seed2_serialnumber>', 'seed2 serialnumber file')
.action(main);
}

async function main(seed1FilePath: string, seed2FilePath: string) {
async function main(
seed1FilePath: string,
seed2FilePath: string,
seed1SerialnumberFilePath: string,
seed2SerialnumberFilePath: string,
) {
const seed1Binary: Buffer = await fs.readFile(seed1FilePath);
const seed2Binary: Buffer = await fs.readFile(seed2FilePath);
if (seed1Binary.equals(seed2Binary)) {
console.log('Seeds are equal');
process.exit(0);
}

const seed1Content = VariationsSeed.fromBinary(seed1Binary);
const seed2Content = VariationsSeed.fromBinary(seed2Binary);

Expand Down Expand Up @@ -52,9 +54,30 @@ async function main(seed1FilePath: string, seed2FilePath: string) {
seed2FilePath,
),
);
} else {
process.exit(1);
}

if (!seed1Binary.equals(seed2Binary)) {
console.error('Seeds semantically equal but binary different');
process.exit(1);
}

const seed1Serialnumber: string = await fs.readFile(
seed1SerialnumberFilePath,
'utf8',
);
const seed2Serialnumber: string = await fs.readFile(
seed2SerialnumberFilePath,
'utf8',
);
if (seed1Content.serial_number !== seed1Serialnumber) {
console.error('Seed1 serial number does not match');
process.exit(1);
}
if (seed2Content.serial_number !== seed2Serialnumber) {
console.error('Seed2 serial number does not match');
process.exit(1);
}

process.exit(1);
console.log('Seeds are equal');
}
33 changes: 29 additions & 4 deletions src/seed_tools/commands/create.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,35 @@ describe('create command', () => {
);
});

describe('serial number is equal in the seed and in the generated file', () => {
const validSeedsDir = path.join(testDataDir, 'valid_seeds');
it.each(fs_sync.readdirSync(validSeedsDir))(
'correctly creates %s',
async (testCase) => {
const testCaseDir = path.join(validSeedsDir, testCase);
const studiesDir = path.join(testCaseDir, 'studies');
const outputFile = path.join(tempDir, 'output.bin');
const serialNumberPath = path.join(tempDir, 'serial_number.txt');

await create().parseAsync([
'node',
'create',
studiesDir,
outputFile,
'--output_serial_number_file',
serialNumberPath,
]);

const output = await fs.readFile(outputFile);
const outputSerialNumber = await fs.readFile(serialNumberPath, 'utf-8');
expect(outputSerialNumber).not.toEqual('1');
expect(VariationsSeed.fromBinary(output).serial_number).toEqual(
outputSerialNumber,
);
},
);
});

describe('invalid studies', () => {
const invalidStudiesDir = path.join(testDataDir, 'invalid_studies');
it.each(fs_sync.readdirSync(invalidStudiesDir))(
Expand All @@ -117,8 +146,6 @@ describe('create command', () => {
'create',
studiesDir,
outputFile,
'--mock_serial_number',
'1',
'--output_serial_number_file',
serialNumberPath,
]),
Expand All @@ -143,8 +170,6 @@ describe('create command', () => {
'create',
studiesDir,
outputFile,
'--mock_serial_number',
'1',
'--output_serial_number_file',
serialNumberPath,
]),
Expand Down
2 changes: 2 additions & 0 deletions src/seed_tools/seed_tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import { program } from '@commander-js/extra-typings';

import compare_python_gen from './commands/compare_python_gen';
import compare_seeds from './commands/compare_seeds';
import create from './commands/create';
import lint from './commands/lint';
Expand All @@ -13,6 +14,7 @@ import split_seed_json from './commands/split_seed_json';
program
.name('seed_tools')
.description('Seed tools for manipulating study files.')
.addCommand(compare_python_gen())
.addCommand(compare_seeds())
.addCommand(create())
.addCommand(lint())
Expand Down

0 comments on commit adab0c8

Please sign in to comment.