blob: 936aed91703db7b40ff940c832993cd82ca6e811 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE
* file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file
* to You 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 org.apache.tuweni.ethstats;
import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.Bytes32;
import org.apache.tuweni.eth.Address;
import org.apache.tuweni.eth.Hash;
import org.apache.tuweni.junit.VertxExtension;
import org.apache.tuweni.junit.VertxInstance;
import org.apache.tuweni.units.bigints.UInt256;
import java.net.URI;
import java.util.Collections;
import io.vertx.core.Vertx;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.logl.Level;
import org.logl.Logger;
import org.logl.logl.SimpleLogger;
@ExtendWith(VertxExtension.class)
public class EthStatsReporterTest {
//@Disabled
@Test
void testConnectToLocalEthStats(@VertxInstance Vertx vertx) throws InterruptedException {
Logger logger = SimpleLogger.withLogLevel(Level.DEBUG).toOutputStream(System.out).getLogger("wat");
EthStatsReporter reporter = new EthStatsReporter(
vertx,
logger,
Collections.singletonList(URI.create("ws://localhost:3000/api")),
"wat",
"name",
"node",
33030,
"10",
"eth/63",
"Windoz",
"64",
(blockNumbers) -> {
});
reporter.sendNewHead(
new BlockStats(
UInt256.ONE,
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
3L,
Address.fromBytes(Bytes.random(20)),
42L,
43,
UInt256.valueOf(42L),
UInt256.valueOf(84L),
Collections.emptyList(),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
Collections.emptyList()));
reporter.sendNewNodeStats(new NodeStats(true, false, true, 42, 9, 4000, 100));
reporter.sendNewPendingTransactionCount(42);
reporter.start();
Thread.sleep(1000);
reporter.sendNewHead(
new BlockStats(
UInt256.valueOf(2),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
3L,
Address.fromBytes(Bytes.random(20)),
42L,
43,
UInt256.valueOf(42L),
UInt256.valueOf(84L),
Collections.emptyList(),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
Collections.emptyList()));
Thread.sleep(1000);
Thread.sleep(1000);
reporter.sendNewHead(
new BlockStats(
UInt256.valueOf(3),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
3L,
Address.fromBytes(Bytes.random(20)),
42L,
43,
UInt256.valueOf(42L),
UInt256.valueOf(84L),
Collections.emptyList(),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
Collections.emptyList()));
Thread.sleep(1000);
reporter.sendNewHead(
new BlockStats(
UInt256.valueOf(4),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
3L,
Address.fromBytes(Bytes.random(20)),
42L,
43,
UInt256.valueOf(42L),
UInt256.valueOf(84L),
Collections.emptyList(),
Hash.fromBytes(Bytes32.random()),
Hash.fromBytes(Bytes32.random()),
Collections.emptyList()));
Thread.sleep(5000);
reporter.stop();
}
}