You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
864 B
26 lines
864 B
4 years ago
|
const path = require('path');
|
||
|
const { promises: fs, constants: { F_OK } } = require('fs');
|
||
|
const { expect } = require('chai');
|
||
|
|
||
|
const { pathUpdates, updateImportPaths } = require('../scripts/migrate-imports.js');
|
||
|
|
||
|
describe('migrate-imports.js', function () {
|
||
|
it('every new path exists', async function () {
|
||
|
for (const p of Object.values(pathUpdates)) {
|
||
|
await fs.access(path.join('contracts', p), F_OK);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
it('replaces import paths in a file', async function () {
|
||
|
const source = `
|
||
|
import '@openzeppelin/contracts/math/Math.sol';
|
||
|
import '@openzeppelin/contracts-upgradeable/math/MathUpgradeable.sol';
|
||
|
`;
|
||
|
const expected = `
|
||
|
import '@openzeppelin/contracts/utils/math/Math.sol';
|
||
|
import '@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol';
|
||
|
`;
|
||
|
expect(updateImportPaths(source)).to.equal(expected);
|
||
|
});
|
||
|
});
|