-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathgas-multitoken1155.js
63 lines (47 loc) · 1.58 KB
/
gas-multitoken1155.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const assert = require('assert')
const linter = require('../../../lib/index')
const ERROR_MSG = 'GC: ERC721 import found - Use of ERC1155 recommended'
describe('Linter - gas-multitoken1155', () => {
it('should raise error', () => {
const code = `
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC722/ERC722.sol';
import '@openzeppelin/contracts/token/erc721.sol';
import '@openzeppelin/contracts/token/ERC721.sol';
contract A {}
`
const report = linter.processStr(code, {
rules: { 'gas-multitoken1155': 'error' },
})
assert.equal(report.errorCount, 2)
assert.equal(report.messages[0].message, ERROR_MSG)
assert.equal(report.messages[1].message, ERROR_MSG)
})
it('should raise error', () => {
const code = `
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/ERC722.sol';
contract A {}
`
const report = linter.processStr(code, {
rules: { 'gas-multitoken1155': 'error' },
})
assert.equal(report.errorCount, 1)
assert.equal(report.messages[0].message, ERROR_MSG)
})
it('should NOT raise error', () => {
const code = `
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC722/ERC722.sol';
import '@openzeppelin/contracts/token/erc20.sol';
contract A {}
`
const report = linter.processStr(code, {
rules: { 'gas-multitoken1155': 'error' },
})
assert.equal(report.errorCount, 0)
})
})