From de5796e478e63e41c2f7610fe3eef9162625a86d Mon Sep 17 00:00:00 2001 From: Jussi Virtanen Date: Sun, 28 Oct 2018 08:15:52 +0200 Subject: [PATCH] Create unit tests for Web3ClientVersion (#194) --- .../methods/Web3ClientVersionTest.java | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 ethereum/jsonrpc/src/test/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/methods/Web3ClientVersionTest.java diff --git a/ethereum/jsonrpc/src/test/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/methods/Web3ClientVersionTest.java b/ethereum/jsonrpc/src/test/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/methods/Web3ClientVersionTest.java new file mode 100644 index 0000000000..c717a16dac --- /dev/null +++ b/ethereum/jsonrpc/src/test/java/tech/pegasys/pantheon/ethereum/jsonrpc/internal/methods/Web3ClientVersionTest.java @@ -0,0 +1,46 @@ +/* + * 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 tech.pegasys.pantheon.ethereum.jsonrpc.internal.JsonRpcRequest; +import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcResponse; +import tech.pegasys.pantheon.ethereum.jsonrpc.internal.response.JsonRpcSuccessResponse; + +import org.junit.Test; + +public class Web3ClientVersionTest { + + private final String CLIENT_VERSION = "pantheon/1.0.0"; + private final String JSON_RPC_VERSION = "2.0"; + private final String ETH_METHOD = "web3_clientVersion"; + + private final Web3ClientVersion method = new Web3ClientVersion(CLIENT_VERSION); + + @Test + public void shouldReturnCorrectMethodName() { + assertThat(method.getName()).isEqualTo(ETH_METHOD); + } + + @Test + public void shouldReturnCorrectResult() { + final JsonRpcRequest request = + new JsonRpcRequest(JSON_RPC_VERSION, ETH_METHOD, new Object[] {}); + + final JsonRpcResponse expected = new JsonRpcSuccessResponse(request.getId(), CLIENT_VERSION); + final JsonRpcResponse actual = method.response(request); + + assertThat(actual).isEqualToComparingFieldByFieldRecursively(expected); + } +}