Skip to content

Commit 0828c00

Browse files
committed
declare spec deploy functions as required parameters
1 parent b9441a0 commit 0828c00

File tree

77 files changed

+163
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+163
-209
lines changed

spec/access/ownable/Ownable.behavior.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { expect } from 'chai';
55
import { ethers } from 'hardhat';
66

77
export interface OwnableBehaviorArgs {
8-
deploy: () => Promise<IOwnable>;
98
getOwner: () => Promise<SignerWithAddress>;
109
getNonOwner: () => Promise<SignerWithAddress>;
1110
}
1211

1312
export function describeBehaviorOfOwnable(
14-
{ deploy, getOwner, getNonOwner }: OwnableBehaviorArgs,
13+
deploy: () => Promise<IOwnable>,
14+
{ getOwner, getNonOwner }: OwnableBehaviorArgs,
1515
skips?: string[],
1616
) {
1717
const describe = describeFilter(skips);

spec/access/ownable/SafeOwnable.behavior.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { expect } from 'chai';
66
import { ethers } from 'ethers';
77

88
export interface SafeOwnableBehaviorArgs {
9-
deploy: () => Promise<ISafeOwnable>;
109
getOwner: () => Promise<SignerWithAddress>;
1110
getNonOwner: () => Promise<SignerWithAddress>;
1211
getNomineeOwner: () => Promise<SignerWithAddress>;
1312
}
1413

1514
export function describeBehaviorOfSafeOwnable(
16-
{ deploy, getOwner, getNomineeOwner, getNonOwner }: SafeOwnableBehaviorArgs,
15+
deploy: () => Promise<ISafeOwnable>,
16+
{ getOwner, getNomineeOwner, getNonOwner }: SafeOwnableBehaviorArgs,
1717
skips?: string[],
1818
) {
1919
const describe = describeFilter(skips);
@@ -32,8 +32,8 @@ export function describeBehaviorOfSafeOwnable(
3232
});
3333

3434
describeBehaviorOfOwnable(
35+
deploy,
3536
{
36-
deploy,
3737
getOwner,
3838
getNonOwner,
3939
},

spec/factory/CloneFactory.behavior.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
import { describeBehaviorOfFactory } from './Factory.behavior';
22
import { describeFilter } from '@solidstate/library';
3+
import { BaseContract } from 'ethers';
34

4-
export function describeBehaviorOfCloneFactory({}, skips?: string[]) {
5+
export interface CloneFactoryBehaviorArgs {}
6+
7+
export function describeBehaviorOfCloneFactory(
8+
deploy: () => Promise<BaseContract>,
9+
{}: CloneFactoryBehaviorArgs,
10+
skips?: string[],
11+
) {
512
const describe = describeFilter(skips);
613

714
describe('::CloneFactory', function () {
8-
describeBehaviorOfFactory({}, skips);
15+
describeBehaviorOfFactory(deploy, {}, skips);
916
});
1017
}

spec/factory/Factory.behavior.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import { describeFilter } from '@solidstate/library';
2+
import { BaseContract } from 'ethers';
23

3-
export function describeBehaviorOfFactory({}, skips?: string[]) {
4+
export interface FactoryBehaviorArgs {}
5+
6+
export function describeBehaviorOfFactory(
7+
deploy: () => Promise<BaseContract>,
8+
{}: FactoryBehaviorArgs,
9+
skips?: string[],
10+
) {
411
const describe = describeFilter(skips);
512

613
describe('::Factory', function () {

spec/factory/MetamorphicFactory.behavior.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ import { MetamorphicFactory } from '@solidstate/typechain-types';
44
import { expect } from 'chai';
55
import { ethers } from 'hardhat';
66

7-
export interface MetaphoricFactoryBehaviorArgs {
8-
deploy: () => Promise<MetamorphicFactory>;
9-
}
7+
export interface MetaphoricFactoryBehaviorArgs {}
108

119
export function describeBehaviorOfMetamorphicFactory(
12-
{ deploy }: MetaphoricFactoryBehaviorArgs,
10+
deploy: () => Promise<MetamorphicFactory>,
11+
{}: MetaphoricFactoryBehaviorArgs,
1312
skips?: string[],
1413
) {
1514
const describe = describeFilter(skips);
@@ -21,7 +20,7 @@ export function describeBehaviorOfMetamorphicFactory(
2120
instance = await deploy();
2221
});
2322

24-
describeBehaviorOfFactory({}, skips);
23+
describeBehaviorOfFactory(deploy, {}, skips);
2524

2625
describe('#getMetamorphicImplementation()', function () {
2726
// behavior changes during internal call but cannot be tested independently
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
import { describeBehaviorOfFactory } from './Factory.behavior';
22
import { describeFilter } from '@solidstate/library';
3+
import { BaseContract } from 'ethers';
34

4-
export function describeBehaviorOfMinimalProxyFactory({}, skips?: string[]) {
5+
export interface MinimalProxyFactoryBehaviorArgs {}
6+
7+
export function describeBehaviorOfMinimalProxyFactory(
8+
deploy: () => Promise<BaseContract>,
9+
{}: MinimalProxyFactoryBehaviorArgs,
10+
skips?: string[],
11+
) {
512
const describe = describeFilter(skips);
613

714
describe('::MinimalProxyFactory', function () {
8-
describeBehaviorOfFactory({}, skips);
15+
describeBehaviorOfFactory(deploy, {}, skips);
916
});
1017
}

spec/introspection/ERC165.behavior.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { IERC165 } from '@solidstate/typechain-types';
33
import { expect } from 'chai';
44

55
export interface ERC165BehaviorArgs {
6-
deploy: () => Promise<IERC165>;
76
interfaceIds: string[];
87
}
98

109
export function describeBehaviorOfERC165(
11-
{ deploy, interfaceIds }: ERC165BehaviorArgs,
10+
deploy: () => Promise<IERC165>,
11+
{ interfaceIds }: ERC165BehaviorArgs,
1212
skips?: string[],
1313
) {
1414
const describe = describeFilter(skips);

spec/multisig/ECDSAMultisigWallet.behavior.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,15 @@ const signAuthorization = async function (
4040
};
4141

4242
export interface ECDSAMultisigWalletBehaviorArgs {
43-
deploy: () => Promise<IECDSAMultisigWallet>;
4443
getSigners: () => Promise<SignerWithAddress[]>;
4544
getNonSigner: () => Promise<SignerWithAddress>;
4645
quorum: BigNumber;
4746
getVerificationAddress: () => Promise<string>;
4847
}
4948

5049
export function describeBehaviorOfECDSAMultisigWallet(
50+
deploy: () => Promise<IECDSAMultisigWallet>,
5151
{
52-
deploy,
5352
getSigners,
5453
getNonSigner,
5554
quorum,

spec/proxy/Proxy.behavior.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@ import { expect } from 'chai';
44
import { ethers } from 'hardhat';
55

66
export interface ProxyBehaviorArgs {
7-
deploy: () => Promise<IProxy>;
87
implementationFunction: string;
98
implementationFunctionArgs: any[];
109
}
1110

1211
export function describeBehaviorOfProxy(
13-
{
14-
deploy,
15-
implementationFunction,
16-
implementationFunctionArgs,
17-
}: ProxyBehaviorArgs,
12+
deploy: () => Promise<IProxy>,
13+
{ implementationFunction, implementationFunctionArgs }: ProxyBehaviorArgs,
1814
skips?: string[],
1915
) {
2016
const describe = describeFilter(skips);

spec/proxy/diamond/SolidStateDiamond.behavior.ts

+6-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { deployMockContract, MockContract } from 'ethereum-waffle';
1111
import { ethers } from 'hardhat';
1212

1313
export interface SolidStateDiamondBehaviorArgs {
14-
deploy: () => Promise<ISolidStateDiamond>;
1514
getOwner: () => Promise<SignerWithAddress>;
1615
getNomineeOwner: () => Promise<SignerWithAddress>;
1716
getNonOwner: () => Promise<SignerWithAddress>;
@@ -22,8 +21,8 @@ export interface SolidStateDiamondBehaviorArgs {
2221
}
2322

2423
export function describeBehaviorOfSolidStateDiamond(
24+
deploy: () => Promise<ISolidStateDiamond>,
2525
{
26-
deploy,
2726
getOwner,
2827
getNomineeOwner,
2928
getNonOwner,
@@ -52,42 +51,42 @@ export function describeBehaviorOfSolidStateDiamond(
5251
});
5352

5453
describeBehaviorOfDiamondBase(
54+
deploy,
5555
{
56-
deploy,
5756
facetFunction,
5857
facetFunctionArgs,
5958
},
6059
skips,
6160
);
6261

6362
describeBehaviorOfDiamondReadable(
63+
deploy,
6464
{
65-
deploy,
6665
facetCuts,
6766
},
6867
skips,
6968
);
7069

7170
describeBehaviorOfDiamondWritable(
71+
deploy,
7272
{
73-
deploy,
7473
getOwner,
7574
getNonOwner,
7675
},
7776
skips,
7877
);
7978

8079
describeBehaviorOfERC165(
80+
deploy,
8181
{
82-
deploy,
8382
interfaceIds: ['0x7f5828d0'],
8483
},
8584
skips,
8685
);
8786

8887
describeBehaviorOfSafeOwnable(
88+
deploy,
8989
{
90-
deploy,
9190
getOwner,
9291
getNomineeOwner,
9392
getNonOwner,

spec/proxy/diamond/base/DiamondBase.behavior.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import { expect } from 'chai';
44
import { ethers } from 'hardhat';
55

66
export interface DiamondBaseBehaviorArgs {
7-
deploy: () => Promise<IDiamondBase>;
87
facetFunction: string;
98
facetFunctionArgs: string[];
109
}
1110

1211
export function describeBehaviorOfDiamondBase(
13-
{ deploy, facetFunction, facetFunctionArgs }: DiamondBaseBehaviorArgs,
12+
deploy: () => Promise<IDiamondBase>,
13+
{ facetFunction, facetFunctionArgs }: DiamondBaseBehaviorArgs,
1414
skips?: string[],
1515
) {
1616
const describe = describeFilter(skips);

spec/proxy/diamond/readable/DiamondReadable.behavior.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import { expect } from 'chai';
55
import { ethers } from 'hardhat';
66

77
export interface DiamondReadableBehaviorArgs {
8-
deploy: () => Promise<IDiamondReadable>;
98
facetCuts: any[];
109
}
1110

1211
export function describeBehaviorOfDiamondReadable(
13-
{ deploy, facetCuts }: DiamondReadableBehaviorArgs,
12+
deploy: () => Promise<IDiamondReadable>,
13+
{ facetCuts }: DiamondReadableBehaviorArgs,
1414
skips?: string[],
1515
) {
1616
const describe = describeFilter(skips);
@@ -24,8 +24,8 @@ export function describeBehaviorOfDiamondReadable(
2424
});
2525

2626
describeBehaviorOfERC165(
27+
deploy as any,
2728
{
28-
deploy: deploy as any,
2929
interfaceIds: ['0x48e2b093'],
3030
},
3131
skips,

spec/proxy/diamond/writable/DiamondWritable.behavior.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import { deployMockContract } from 'ethereum-waffle';
77
import { ethers } from 'hardhat';
88

99
export interface DiamondWritableBehaviorArgs {
10-
deploy: () => Promise<IDiamondWritable>;
1110
getOwner: () => Promise<SignerWithAddress>;
1211
getNonOwner: () => Promise<SignerWithAddress>;
1312
}
1413

1514
export function describeBehaviorOfDiamondWritable(
16-
{ deploy, getOwner, getNonOwner }: DiamondWritableBehaviorArgs,
15+
deploy: () => Promise<IDiamondWritable>,
16+
{ getOwner, getNonOwner }: DiamondWritableBehaviorArgs,
1717
skips?: string[],
1818
) {
1919
const describe = describeFilter(skips);
@@ -55,8 +55,8 @@ export function describeBehaviorOfDiamondWritable(
5555
});
5656

5757
describeBehaviorOfERC165(
58+
deploy as any,
5859
{
59-
deploy: deploy as any,
6060
interfaceIds: ['0x1f931c1c'],
6161
},
6262
skips,

spec/proxy/managed/ManagedProxy.behavior.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ import { describeFilter } from '@solidstate/library';
33
import { IManagedProxy } from '@solidstate/typechain-types';
44

55
export interface ManagedProxyBehaviorArgs {
6-
deploy: () => Promise<IManagedProxy>;
76
implementationFunction: string;
87
implementationFunctionArgs: any[];
98
}
109

1110
export function describeBehaviorOfManagedProxy(
11+
deploy: () => Promise<IManagedProxy>,
1212
{
13-
deploy,
1413
implementationFunction,
1514
implementationFunctionArgs,
1615
}: ManagedProxyBehaviorArgs,
@@ -20,8 +19,8 @@ export function describeBehaviorOfManagedProxy(
2019

2120
describe('::ManagedProxy', function () {
2221
describeBehaviorOfProxy(
22+
deploy,
2323
{
24-
deploy,
2524
implementationFunction,
2625
implementationFunctionArgs,
2726
},

spec/proxy/managed/ManagedProxyOwnable.behavior.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ import { describeFilter } from '@solidstate/library';
33
import { IManagedProxyOwnable } from '@solidstate/typechain-types';
44

55
export interface ManagedProxyOwnableBehaviorArgs {
6-
deploy: () => Promise<IManagedProxyOwnable>;
76
implementationFunction: string;
87
implementationFunctionArgs: any[];
98
}
109

1110
export function describeBehaviorOfManagedProxyOwnable(
11+
deploy: () => Promise<IManagedProxyOwnable>,
1212
{
13-
deploy,
1413
implementationFunction,
1514
implementationFunctionArgs,
1615
}: ManagedProxyOwnableBehaviorArgs,
@@ -20,8 +19,8 @@ export function describeBehaviorOfManagedProxyOwnable(
2019

2120
describe('::ManagedProxyOwnable', function () {
2221
describeBehaviorOfManagedProxy(
22+
deploy,
2323
{
24-
deploy,
2524
implementationFunction,
2625
implementationFunctionArgs,
2726
},

spec/proxy/upgradeable/UpgradeableProxy.behavior.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ import { describeFilter } from '@solidstate/library';
33
import { IUpgradeableProxy } from '@solidstate/typechain-types';
44

55
export interface UpgradeableProxyBehaviorArgs {
6-
deploy: () => Promise<IUpgradeableProxy>;
76
implementationFunction: string;
87
implementationFunctionArgs: any[];
98
}
109

1110
export function describeBehaviorOfUpgradeableProxy(
11+
deploy: () => Promise<IUpgradeableProxy>,
1212
{
13-
deploy,
1413
implementationFunction,
1514
implementationFunctionArgs,
1615
}: UpgradeableProxyBehaviorArgs,
@@ -20,8 +19,8 @@ export function describeBehaviorOfUpgradeableProxy(
2019

2120
describe('::UpgradeableProxy', function () {
2221
describeBehaviorOfProxy(
22+
deploy,
2323
{
24-
deploy,
2524
implementationFunction,
2625
implementationFunctionArgs,
2726
},

0 commit comments

Comments
 (0)