Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Create unit tests for Web3ClientVersion #194

Merged
merged 1 commit into from
Oct 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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);
}
}