Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NonceHolder Tests #176

Merged
merged 14 commits into from
May 16, 2024
257 changes: 257 additions & 0 deletions system-contracts/test/NonceHolder.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,257 @@
import { expect } from "chai";
import type { NonceHolder } from "../typechain";
import { NonceHolderFactory } from "../typechain";
import {
TEST_DEPLOYER_SYSTEM_CONTRACT_ADDRESS,
TEST_NONCE_HOLDER_SYSTEM_CONTRACT_ADDRESS,
TEST_SYSTEM_CONTEXT_CONTRACT_ADDRESS,
} from "./shared/constants";
import { prepareEnvironment, setResult } from "./shared/mocks";
import { deployContractOnAddress, getWallets } from "./shared/utils";
import { ethers, network } from "hardhat";
import { BigNumber } from "ethers";

describe("NonceHolder tests", () => {
const wallet = getWallets()[0];
let nonceHolder: NonceHolder;
let systemAccount: ethers.Signer;
let deployerAccount: ethers.Signer;

before(async () => {
await prepareEnvironment();
await deployContractOnAddress(TEST_NONCE_HOLDER_SYSTEM_CONTRACT_ADDRESS, "NonceHolder");
nonceHolder = NonceHolderFactory.connect(TEST_NONCE_HOLDER_SYSTEM_CONTRACT_ADDRESS, wallet);

// Using a system account to satisfy the `onlySystemCall` modifier.
systemAccount = await ethers.getImpersonatedSigner(TEST_SYSTEM_CONTEXT_CONTRACT_ADDRESS);
deployerAccount = await ethers.getImpersonatedSigner(TEST_DEPLOYER_SYSTEM_CONTRACT_ADDRESS);
});

after(async () => {
await network.provider.request({
method: "hardhat_stopImpersonatingAccount",
params: [TEST_SYSTEM_CONTEXT_CONTRACT_ADDRESS],
});
await network.provider.request({
AntonD3 marked this conversation as resolved.
Show resolved Hide resolved
method: "hardhat_stopImpersonatingAccount",
params: [TEST_DEPLOYER_SYSTEM_CONTRACT_ADDRESS],
});
neotheprogramist marked this conversation as resolved.
Show resolved Hide resolved
});

describe("increaseMinNonce and getters", () => {
it("should increase account minNonce by 1", async () => {
const nonceBefore = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceBefore = await nonceHolder.getRawNonce(systemAccount.address);
await nonceHolder.connect(systemAccount).increaseMinNonce(1);
const nonceAfter = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceAfter = await nonceHolder.getRawNonce(systemAccount.address);

expect(nonceAfter).to.equal(nonceBefore.add(1));
expect(rawNonceAfter).to.equal(rawNonceBefore.add(1));
});

it("should stay the same", async () => {
const nonceBefore = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceBefore = await nonceHolder.getRawNonce(systemAccount.address);
AntonD3 marked this conversation as resolved.
Show resolved Hide resolved
await nonceHolder.connect(systemAccount).increaseMinNonce(0);
const nonceAfter = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceAfter = await nonceHolder.getRawNonce(systemAccount.address);

expect(nonceBefore).to.equal(nonceAfter);
expect(rawNonceBefore).to.equal(rawNonceAfter);
});

it("should increase account minNonce by many", async () => {
const nonceBefore = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceBefore = await nonceHolder.getRawNonce(systemAccount.address);
await nonceHolder.connect(systemAccount).increaseMinNonce(2 ** 4);
const nonceAfter = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceAfter = await nonceHolder.getRawNonce(systemAccount.address);

expect(nonceAfter).to.equal(nonceBefore.add(2 ** 4));
expect(rawNonceAfter).to.equal(rawNonceBefore.add(2 ** 4));
});

it("should fail with too high", async () => {
const nonceBefore = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceBefore = await nonceHolder.getRawNonce(systemAccount.address);

await expect(
nonceHolder.connect(systemAccount).increaseMinNonce(BigNumber.from(2).pow(32).add(1))
).to.be.rejectedWith("The value for incrementing the nonce is too high");

const nonceAfter = await nonceHolder.getMinNonce(systemAccount.address);
const rawNonceAfter = await nonceHolder.getRawNonce(systemAccount.address);

expect(nonceAfter).to.equal(nonceBefore);
expect(rawNonceAfter).to.equal(rawNonceBefore);
});

it("should revert This method require system call flag", async () => {
await expect(nonceHolder.increaseMinNonce(123)).to.be.rejectedWith("This method require system call flag");
});
});

describe("incrementMinNonceIfEquals", async () => {
it("should revert This method require system call flag", async () => {
const expectedNonce = await nonceHolder.getMinNonce(systemAccount.address);
await expect(nonceHolder.incrementMinNonceIfEquals(expectedNonce)).to.be.rejectedWith(
"This method require system call flag"
);
});

it("should revert Incorrect nonce", async () => {
await expect(nonceHolder.connect(systemAccount).incrementMinNonceIfEquals(2222222)).to.be.rejectedWith(
"Incorrect nonce"
);
});

it("should increment minNonce if equals to expected", async () => {
const expectedNonce = await nonceHolder.getMinNonce(systemAccount.address);
await nonceHolder.connect(systemAccount).incrementMinNonceIfEquals(expectedNonce);
const result = await nonceHolder.getMinNonce(systemAccount.address);
expect(result).to.equal(expectedNonce.add(1));
});
});

describe("incrementDeploymentNonce", async () => {
it("should revert Only the contract deployer can increment the deployment nonce", async () => {
await expect(nonceHolder.incrementDeploymentNonce(deployerAccount.address)).to.be.rejectedWith(
"Only the contract deployer can increment the deployment nonce"
);
});

it("should increment deployment nonce", async () => {
const nonceBefore = await nonceHolder.getDeploymentNonce(wallet.address);
const rawNonceBefore = await nonceHolder.getRawNonce(wallet.address);
await nonceHolder.connect(deployerAccount).incrementDeploymentNonce(wallet.address);
const nonceAfter = await nonceHolder.getDeploymentNonce(wallet.address);
const rawNonceAfter = await nonceHolder.getRawNonce(wallet.address);

expect(nonceAfter).to.equal(nonceBefore.add(BigNumber.from(1)));
expect(rawNonceAfter).to.equal(rawNonceBefore.add(BigNumber.from(2).pow(128)));
});
});

describe("setValueUnderNonce and getValueUnderNonce", async () => {
it("should revert Nonce value cannot be set to 0", async () => {
const accountInfo = [1, 0];
const encodedAccountInfo = ethers.utils.defaultAbiCoder.encode(["tuple(uint8, uint8)"], [accountInfo]);
await setResult("ContractDeployer", "getAccountInfo", [systemAccount.address], {
failure: false,
returnData: encodedAccountInfo,
});
await expect(nonceHolder.connect(systemAccount).setValueUnderNonce(124, 0)).to.be.rejectedWith(
"Nonce value cannot be set to 0"
);
});

it("should revert Previous nonce has not been used", async () => {
const accountInfo = [1, 0];
const encodedAccountInfo = ethers.utils.defaultAbiCoder.encode(["tuple(uint8, uint8)"], [accountInfo]);
await setResult("ContractDeployer", "getAccountInfo", [systemAccount.address], {
failure: false,
returnData: encodedAccountInfo,
});
await expect(nonceHolder.connect(systemAccount).setValueUnderNonce(443, 111)).to.be.rejectedWith(
"Previous nonce has not been used"
);
});

it("should emit ValueSetUnderNonce event", async () => {
AntonD3 marked this conversation as resolved.
Show resolved Hide resolved
const currentNonce = await nonceHolder.getMinNonce(systemAccount.address);
const valueBefore = await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce);
const value = valueBefore.add(42);

const accountInfo = [1, 0];
const encodedAccountInfo = ethers.utils.defaultAbiCoder.encode(["tuple(uint8, uint8)"], [accountInfo]);
await setResult("ContractDeployer", "getAccountInfo", [systemAccount.address], {
failure: false,
returnData: encodedAccountInfo,
});
await expect(nonceHolder.connect(systemAccount).setValueUnderNonce(currentNonce, value))
.to.emit(nonceHolder, "ValueSetUnderNonce")
.withArgs(systemAccount.address, currentNonce, value);

const valueAfter = await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce);
expect(valueAfter).to.equal(value);
});

it("should emit ValueSetUnderNonce event arbitrary ordering", async () => {
const currentNonce = await nonceHolder.getMinNonce(systemAccount.address);
const encodedAccountInfo = ethers.utils.defaultAbiCoder.encode(["tuple(uint8, uint8)"], [[1, 1]]);
await setResult("ContractDeployer", "getAccountInfo", [systemAccount.address], {
failure: false,
returnData: encodedAccountInfo,
});

const firstValue = (await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce)).add(111);
await expect(nonceHolder.connect(systemAccount).setValueUnderNonce(currentNonce, firstValue))
.to.emit(nonceHolder, "ValueSetUnderNonce")
.withArgs(systemAccount.address, currentNonce, firstValue);

const secondValue = (await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce.add(2))).add(333);
await expect(nonceHolder.connect(systemAccount).setValueUnderNonce(currentNonce.add(2), secondValue))
.to.emit(nonceHolder, "ValueSetUnderNonce")
.withArgs(systemAccount.address, currentNonce.add(2), secondValue);

const thirdValue = (await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce.add(1))).add(222);
await expect(nonceHolder.connect(systemAccount).setValueUnderNonce(currentNonce.add(1), thirdValue))
.to.emit(nonceHolder, "ValueSetUnderNonce")
.withArgs(systemAccount.address, currentNonce.add(1), thirdValue);

const storedValue = await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce);
expect(storedValue).to.equal(firstValue);
const storedValueNext = await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce.add(1));
expect(storedValueNext).to.equal(thirdValue);
const storedAfterNext = await nonceHolder.connect(systemAccount).getValueUnderNonce(currentNonce.add(2));
expect(storedAfterNext).to.equal(secondValue);
});
});

describe("isNonceUsed", () => {
it("used nonce because it too small", async () => {
const isUsed = await nonceHolder.isNonceUsed(systemAccount.address, 1);
expect(isUsed).to.equal(true);
});

it("used nonce because set", async () => {
const currentNonce = await nonceHolder.getMinNonce(systemAccount.address);
const checkedNonce = currentNonce.add(1);
await nonceHolder.connect(systemAccount).setValueUnderNonce(checkedNonce, 5);

const isUsed = await nonceHolder.isNonceUsed(systemAccount.address, checkedNonce);
expect(isUsed).to.equal(true);
});

it("not used nonce", async () => {
AntonD3 marked this conversation as resolved.
Show resolved Hide resolved
const currentNonce = await nonceHolder.getMinNonce(systemAccount.address);
const checkedNonce = currentNonce.add(2137 * 2 ** 10);

const isUsed = await nonceHolder.isNonceUsed(systemAccount.address, checkedNonce);
expect(isUsed).to.be.false;
});
});

describe("validateNonceUsage", () => {
it("used nonce & should not be used", async () => {
await expect(nonceHolder.validateNonceUsage(systemAccount.address, 1, false)).to.be.rejectedWith(
"Reusing the same nonce twice"
);
});

it("used nonce & should be used", async () => {
await nonceHolder.validateNonceUsage(systemAccount.address, 1, true);
});

it("not used nonce & should be used", async () => {
await expect(nonceHolder.validateNonceUsage(systemAccount.address, 2 ** 16, true)).to.be.rejectedWith(
"The nonce was not set as used"
);
});

it("not used nonce & should not be used", async () => {
await nonceHolder.validateNonceUsage(systemAccount.address, 2 ** 16, false);
});
});
});
2 changes: 2 additions & 0 deletions system-contracts/test/shared/mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { ethers } from "hardhat";
import type { MockContract } from "../../typechain";
import { MockContractFactory } from "../../typechain";
import {
TEST_DEPLOYER_SYSTEM_CONTRACT_ADDRESS,
TEST_ACCOUNT_CODE_STORAGE_SYSTEM_CONTRACT_ADDRESS,
TEST_BOOTLOADER_FORMAL_ADDRESS,
TEST_BASE_TOKEN_SYSTEM_CONTRACT_ADDRESS,
Expand All @@ -26,6 +27,7 @@ type CallResult = {
const TEST_SYSTEM_CONTRACTS_MOCKS = {
Compressor: TEST_COMPRESSOR_CONTRACT_ADDRESS,
SystemContext: TEST_SYSTEM_CONTEXT_CONTRACT_ADDRESS,
ContractDeployer: TEST_DEPLOYER_SYSTEM_CONTRACT_ADDRESS,
NonceHolder: TEST_NONCE_HOLDER_SYSTEM_CONTRACT_ADDRESS,
L1Messenger: TEST_L1_MESSENGER_SYSTEM_CONTRACT_ADDRESS,
KnownCodesStorage: TEST_KNOWN_CODE_STORAGE_CONTRACT_ADDRESS,
Expand Down
Loading