123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- const { expectEvent } = require('@openzeppelin/test-helpers');
- const { expect } = require('chai');
- const { expectRevertCustomError } = require('../../helpers/customError');
- const InitializableMock = artifacts.require('InitializableMock');
- const ConstructorInitializableMock = artifacts.require('ConstructorInitializableMock');
- const ChildConstructorInitializableMock = artifacts.require('ChildConstructorInitializableMock');
- const ReinitializerMock = artifacts.require('ReinitializerMock');
- const SampleChild = artifacts.require('SampleChild');
- const DisableBad1 = artifacts.require('DisableBad1');
- const DisableBad2 = artifacts.require('DisableBad2');
- const DisableOk = artifacts.require('DisableOk');
- contract('Initializable', function () {
- describe('basic testing without inheritance', function () {
- beforeEach('deploying', async function () {
- this.contract = await InitializableMock.new();
- });
- describe('before initialize', function () {
- it('initializer has not run', async function () {
- expect(await this.contract.initializerRan()).to.equal(false);
- });
- it('_initializing returns false before initialization', async function () {
- expect(await this.contract.isInitializing()).to.equal(false);
- });
- });
- describe('after initialize', function () {
- beforeEach('initializing', async function () {
- await this.contract.initialize();
- });
- it('initializer has run', async function () {
- expect(await this.contract.initializerRan()).to.equal(true);
- });
- it('_initializing returns false after initialization', async function () {
- expect(await this.contract.isInitializing()).to.equal(false);
- });
- it('initializer does not run again', async function () {
- await expectRevertCustomError(this.contract.initialize(), 'AlreadyInitialized', []);
- });
- });
- describe('nested under an initializer', function () {
- it('initializer modifier reverts', async function () {
- await expectRevertCustomError(this.contract.initializerNested(), 'AlreadyInitialized', []);
- });
- it('onlyInitializing modifier succeeds', async function () {
- await this.contract.onlyInitializingNested();
- expect(await this.contract.onlyInitializingRan()).to.equal(true);
- });
- });
- it('cannot call onlyInitializable function outside the scope of an initializable function', async function () {
- await expectRevertCustomError(this.contract.initializeOnlyInitializing(), 'NotInitializing', []);
- });
- });
- it('nested initializer can run during construction', async function () {
- const contract2 = await ConstructorInitializableMock.new();
- expect(await contract2.initializerRan()).to.equal(true);
- expect(await contract2.onlyInitializingRan()).to.equal(true);
- });
- it('multiple constructor levels can be initializers', async function () {
- const contract2 = await ChildConstructorInitializableMock.new();
- expect(await contract2.initializerRan()).to.equal(true);
- expect(await contract2.childInitializerRan()).to.equal(true);
- expect(await contract2.onlyInitializingRan()).to.equal(true);
- });
- describe('reinitialization', function () {
- beforeEach('deploying', async function () {
- this.contract = await ReinitializerMock.new();
- });
- it('can reinitialize', async function () {
- expect(await this.contract.counter()).to.be.bignumber.equal('0');
- await this.contract.initialize();
- expect(await this.contract.counter()).to.be.bignumber.equal('1');
- await this.contract.reinitialize(2);
- expect(await this.contract.counter()).to.be.bignumber.equal('2');
- await this.contract.reinitialize(3);
- expect(await this.contract.counter()).to.be.bignumber.equal('3');
- });
- it('can jump multiple steps', async function () {
- expect(await this.contract.counter()).to.be.bignumber.equal('0');
- await this.contract.initialize();
- expect(await this.contract.counter()).to.be.bignumber.equal('1');
- await this.contract.reinitialize(128);
- expect(await this.contract.counter()).to.be.bignumber.equal('2');
- });
- it('cannot nest reinitializers', async function () {
- expect(await this.contract.counter()).to.be.bignumber.equal('0');
- await expectRevertCustomError(this.contract.nestedReinitialize(2, 2), 'AlreadyInitialized', []);
- await expectRevertCustomError(this.contract.nestedReinitialize(2, 3), 'AlreadyInitialized', []);
- await expectRevertCustomError(this.contract.nestedReinitialize(3, 2), 'AlreadyInitialized', []);
- });
- it('can chain reinitializers', async function () {
- expect(await this.contract.counter()).to.be.bignumber.equal('0');
- await this.contract.chainReinitialize(2, 3);
- expect(await this.contract.counter()).to.be.bignumber.equal('2');
- });
- it('_getInitializedVersion returns right version', async function () {
- await this.contract.initialize();
- expect(await this.contract.getInitializedVersion()).to.be.bignumber.equal('1');
- await this.contract.reinitialize(12);
- expect(await this.contract.getInitializedVersion()).to.be.bignumber.equal('12');
- });
- describe('contract locking', function () {
- it('prevents initialization', async function () {
- await this.contract.disableInitializers();
- await expectRevertCustomError(this.contract.initialize(), 'AlreadyInitialized', []);
- });
- it('prevents re-initialization', async function () {
- await this.contract.disableInitializers();
- await expectRevertCustomError(this.contract.reinitialize(255), 'AlreadyInitialized', []);
- });
- it('can lock contract after initialization', async function () {
- await this.contract.initialize();
- await this.contract.disableInitializers();
- await expectRevertCustomError(this.contract.reinitialize(255), 'AlreadyInitialized', []);
- });
- });
- });
- describe('events', function () {
- it('constructor initialization emits event', async function () {
- const contract = await ConstructorInitializableMock.new();
- await expectEvent.inTransaction(contract.transactionHash, contract, 'Initialized', { version: '1' });
- });
- it('initialization emits event', async function () {
- const contract = await ReinitializerMock.new();
- const { receipt } = await contract.initialize();
- expect(receipt.logs.filter(({ event }) => event === 'Initialized').length).to.be.equal(1);
- expectEvent(receipt, 'Initialized', { version: '1' });
- });
- it('reinitialization emits event', async function () {
- const contract = await ReinitializerMock.new();
- const { receipt } = await contract.reinitialize(128);
- expect(receipt.logs.filter(({ event }) => event === 'Initialized').length).to.be.equal(1);
- expectEvent(receipt, 'Initialized', { version: '128' });
- });
- it('chained reinitialization emits multiple events', async function () {
- const contract = await ReinitializerMock.new();
- const { receipt } = await contract.chainReinitialize(2, 3);
- expect(receipt.logs.filter(({ event }) => event === 'Initialized').length).to.be.equal(2);
- expectEvent(receipt, 'Initialized', { version: '2' });
- expectEvent(receipt, 'Initialized', { version: '3' });
- });
- });
- describe('complex testing with inheritance', function () {
- const mother = '12';
- const gramps = '56';
- const father = '34';
- const child = '78';
- beforeEach('deploying', async function () {
- this.contract = await SampleChild.new();
- });
- beforeEach('initializing', async function () {
- await this.contract.initialize(mother, gramps, father, child);
- });
- it('initializes human', async function () {
- expect(await this.contract.isHuman()).to.be.equal(true);
- });
- it('initializes mother', async function () {
- expect(await this.contract.mother()).to.be.bignumber.equal(mother);
- });
- it('initializes gramps', async function () {
- expect(await this.contract.gramps()).to.be.bignumber.equal(gramps);
- });
- it('initializes father', async function () {
- expect(await this.contract.father()).to.be.bignumber.equal(father);
- });
- it('initializes child', async function () {
- expect(await this.contract.child()).to.be.bignumber.equal(child);
- });
- });
- describe('disabling initialization', function () {
- it('old and new patterns in bad sequence', async function () {
- await expectRevertCustomError(DisableBad1.new(), 'AlreadyInitialized', []);
- await expectRevertCustomError(DisableBad2.new(), 'AlreadyInitialized', []);
- });
- it('old and new patterns in good sequence', async function () {
- const ok = await DisableOk.new();
- await expectEvent.inConstruction(ok, 'Initialized', { version: '1' });
- await expectEvent.inConstruction(ok, 'Initialized', { version: '255' });
- });
- });
- });
|