remove nonce quorum

This commit is contained in:
a10zn8
2023-06-06 13:47:21 +04:00
parent a3a2f33880
commit 0db052024b
3 changed files with 1 additions and 236 deletions

View File

@@ -1,134 +0,0 @@
/**
* Copyright (c) 2019 ETCDEV GmbH
* Copyright (c) 2020 EmeraldPay, Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.emeraldpay.dshackle.quorum
import com.fasterxml.jackson.databind.ObjectMapper
import io.emeraldpay.dshackle.Global
import io.emeraldpay.dshackle.upstream.Head
import io.emeraldpay.dshackle.upstream.Upstream
import io.emeraldpay.dshackle.upstream.rpcclient.JsonRpcException
import spock.lang.Specification
class NonceQuorumSpec extends Specification {
ObjectMapper objectMapper = Global.objectMapper
def "Gets max value"() {
setup:
def q = Spy(new NonceQuorum(3))
def upstream1 = Stub(Upstream)
def upstream2 = Stub(Upstream)
def upstream3 = Stub(Upstream)
when:
q.init(Stub(Head))
then:
!q.isResolved()
when:
q.record('"0x10"'.bytes, null, upstream1, null)
then:
!q.isResolved()
1 * q.recordValue(_, "0x10", _, _, _)
when:
q.record('"0x11"'.bytes, null, upstream2, null)
then:
!q.isResolved()
1 * q.recordValue(_, "0x11", _, _, _)
when:
q.record('"0x10"'.bytes, null, upstream3, null)
then:
1 * q.recordValue(_, "0x10", _, _, _)
q.isResolved()
objectMapper.readValue(q.result, Object) == "0x11"
}
def "Ignores errors"() {
setup:
def q = Spy(new NonceQuorum(3))
def upstream1 = Stub(Upstream)
def upstream2 = Stub(Upstream)
def upstream3 = Stub(Upstream)
when:
q.init(Stub(Head))
then:
!q.isResolved()
when:
q.record(new JsonRpcException(1, "Internal"), null, upstream1)
then:
!q.isResolved()
1 * q.recordError(_, _, _, _, _)
when:
q.record('"0x11"'.bytes, null, upstream2, null)
then:
!q.isResolved()
1 * q.recordValue(_, "0x11", _, _, _)
when:
q.record('"0x10"'.bytes, null, upstream3, null)
then:
1 * q.recordValue(_, "0x10", _, _, _)
!q.isResolved()
when:
q.record('"0x11"'.bytes, null, upstream1, null)
then:
1 * q.recordValue(_, "0x11", _, _, _)
q.isResolved()
objectMapper.readValue(q.result, Object) == "0x11"
}
def "Fail if too many errors"() {
setup:
def q = Spy(new NonceQuorum(3))
def upstream1 = Stub(Upstream)
def upstream2 = Stub(Upstream)
def upstream3 = Stub(Upstream)
when:
q.init(Stub(Head))
then:
!q.isResolved()
!q.isFailed()
when:
q.record(new JsonRpcException(1, "Internal"), null, upstream1)
then:
!q.isResolved()
!q.isFailed()
when:
q.record(new JsonRpcException(1, "Internal"), null, upstream2)
then:
!q.isResolved()
!q.isFailed()
when:
q.record(new JsonRpcException(1, "Internal"), null, upstream3)
then:
q.isFailed()
!q.isResolved()
q.getError() != null
q.getError().message == "Internal"
q.signature == null
}
}