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.
131 lines
5.4 KiB
131 lines
5.4 KiB
const { ethers } = require('hardhat');
|
|
const { expect } = require('chai');
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
const { PANIC_CODES } = require('@nomicfoundation/hardhat-chai-matchers/panic');
|
|
|
|
const { TYPES } = require('../../../scripts/generate/templates/Heap.opts');
|
|
|
|
async function fixture() {
|
|
const mock = await ethers.deployContract('$Heap');
|
|
return { mock };
|
|
}
|
|
|
|
describe('Heap', function () {
|
|
beforeEach(async function () {
|
|
Object.assign(this, await loadFixture(fixture));
|
|
});
|
|
|
|
for (const { struct, valueType } of TYPES) {
|
|
describe(struct, function () {
|
|
const popEvent = `return$pop_Heap_${struct}`;
|
|
const replaceEvent = `return$replace_Heap_${struct}_${valueType}`;
|
|
|
|
beforeEach(async function () {
|
|
this.helper = {
|
|
clear: (...args) => this.mock[`$clear_Heap_${struct}`](0, ...args),
|
|
insert: (...args) => this.mock[`$insert(uint256,${valueType})`](0, ...args),
|
|
replace: (...args) => this.mock[`$replace(uint256,${valueType})`](0, ...args),
|
|
length: (...args) => this.mock[`$length_Heap_${struct}`](0, ...args),
|
|
pop: (...args) => this.mock[`$pop_Heap_${struct}`](0, ...args),
|
|
peek: (...args) => this.mock[`$peek_Heap_${struct}`](0, ...args),
|
|
};
|
|
});
|
|
|
|
it('starts empty', async function () {
|
|
expect(await this.helper.length()).to.equal(0n);
|
|
});
|
|
|
|
it('peek, pop and replace from empty', async function () {
|
|
await expect(this.helper.peek()).to.be.revertedWithPanic(PANIC_CODES.ARRAY_ACCESS_OUT_OF_BOUNDS);
|
|
await expect(this.helper.pop()).to.be.revertedWithPanic(PANIC_CODES.POP_ON_EMPTY_ARRAY);
|
|
await expect(this.helper.replace(0n)).to.be.revertedWithPanic(PANIC_CODES.POP_ON_EMPTY_ARRAY);
|
|
});
|
|
|
|
it('clear', async function () {
|
|
await this.helper.insert(42n);
|
|
|
|
expect(await this.helper.length()).to.equal(1n);
|
|
expect(await this.helper.peek()).to.equal(42n);
|
|
|
|
await this.helper.clear();
|
|
|
|
expect(await this.helper.length()).to.equal(0n);
|
|
await expect(this.helper.peek()).to.be.revertedWithPanic(PANIC_CODES.ARRAY_ACCESS_OUT_OF_BOUNDS);
|
|
});
|
|
|
|
it('support duplicated items', async function () {
|
|
expect(await this.helper.length()).to.equal(0n);
|
|
|
|
// insert 5 times
|
|
await this.helper.insert(42n);
|
|
await this.helper.insert(42n);
|
|
await this.helper.insert(42n);
|
|
await this.helper.insert(42n);
|
|
await this.helper.insert(42n);
|
|
|
|
// pop 5 times
|
|
await expect(this.helper.pop()).to.emit(this.mock, popEvent).withArgs(42n);
|
|
await expect(this.helper.pop()).to.emit(this.mock, popEvent).withArgs(42n);
|
|
await expect(this.helper.pop()).to.emit(this.mock, popEvent).withArgs(42n);
|
|
await expect(this.helper.pop()).to.emit(this.mock, popEvent).withArgs(42n);
|
|
await expect(this.helper.pop()).to.emit(this.mock, popEvent).withArgs(42n);
|
|
|
|
// popping a 6th time panics
|
|
await expect(this.helper.pop()).to.be.revertedWithPanic(PANIC_CODES.POP_ON_EMPTY_ARRAY);
|
|
});
|
|
|
|
it('insert, pop and replace', async function () {
|
|
const heap = [];
|
|
for (const { op, value } of [
|
|
{ op: 'insert', value: 712 }, // [712]
|
|
{ op: 'insert', value: 20 }, // [20, 712]
|
|
{ op: 'insert', value: 4337 }, // [20, 712, 4437]
|
|
{ op: 'pop' }, // 20, [712, 4437]
|
|
{ op: 'insert', value: 1559 }, // [712, 1559, 4437]
|
|
{ op: 'insert', value: 165 }, // [165, 712, 1559, 4437]
|
|
{ op: 'insert', value: 155 }, // [155, 165, 712, 1559, 4437]
|
|
{ op: 'insert', value: 7702 }, // [155, 165, 712, 1559, 4437, 7702]
|
|
{ op: 'pop' }, // 155, [165, 712, 1559, 4437, 7702]
|
|
{ op: 'replace', value: 721 }, // 165, [712, 721, 1559, 4437, 7702]
|
|
{ op: 'pop' }, // 712, [721, 1559, 4437, 7702]
|
|
{ op: 'pop' }, // 721, [1559, 4437, 7702]
|
|
{ op: 'pop' }, // 1559, [4437, 7702]
|
|
{ op: 'pop' }, // 4437, [7702]
|
|
{ op: 'pop' }, // 7702, []
|
|
{ op: 'pop' }, // panic
|
|
{ op: 'replace', value: '1363' }, // panic
|
|
]) {
|
|
switch (op) {
|
|
case 'insert':
|
|
await this.helper.insert(value);
|
|
heap.push(value);
|
|
heap.sort((a, b) => a - b);
|
|
break;
|
|
case 'pop':
|
|
if (heap.length == 0) {
|
|
await expect(this.helper.pop()).to.be.revertedWithPanic(PANIC_CODES.POP_ON_EMPTY_ARRAY);
|
|
} else {
|
|
await expect(this.helper.pop()).to.emit(this.mock, popEvent).withArgs(heap.shift());
|
|
}
|
|
break;
|
|
case 'replace':
|
|
if (heap.length == 0) {
|
|
await expect(this.helper.replace(value)).to.be.revertedWithPanic(PANIC_CODES.POP_ON_EMPTY_ARRAY);
|
|
} else {
|
|
await expect(this.helper.replace(value)).to.emit(this.mock, replaceEvent).withArgs(heap.shift());
|
|
heap.push(value);
|
|
heap.sort((a, b) => a - b);
|
|
}
|
|
break;
|
|
}
|
|
expect(await this.helper.length()).to.equal(heap.length);
|
|
if (heap.length == 0) {
|
|
await expect(this.helper.peek()).to.be.revertedWithPanic(PANIC_CODES.ARRAY_ACCESS_OUT_OF_BOUNDS);
|
|
} else {
|
|
expect(await this.helper.peek()).to.equal(heap[0]);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|