forked from OpenZeppelin/ethernaut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Token.test.js
64 lines (56 loc) · 1.81 KB
/
Token.test.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
64
const Ethernaut = artifacts.require('./Ethernaut.sol');
const TokenFactory = artifacts.require('./levels/TokenFactory.sol');
const Token = artifacts.require('./levels/Token.sol');
const {
BN,
constants,
expectEvent,
expectRevert,
} = require('openzeppelin-test-helpers');
const utils = require('../utils/TestUtils');
const { ethers, upgrades } = require('hardhat');
contract('Token', function (accounts) {
let ethernaut;
let level;
let owner = accounts[1];
let player = accounts[0];
let statproxy;
before(async function () {
ethernaut = await utils.getEthernautWithStatsProxy();
level = await TokenFactory.new();
await ethernaut.registerLevel(level.address);
});
it('should allow the player to solve the level', async function () {
const instance = await utils.createLevelInstance(
ethernaut,
level.address,
player,
Token
);
// Check init balances
let balance = new BN(await instance.balanceOf(player));
//console.log(`init player balance: ${balance}`)
assert.equal(balance, 20);
const supply = new BN(await instance.totalSupply.call());
//console.log(`token supply: ${supply}`)
assert.equal(supply, 21000000);
// Check transfer
await instance.transfer(accounts[2], 1, { from: player });
balance = await instance.balanceOf(player);
//console.log(`player balance: ${balance}`)
assert.equal(balance, 19);
// Overflow
await instance.transfer(accounts[2], 20, { from: player });
balance = await instance.balanceOf(player);
//console.log(`player balance: ${balance}`)
assert.equal(balance, 1.157920892373162e77);
// Check win.
const ethCompleted = await utils.submitLevelInstance(
ethernaut,
level.address,
instance.address,
player
);
assert.equal(ethCompleted, true);
});
});