-
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.
Ensure all estimates below feeMinimum are excluded
- Loading branch information
Showing
3 changed files
with
130 additions
and
54 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,105 @@ | ||
import { expect, test } from "bun:test"; | ||
import { DataProviderManager } from "../src/lib/DataProviderManager"; | ||
|
||
class MockProvider0 implements Provider { | ||
getBlockHeight = () => Promise.resolve(1001); | ||
getBlockHash = () => Promise.resolve("hash1001"); | ||
getFeeEstimates = () => | ||
Promise.resolve({ | ||
"1": 1, | ||
"2": 1, | ||
"3": 1, | ||
}); | ||
getAllData = () => | ||
Promise.resolve({ | ||
blockHeight: 1001, | ||
blockHash: "hash1001", | ||
feeEstimates: { | ||
"1": 1, | ||
"2": 1, | ||
"3": 1, | ||
}, | ||
}); | ||
} | ||
|
||
class MockProvider1 implements Provider { | ||
getBlockHeight = () => Promise.resolve(998); | ||
getBlockHash = () => Promise.resolve("hash998"); | ||
getFeeEstimates = () => | ||
Promise.resolve({ | ||
"1": 20, | ||
"10": 1, | ||
}); | ||
getAllData = () => | ||
Promise.resolve({ | ||
blockHeight: 998, | ||
blockHash: "hash998", | ||
feeEstimates: { | ||
"1": 20, | ||
"10": 1, | ||
}, | ||
}); | ||
} | ||
|
||
class MockProvider2 implements Provider { | ||
getBlockHeight = () => Promise.resolve(1000); | ||
getBlockHash = () => Promise.resolve("hash1000"); | ||
getFeeEstimates = () => | ||
Promise.resolve({ | ||
"1": 30, | ||
"2": 20, | ||
}); | ||
getAllData = () => | ||
Promise.resolve({ | ||
blockHeight: 1000, | ||
blockHash: "hash1000", | ||
feeEstimates: { | ||
"1": 30, | ||
"2": 20, | ||
}, | ||
}); | ||
} | ||
|
||
class MockProvider3 implements Provider { | ||
getBlockHeight = () => Promise.resolve(999); | ||
getBlockHash = () => Promise.resolve("hash999"); | ||
getFeeEstimates = () => | ||
Promise.resolve({ | ||
"1": 25, | ||
"2": 15, | ||
"3": 5, | ||
"5": 3, | ||
}); | ||
getAllData = () => | ||
Promise.resolve({ | ||
blockHeight: 999, | ||
blockHash: "hash999", | ||
feeEstimates: { | ||
"1": 25, | ||
"2": 15, | ||
"3": 5, | ||
"5": 3, | ||
}, | ||
}); | ||
} | ||
|
||
const maxHeightDelta = 2; | ||
const feeMultiplier = 2; | ||
const feeMinimum = 2; | ||
const manager = new DataProviderManager({ stdTTL: 0, checkperiod: 0 }, maxHeightDelta, feeMultiplier, feeMinimum); | ||
manager.registerProvider(new MockProvider0()); | ||
manager.registerProvider(new MockProvider1()); | ||
manager.registerProvider(new MockProvider2()); | ||
manager.registerProvider(new MockProvider3()); | ||
|
||
test("should merge fee estimates from multiple providers correctly", async () => { | ||
const mergedData = await manager.getData(); | ||
expect(mergedData.current_block_height).toEqual(1001); | ||
expect(mergedData.current_block_hash).toEqual("hash1001"); | ||
expect(mergedData.fee_by_block_target).toEqual({ | ||
"1": 60000, | ||
"2": 40000, | ||
"3": 10000, | ||
"5": 6000, | ||
}); | ||
}); |
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