mirror of https://github.com/hyperledger/besu
PAN-2741: Added error msg for calling eth_sendTransaction (#1681)
* PAN-2741: Added error msg for calling eth_sendTransaction * Fix wildcard import * Updating error msg Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>pull/2/head
parent
1a12fdbccf
commit
ba324418f7
@ -0,0 +1,32 @@ |
|||||||
|
/* |
||||||
|
* 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.jsonrpc.RpcMethod; |
||||||
|
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; |
||||||
|
|
||||||
|
public class EthSendTransaction implements JsonRpcMethod { |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getName() { |
||||||
|
return RpcMethod.ETH_SEND_TRANSACTION.getMethodName(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public JsonRpcResponse response(final JsonRpcRequest request) { |
||||||
|
return new JsonRpcErrorResponse(request.getId(), JsonRpcError.ETH_SEND_TX_NOT_AVAILABLE); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,51 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2019 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 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 org.junit.Before; |
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
public class EthSendTransactionTest { |
||||||
|
|
||||||
|
private JsonRpcMethod method; |
||||||
|
|
||||||
|
@Before |
||||||
|
public void before() { |
||||||
|
method = new EthSendTransaction(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void methodReturnExpectedName() { |
||||||
|
assertThat(method.getName()).isEqualTo("eth_sendTransaction"); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void requestIsMissingParameter() { |
||||||
|
final JsonRpcRequest request = |
||||||
|
new JsonRpcRequest("2.0", "eth_sendTransaction", new String[] {}); |
||||||
|
|
||||||
|
final JsonRpcResponse expectedResponse = |
||||||
|
new JsonRpcErrorResponse(request.getId(), JsonRpcError.ETH_SEND_TX_NOT_AVAILABLE); |
||||||
|
|
||||||
|
final JsonRpcResponse actualResponse = method.response(request); |
||||||
|
|
||||||
|
assertThat(actualResponse).isEqualToComparingFieldByField(expectedResponse); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue