-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.test.js
121 lines (100 loc) · 3.49 KB
/
block.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
const Block = require('./block');
const {
GENESIS_DATA,
MINE_RATE
} = require('./config');
const cryptoHash = require('./crypto-hash');
describe('Block', () => {
const timestamp = 2000;
const lastHash = 'foo-hash';
const hash = 'bar-hash';
const data = ['blockchain', 'data'];
const nonce = 1;
const difficulty = 1;
const block = new Block({
timestamp,
lastHash,
hash,
data,
nonce,
difficulty
});
it('has a timestamp, lastHash, hash and data propery', () => {
expect(block.timestamp).toEqual(timestamp);
expect(block.lastHash).toEqual(lastHash);
expect(block.hash).toEqual(hash);
expect(block.data).toEqual(data);
expect(block.nonce).toEqual(nonce);
expect(block.difficulty).toEqual(difficulty);
});
describe('genesis()', () => {
const genesisBlock = Block.genesis();
it('return a Block intance', () => {
expect(genesisBlock instanceof Block).toBe(true);
});
it('returns the genesis data', () => {
expect(genesisBlock).toEqual(GENESIS_DATA);
});
});
describe('mineBlock()', () => {
const lastBlock = Block.genesis();
const data = 'mined data';
const minedBlock = Block.minedBlock({
lastBlock,
data
});
it('returns a Block instance', () => {
expect(minedBlock instanceof Block).toBe(true);
});
it('sets the `lastHash` to be the `hash` of the lastBlock', () => {
expect(minedBlock.lastHash).toEqual(lastBlock.hash);
});
it('sets the data', () => {
expect(minedBlock.data).toBe(data);
});
it('sets a `timestamp`', () => {
expect(minedBlock.timestamp).not.toEqual(undefined);
});
it('creates a SHA-256 `hash` based on the proper inputs', () => {
expect(minedBlock.hash)
.toEqual(
cryptoHash(
minedBlock.timestamp,
lastBlock.hash,
data,
minedBlock.nonce,
minedBlock.difficulty,
)
);
});
it('sets a `hash` that matches the difficulty criteria', () => {
expect(minedBlock.hash.substring(0, minedBlock.difficulty))
.toEqual('0'.repeat(minedBlock.difficulty));
});
it('adjust the difficulty', () => {
const possibleResults = [lastBlock.difficulty + 1, lastBlock.difficulty - 1];
expect(possibleResults.includes(minedBlock.difficulty))
.toBe(true);
});
});
describe('adjustDifficulty()', () => {
it('raises the difficulty for a quickly mined block', () => {
expect(Block.adjustDifficulty({
originalBlock: block,
timestamp: block.timestamp + MINE_RATE - 100
})).toEqual(block.difficulty + 1);
});
it('lower the difficulty for a slowly mined block', () => {
expect(Block.adjustDifficulty({
originalBlock: block,
timestamp: block.timestamp + MINE_RATE + 100
})).toEqual(block.difficulty - 1);
});
it('has a lower limit 1', () => {
block.difficulty = -1;
expect(Block.adjustDifficulty({
originalBlock: block
})).toEqual(1);
});
});
})