-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathPoolVotingThresholds.test.ts
46 lines (35 loc) · 1.84 KB
/
PoolVotingThresholds.test.ts
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
/* eslint-disable sonarjs/no-duplicate-string */
import { HexBlob } from '@cardano-sdk/util';
import { PoolVotingThresholds } from '../../../src/Serialization';
// Test data used in the following tests was generated with the cardano-serialization-lib
const cbor = HexBlob('84d81e820000d81e820101d81e820202d81e820303');
const core = {
committeeNoConfidence: { denominator: 2, numerator: 2 },
committeeNormal: { denominator: 1, numerator: 1 },
hardForkInitiation: { denominator: 3, numerator: 3 },
motionNoConfidence: { denominator: 0, numerator: 0 }
};
describe('PoolVotingThresholds', () => {
it('can decode PoolVotingThresholds from CBOR', () => {
const thresholds = PoolVotingThresholds.fromCbor(cbor);
expect(thresholds.committeeNoConfidence().toCore()).toEqual(core.committeeNoConfidence);
expect(thresholds.committeeNormal().toCore()).toEqual(core.committeeNormal);
expect(thresholds.hardForkInitiation().toCore()).toEqual(core.hardForkInitiation);
expect(thresholds.motionNoConfidence().toCore()).toEqual(core.motionNoConfidence);
});
it('can decode PoolVotingThresholds from Core', () => {
const thresholds = PoolVotingThresholds.fromCore(core);
expect(thresholds.committeeNoConfidence().toCore()).toEqual(core.committeeNoConfidence);
expect(thresholds.committeeNormal().toCore()).toEqual(core.committeeNormal);
expect(thresholds.hardForkInitiation().toCore()).toEqual(core.hardForkInitiation);
expect(thresholds.motionNoConfidence().toCore()).toEqual(core.motionNoConfidence);
});
it('can encode PoolVotingThresholds to CBOR', () => {
const prices = PoolVotingThresholds.fromCore(core);
expect(prices.toCbor()).toEqual(cbor);
});
it('can encode PoolVotingThresholds to Core', () => {
const prices = PoolVotingThresholds.fromCbor(cbor);
expect(prices.toCore()).toEqual(core);
});
});