* Removes references to tslint in contract-wrappers which are obsoleted since https://github.com/0xProject/protocol/pull/584 * Remove tslint references in contracts/utils and test utils obsoleted by https://github.com/0xProject/protocol/pull/589 * Remove tslint references in contracts/zeroex and test utils obsoleted by https://github.com/0xProject/protocol/pull/587 * Remove other obsoleted tslint references * Update contributing guidelines with eslint * Fix prettier errors
145 lines
6.1 KiB
TypeScript
145 lines
6.1 KiB
TypeScript
import { chaiSetup, provider, randomAddress, txDefaults, web3Wrapper } from '@0x/contracts-test-utils';
|
|
import { BlockchainLifecycle } from '@0x/dev-utils';
|
|
import { BigNumber, LibAddressArrayRevertErrors } from '@0x/utils';
|
|
import * as chai from 'chai';
|
|
import * as _ from 'lodash';
|
|
|
|
import { artifacts } from './artifacts';
|
|
import { TestLibAddressArrayContract } from './wrappers';
|
|
|
|
chaiSetup.configure();
|
|
const expect = chai.expect;
|
|
const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
|
|
|
|
describe('LibAddressArray', () => {
|
|
let lib: TestLibAddressArrayContract;
|
|
|
|
before(async () => {
|
|
await blockchainLifecycle.startAsync();
|
|
// Deploy LibAddressArray
|
|
lib = await TestLibAddressArrayContract.deployFrom0xArtifactAsync(
|
|
artifacts.TestLibAddressArray,
|
|
provider,
|
|
txDefaults,
|
|
artifacts,
|
|
);
|
|
});
|
|
after(async () => {
|
|
await blockchainLifecycle.revertAsync();
|
|
});
|
|
|
|
describe('append', () => {
|
|
it('should append to empty array', async () => {
|
|
const addr = randomAddress();
|
|
const result = await lib.publicAppend([], addr).callAsync();
|
|
const expected = [addr];
|
|
expect(result).to.deep.equal(expected);
|
|
});
|
|
|
|
it('should append to non-empty array', async () => {
|
|
const arr = _.times(3, () => randomAddress());
|
|
const addr = randomAddress();
|
|
const expected = [...arr, addr];
|
|
const result = await lib.publicAppend(arr, addr).callAsync();
|
|
expect(result).to.deep.equal(expected);
|
|
});
|
|
|
|
it('should revert if the free memory pointer was moved to before the end of the array', async () => {
|
|
const arr = _.times(3, () => randomAddress());
|
|
const addr = randomAddress();
|
|
const freeMemOffset = new BigNumber(-1);
|
|
const addressArrayEndPtr = new BigNumber(256);
|
|
const expectedError = new LibAddressArrayRevertErrors.MismanagedMemoryError(
|
|
addressArrayEndPtr.plus(freeMemOffset),
|
|
addressArrayEndPtr,
|
|
);
|
|
return expect(lib.testAppendRealloc(arr, freeMemOffset, addr).callAsync()).to.revertWith(expectedError);
|
|
});
|
|
|
|
it('should keep the same memory address if free memory pointer does not move', async () => {
|
|
const arr = _.times(3, () => randomAddress());
|
|
const addr = randomAddress();
|
|
const freeMemOffset = new BigNumber(0);
|
|
const expected = [...arr, addr];
|
|
const [result, oldArrayMemStart, newArrayMemStart] = await lib
|
|
.testAppendRealloc(arr, freeMemOffset, addr)
|
|
.callAsync();
|
|
expect(result).to.deep.equal(expected);
|
|
expect(newArrayMemStart).bignumber.to.be.equal(oldArrayMemStart);
|
|
});
|
|
|
|
it('should change memory address if free memory pointer advances', async () => {
|
|
const arr = _.times(3, () => randomAddress());
|
|
const addr = randomAddress();
|
|
const freeMemOffset = new BigNumber(1);
|
|
const expectedArray = [...arr, addr];
|
|
const [result, oldArrayMemStart, newArrayMemStart] = await lib
|
|
.testAppendRealloc(arr, freeMemOffset, addr)
|
|
.callAsync();
|
|
// The new location should be the end of the old array + freeMemOffset.
|
|
const expectedNewArrayMemStart = oldArrayMemStart.plus((arr.length + 1) * 32).plus(freeMemOffset);
|
|
expect(result).to.deep.equal(expectedArray);
|
|
expect(newArrayMemStart).bignumber.to.be.equal(expectedNewArrayMemStart);
|
|
});
|
|
});
|
|
|
|
describe('contains', () => {
|
|
it('should return false on an empty array', async () => {
|
|
const addr = randomAddress();
|
|
const isFound = await lib.publicContains([], addr).callAsync();
|
|
expect(isFound).to.equal(false);
|
|
});
|
|
|
|
it('should return false on a missing item', async () => {
|
|
const arr = _.times(3, () => randomAddress());
|
|
const addr = randomAddress();
|
|
const isFound = await lib.publicContains(arr, addr).callAsync();
|
|
expect(isFound).to.equal(false);
|
|
});
|
|
|
|
it('should return true on an included item', async () => {
|
|
const arr = _.times(4, () => randomAddress());
|
|
const addr = _.sample(arr) as string;
|
|
const isFound = await lib.publicContains(arr, addr).callAsync();
|
|
expect(isFound).to.equal(true);
|
|
});
|
|
|
|
it('should return true on the only item in the array', async () => {
|
|
const arr = _.times(1, () => randomAddress());
|
|
const isFound = await lib.publicContains(arr, arr[0]).callAsync();
|
|
expect(isFound).to.equal(true);
|
|
});
|
|
});
|
|
|
|
describe('indexOf', () => {
|
|
it('should fail on an empty array', async () => {
|
|
const addr = randomAddress();
|
|
const [isSuccess] = await lib.publicIndexOf([], addr).callAsync();
|
|
expect(isSuccess).to.equal(false);
|
|
});
|
|
|
|
it('should fail on a missing item', async () => {
|
|
const arr = _.times(3, () => randomAddress());
|
|
const addr = randomAddress();
|
|
const [isSuccess] = await lib.publicIndexOf(arr, addr).callAsync();
|
|
expect(isSuccess).to.equal(false);
|
|
});
|
|
|
|
it('should succeed on an included item', async () => {
|
|
const arr = _.times(4, () => randomAddress());
|
|
const expectedIndexOf = _.random(0, arr.length - 1);
|
|
const addr = arr[expectedIndexOf];
|
|
const [isSuccess, index] = await lib.publicIndexOf(arr, addr).callAsync();
|
|
expect(isSuccess).to.equal(true);
|
|
expect(index).bignumber.to.equal(expectedIndexOf);
|
|
});
|
|
|
|
it('should succeed on the only item in the array', async () => {
|
|
const arr = _.times(1, () => randomAddress());
|
|
const [isSuccess, index] = await lib.publicIndexOf(arr, arr[0]).callAsync();
|
|
expect(isSuccess).to.equal(true);
|
|
expect(index).bignumber.to.equal(0);
|
|
});
|
|
});
|
|
});
|