This repository has been archived by the owner on Sep 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added in support for the JSON RPC Eth Hashrate method. (#488)
- Loading branch information
Showing
4 changed files
with
139 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
50 changes: 50 additions & 0 deletions
50
...pc/src/main/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/methods/EthHashrate.java
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,50 @@ | ||
/* | ||
* Copyright 2018 ConsenSys AG. | ||
* | ||
* 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 tech.pegasys.pantheon.ethereum.jsonrpc.internal.methods; | ||
|
||
import tech.pegasys.pantheon.ethereum.blockcreation.MiningCoordinator; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.JsonRpcRequest; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcError; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcErrorResponse; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcResponse; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcSuccessResponse; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.results.Quantity; | ||
|
||
import java.util.Optional; | ||
|
||
public class EthHashrate implements JsonRpcMethod { | ||
|
||
private final MiningCoordinator miningCoordinator; | ||
|
||
public EthHashrate(final MiningCoordinator miningCoordinator) { | ||
this.miningCoordinator = miningCoordinator; | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return "eth_hashrate"; | ||
} | ||
|
||
@Override | ||
public JsonRpcResponse response(final JsonRpcRequest req) { | ||
try { | ||
final Optional<Long> hashesPerSecond = miningCoordinator.hashesPerSecond(); | ||
if (hashesPerSecond.isPresent()) { | ||
return new JsonRpcSuccessResponse(req.getId(), Quantity.create(hashesPerSecond.get())); | ||
} | ||
return new JsonRpcErrorResponse(req.getId(), JsonRpcError.NO_HASHES_PER_SECOND); | ||
} catch (final UnsupportedOperationException ex) { | ||
return new JsonRpcErrorResponse(req.getId(), JsonRpcError.INVALID_REQUEST); | ||
} | ||
} | ||
} |
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
86 changes: 86 additions & 0 deletions
86
...rc/test/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/methods/EthHashrateTest.java
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,86 @@ | ||
/* | ||
* Copyright 2018 ConsenSys AG. | ||
* | ||
* 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 tech.pegasys.pantheon.ethereum.jsonrpc.internal.methods; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.when; | ||
|
||
import tech.pegasys.pantheon.ethereum.blockcreation.EthHashMiningCoordinator; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.JsonRpcRequest; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcError; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcErrorResponse; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcResponse; | ||
import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcSuccessResponse; | ||
|
||
import java.util.Optional; | ||
|
||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public class EthHashrateTest { | ||
|
||
@Mock private EthHashMiningCoordinator miningCoordinator; | ||
private EthHashrate method; | ||
private final String JSON_RPC_VERSION = "2.0"; | ||
private final String ETH_METHOD = "eth_hashrate"; | ||
|
||
@Before | ||
public void setUp() { | ||
method = new EthHashrate(miningCoordinator); | ||
} | ||
|
||
@Test | ||
public void returnsCorrectMethodName() { | ||
assertThat(method.getName()).isEqualTo(ETH_METHOD); | ||
} | ||
|
||
@Test | ||
public void shouldReturnValueFromMiningCoordinator() { | ||
final JsonRpcRequest request = requestWithParams(); | ||
final JsonRpcResponse expectedResponse = new JsonRpcSuccessResponse(request.getId(), "0xc"); | ||
when(miningCoordinator.hashesPerSecond()).thenReturn(Optional.of(12L)); | ||
|
||
final JsonRpcResponse actualResponse = method.response(request); | ||
assertThat(actualResponse).isEqualToComparingFieldByField(expectedResponse); | ||
} | ||
|
||
@Test | ||
public void shouldReturnErrorWhenMiningCoordinatorDoesNotHaveHashes() { | ||
final JsonRpcRequest request = requestWithParams(); | ||
final JsonRpcResponse expectedResponse = | ||
new JsonRpcErrorResponse(request.getId(), JsonRpcError.NO_HASHES_PER_SECOND); | ||
when(miningCoordinator.hashesPerSecond()).thenReturn(Optional.empty()); | ||
|
||
final JsonRpcResponse actualResponse = method.response(request); | ||
assertThat(actualResponse).isEqualToComparingFieldByField(expectedResponse); | ||
} | ||
|
||
@Test | ||
public void shouldReturnErrorWhenMiningCoordinatorDoesNotSupportHashing() { | ||
final JsonRpcRequest request = requestWithParams(); | ||
final JsonRpcResponse expectedResponse = | ||
new JsonRpcErrorResponse(request.getId(), JsonRpcError.INVALID_REQUEST); | ||
when(miningCoordinator.hashesPerSecond()).thenThrow(UnsupportedOperationException.class); | ||
|
||
final JsonRpcResponse actualResponse = method.response(request); | ||
assertThat(actualResponse).isEqualToComparingFieldByField(expectedResponse); | ||
} | ||
|
||
private JsonRpcRequest requestWithParams() { | ||
return new JsonRpcRequest(JSON_RPC_VERSION, ETH_METHOD, new Object[] {}); | ||
} | ||
} |