-
-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix beacon proposer cache unit tests (#7335)
* chore: fix beacon proposer cache unit tests * Assign values to named constants
- Loading branch information
Showing
2 changed files
with
45 additions
and
37 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
packages/beacon-node/test/unit/chain/beaconProposerCache.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import {beforeEach, describe, expect, it} from "vitest"; | ||
import {BeaconProposerCache} from "../../../src/chain/beaconProposerCache.js"; | ||
|
||
describe("BeaconProposerCache", () => { | ||
const suggestedFeeRecipient = "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; | ||
const feeRecipient1 = "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"; | ||
const feeRecipient2 = "0xcccccccccccccccccccccccccccccccccccccccc"; | ||
|
||
const validatorIndex1 = 23; | ||
const validatorIndex2 = 43; | ||
const unknownValidatorIndex = 32; | ||
|
||
let cache: BeaconProposerCache; | ||
|
||
beforeEach(() => { | ||
// max 2 items | ||
cache = new BeaconProposerCache({suggestedFeeRecipient}); | ||
cache.add(1, {validatorIndex: validatorIndex1, feeRecipient: feeRecipient1}); | ||
cache.add(3, {validatorIndex: validatorIndex2, feeRecipient: feeRecipient2}); | ||
}); | ||
|
||
it("get default", () => { | ||
expect(cache.getOrDefault(unknownValidatorIndex)).toBe(suggestedFeeRecipient); | ||
}); | ||
|
||
it("get what has been set", () => { | ||
expect(cache.get(validatorIndex1)).toBe(feeRecipient1); | ||
}); | ||
|
||
it("override and get latest", () => { | ||
const newFeeRecipient = "0xdddddddddddddddddddddddddddddddddddddddd"; | ||
cache.add(5, {validatorIndex: validatorIndex1, feeRecipient: newFeeRecipient}); | ||
expect(cache.get(validatorIndex1)).toBe(newFeeRecipient); | ||
}); | ||
|
||
it("prune", () => { | ||
cache.prune(4); | ||
|
||
// Default for what has been pruned | ||
expect(cache.getOrDefault(validatorIndex1)).toBe(suggestedFeeRecipient); | ||
|
||
// Original for what hasn't been pruned | ||
expect(cache.get(validatorIndex2)).toBe(feeRecipient2); | ||
}); | ||
}); |
37 changes: 0 additions & 37 deletions
37
packages/beacon-node/test/unit/chain/beaconProposerCache.ts
This file was deleted.
Oops, something went wrong.