blob: a3438b90b241cd57e91ca57f073de9387b6c3263 [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.les
import org.apache.tuweni.eth.repository.BlockchainIndex
import org.apache.tuweni.eth.repository.BlockchainRepository
import org.apache.tuweni.junit.LuceneIndexWriter
import org.apache.tuweni.junit.LuceneIndexWriterExtension
import org.apache.tuweni.junit.TempDirectoryExtension
import org.apache.tuweni.kv.MapKeyValueStore
import org.apache.tuweni.rlpx.wire.SubProtocolIdentifier
import org.apache.tuweni.units.bigints.UInt256
import org.apache.lucene.index.IndexWriter
import org.junit.jupiter.api.Assertions.assertFalse
import org.junit.jupiter.api.Assertions.assertTrue
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInstance
import org.junit.jupiter.api.extension.ExtendWith
@ExtendWith(TempDirectoryExtension::class, LuceneIndexWriterExtension::class)
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
internal class LESSubprotocolTest {
@Test
@Throws(Exception::class)
fun supportsLESv2(@LuceneIndexWriter writer: IndexWriter) {
val sp = LESSubprotocol(
1,
false,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
BlockchainRepository(
MapKeyValueStore(),
MapKeyValueStore(),
MapKeyValueStore(),
MapKeyValueStore(),
BlockchainIndex(writer)
)
)
assertTrue(sp.supports(SubProtocolIdentifier.of("les", 2)))
}
@Test
@Throws(Exception::class)
fun noSupportForv3(@LuceneIndexWriter writer: IndexWriter) {
val sp = LESSubprotocol(
1,
false,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
BlockchainRepository(
MapKeyValueStore(),
MapKeyValueStore(),
MapKeyValueStore(),
MapKeyValueStore(),
BlockchainIndex(writer)
)
)
assertFalse(sp.supports(SubProtocolIdentifier.of("les", 3)))
}
@Test
@Throws(Exception::class)
fun noSupportForETH(@LuceneIndexWriter writer: IndexWriter) {
val sp = LESSubprotocol(
1,
false,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
UInt256.ZERO,
BlockchainRepository(
MapKeyValueStore(),
MapKeyValueStore(),
MapKeyValueStore(),
MapKeyValueStore(),
BlockchainIndex(writer)
)
)
assertFalse(sp.supports(SubProtocolIdentifier.of("eth", 2)))
}
}