-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from LN-Zap/fix/feeminimum
Ensure that fee minimum estimate is returned when no estimates
- Loading branch information
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
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
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,73 @@ | ||
import { expect, test } from "bun:test"; | ||
import { DataProviderManager } from "../src/lib/DataProviderManager"; | ||
|
||
test("should exclude estimates that are below the fee minimum", async () => { | ||
const feeEstimates = { | ||
"1": 3, | ||
"2": 2, | ||
"3": 1, | ||
}; | ||
class MockProvider implements Provider { | ||
getBlockHeight = () => Promise.resolve(1001); | ||
getBlockHash = () => Promise.resolve("hash1001"); | ||
getFeeEstimates = () => Promise.resolve(feeEstimates); | ||
getAllData = () => | ||
Promise.resolve({ | ||
blockHeight: 1001, | ||
blockHash: "hash1001", | ||
feeEstimates, | ||
}); | ||
} | ||
|
||
const maxHeightDelta = 1; | ||
const feeMultiplier = 1; | ||
const feeMinimum = 2; | ||
const manager = new DataProviderManager( | ||
{ stdTTL: 0, checkperiod: 0 }, | ||
maxHeightDelta, | ||
feeMultiplier, | ||
feeMinimum, | ||
); | ||
manager.registerProvider(new MockProvider()); | ||
|
||
const mergedData = await manager.getData(); | ||
expect(mergedData.fee_by_block_target).toEqual({ | ||
"1": 3000, | ||
"2": 2000, | ||
}); | ||
}); | ||
|
||
test("should return single estimate at fee minimum if no valid estimates are available", async () => { | ||
const feeEstimates = { | ||
"1": 1, | ||
"2": 1, | ||
"3": 1, | ||
}; | ||
class MockProvider implements Provider { | ||
getBlockHeight = () => Promise.resolve(1001); | ||
getBlockHash = () => Promise.resolve("hash1001"); | ||
getFeeEstimates = () => Promise.resolve(feeEstimates); | ||
getAllData = () => | ||
Promise.resolve({ | ||
blockHeight: 1001, | ||
blockHash: "hash1001", | ||
feeEstimates, | ||
}); | ||
} | ||
|
||
const maxHeightDelta = 1; | ||
const feeMultiplier = 1; | ||
const feeMinimum = 2; | ||
const manager = new DataProviderManager( | ||
{ stdTTL: 0, checkperiod: 0 }, | ||
maxHeightDelta, | ||
feeMultiplier, | ||
feeMinimum, | ||
); | ||
manager.registerProvider(new MockProvider()); | ||
|
||
const mergedData = await manager.getData(); | ||
expect(mergedData.fee_by_block_target).toEqual({ | ||
"1": 2000, | ||
}); | ||
}); |