Fix archive detection (#561)

This commit is contained in:
KirillPamPam
2024-09-05 11:40:42 +04:00
committed by GitHub
parent 6942cc637d
commit eb72a43216
5 changed files with 36 additions and 5 deletions

View File

@@ -76,6 +76,10 @@ class TestingCommons {
return new GenericUpstreamMock(Chain.ETHEREUM__MAINNET, api)
}
static GenericUpstreamMock upstream(Reader<ChainRequest, ChainResponse> api, Map<String, String> labels) {
return new GenericUpstreamMock("test-1", Chain.ETHEREUM__MAINNET, api, labels)
}
static GenericUpstreamMock upstream(Reader<ChainRequest, ChainResponse> api, String method) {
return upstream(api, [method])
}

View File

@@ -84,6 +84,29 @@ class EthereumUpstreamSettingsDetectorSpec extends Specification {
.verify(Duration.ofSeconds(1))
}
def "No archive label if it is set manually"() {
setup:
def up = TestingCommons.upstream(
new ApiReaderMock().tap {
answer("web3_clientVersion", [], "Bor/v0.4.0/linux-amd64/go1.19.10")
answer("eth_blockNumber", [], "0x10df3e5")
},
Map.of("archive", "false")
)
def detector = new EthereumUpstreamSettingsDetector(up, Chain.ETHEREUM__MAINNET)
when:
def act = detector.internalDetectLabels()
then:
StepVerifier.create(act)
.expectNext(
new Pair<String, String>("client_type", "bor"),
new Pair<String, String>("client_version", "v0.4.0"),
)
.expectComplete()
.verify(Duration.ofSeconds(1))
}
def "Only default label"() {
setup:
def up = Mock(DefaultUpstream) {
@@ -128,6 +151,7 @@ class EthereumUpstreamSettingsDetectorSpec extends Specification {
1 * read(new ChainRequest("web3_clientVersion", new ListParams())) >>
Mono.just(new ChainResponse('"Erigon/v1.12.0-stable-e501b3b0/linux-amd64/go1.20.3"'.getBytes(), null))
}
1 * getLabels() >> List.of()
}
def detector = new EthereumUpstreamSettingsDetector(up, Chain.ETHEREUM__MAINNET)
when: