123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- const { ethers } = require('hardhat');
- const { expect } = require('chai');
- const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
- async function fixture() {
- return { contextHelper: await ethers.deployContract('ContextMockCaller', []) };
- }
- function shouldBehaveLikeRegularContext() {
- beforeEach(async function () {
- Object.assign(this, await loadFixture(fixture));
- });
- describe('msgSender', function () {
- it('returns the transaction sender when called from an EOA', async function () {
- await expect(this.context.connect(this.sender).msgSender()).to.emit(this.context, 'Sender').withArgs(this.sender);
- });
- it('returns the transaction sender when called from another contract', async function () {
- await expect(this.contextHelper.connect(this.sender).callSender(this.context))
- .to.emit(this.context, 'Sender')
- .withArgs(this.contextHelper);
- });
- });
- describe('msgData', function () {
- const args = [42n, 'OpenZeppelin'];
- it('returns the transaction data when called from an EOA', async function () {
- const callData = this.context.interface.encodeFunctionData('msgData', args);
- await expect(this.context.msgData(...args))
- .to.emit(this.context, 'Data')
- .withArgs(callData, ...args);
- });
- it('returns the transaction sender when from another contract', async function () {
- const callData = this.context.interface.encodeFunctionData('msgData', args);
- await expect(this.contextHelper.callData(this.context, ...args))
- .to.emit(this.context, 'Data')
- .withArgs(callData, ...args);
- });
- });
- }
- module.exports = {
- shouldBehaveLikeRegularContext,
- };
|