mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
5.0 KiB
152 lines
5.0 KiB
6 years ago
|
apply plugin: 'java-library'
|
||
|
|
||
|
jar {
|
||
|
baseName 'pantheon-core'
|
||
|
manifest {
|
||
|
attributes('Implementation-Title': baseName,
|
||
|
'Implementation-Version': project.version)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':crypto')
|
||
|
implementation project(':ethereum:rlp')
|
||
|
implementation project(':ethereum:trie')
|
||
|
implementation project(':services:kvstore')
|
||
|
|
||
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
||
|
implementation 'com.google.guava:guava'
|
||
|
implementation 'io.vertx:vertx-core'
|
||
|
implementation 'org.apache.logging.log4j:log4j-api'
|
||
|
|
||
|
runtime 'org.apache.logging.log4j:log4j-core'
|
||
|
|
||
|
testImplementation project(path:':ethereum:referencetests', configuration: 'testOutput')
|
||
|
testImplementation project(':testutil')
|
||
|
|
||
|
testImplementation 'org.assertj:assertj-core'
|
||
|
testImplementation 'org.mockito:mockito-core'
|
||
|
testImplementation 'junit:junit'
|
||
|
|
||
|
integrationTestImplementation 'org.assertj:assertj-core'
|
||
|
integrationTestImplementation 'org.mockito:mockito-core'
|
||
|
integrationTestImplementation 'junit:junit'
|
||
|
|
||
|
testSupportImplementation project(':testutil')
|
||
|
|
||
|
testSupportImplementation 'org.assertj:assertj-core'
|
||
|
testSupportImplementation 'org.mockito:mockito-core'
|
||
|
testSupportImplementation 'junit:junit'
|
||
|
}
|
||
|
|
||
|
configurations { testArtifacts }
|
||
|
task testJar (type: Jar) {
|
||
|
baseName = "${project.name}-test"
|
||
|
from sourceSets.test.output
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
exclude 'net/consensys/pantheon/ethereum/vm/**ReferenceTest.class'
|
||
|
exclude 'net/consensys/pantheon/ethereum/vm/blockchain/**.class'
|
||
|
exclude 'net/consensys/pantheon/ethereum/vm/generalstate/**.class'
|
||
|
}
|
||
|
|
||
|
def generateTestFiles(FileTree jsonPath, File resourcesPath, File templateFile, String pathstrip, String destination, String namePrefix) {
|
||
|
def referenceTestTemplate = templateFile.text
|
||
|
|
||
|
// This is how many json files to include in each test file
|
||
|
def fileSets = jsonPath.getFiles().collate(5)
|
||
|
|
||
|
fileSets.each { fileSet ->
|
||
|
def resPath = resourcesPath.getPath().replaceAll("\\\\", "/")
|
||
|
def name = fileSet.first().getPath().toString()
|
||
|
.replaceAll("\\\\", "/")
|
||
|
.replaceAll(resPath + "/", "")
|
||
|
.replaceAll(pathstrip, "")
|
||
|
.replaceAll(".json", "")
|
||
|
.replaceAll("/", "_")
|
||
|
.replaceAll("\\^", "")
|
||
|
.replaceAll("\\-", "")
|
||
|
.replaceAll("\\+", "")
|
||
|
|
||
|
def paths = []
|
||
|
fileSet.each { testJsonFile ->
|
||
|
if (!testJsonFile.getName().toString().startsWith(".")) {
|
||
|
paths << testJsonFile.getPath().toString()
|
||
|
.replaceAll(resPath + "/", "")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
def testFile = file(destination + "/" + namePrefix + "_" + name + ".java")
|
||
|
|
||
|
def allPaths = '"' + paths.join('", "') + '"';
|
||
|
|
||
|
def testFileContents = referenceTestTemplate
|
||
|
.replaceAll("%%TESTS_FILE%%", allPaths)
|
||
|
.replaceAll("%%TESTS_NAME%%", namePrefix + "_" + name)
|
||
|
testFile.newWriter().withWriter { w -> w << testFileContents }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
task blockchainReferenceTestsSetup {
|
||
|
generateTestFiles(
|
||
|
fileTree('../referencetests/src/test/resources/BlockchainTests'),
|
||
|
file("../referencetests/src/test/resources"),
|
||
|
file("./src/test/resources/net/consensys/pantheon/ethereum/vm/BlockchainReferenceTest.java.template"),
|
||
|
"BlockchainTests/",
|
||
|
"./src/test/java/net/consensys/pantheon/ethereum/vm/blockchain",
|
||
|
"BlockchainReferenceTest"
|
||
|
)
|
||
|
}
|
||
|
|
||
|
compileTestJava.dependsOn(blockchainReferenceTestsSetup)
|
||
|
|
||
|
task generalstateReferenceTestsSetup {
|
||
|
generateTestFiles(
|
||
|
fileTree("../referencetests/src/test/resources/GeneralStateTests"),
|
||
|
file("../referencetests/src/test/resources"),
|
||
|
file("./src/test/resources/net/consensys/pantheon/ethereum/vm/GeneralStateReferenceTest.java.template"),
|
||
|
"GeneralStateTests/",
|
||
|
"./src/test/java/net/consensys/pantheon/ethereum/vm/generalstate",
|
||
|
"GeneralStateReferenceTest"
|
||
|
)
|
||
|
}
|
||
|
|
||
|
compileTestJava.dependsOn(generalstateReferenceTestsSetup)
|
||
|
|
||
|
task generalstateRegressionReferenceTestsSetup {
|
||
|
generateTestFiles(
|
||
|
fileTree("./src/test/resources/regressions/generalstate"),
|
||
|
file("./src/test/resources"),
|
||
|
file("./src/test/resources/net/consensys/pantheon/ethereum/vm/GeneralStateReferenceTest.java.template"),
|
||
|
"regressions/generalstate/",
|
||
|
"./src/test/java/net/consensys/pantheon/ethereum/vm/generalstate",
|
||
|
"GeneralStateRegressionReferenceTest"
|
||
|
)
|
||
|
}
|
||
|
|
||
|
compileTestJava.dependsOn(generalstateRegressionReferenceTestsSetup)
|
||
|
|
||
|
task cleanupReferenceTests(type: Delete) {
|
||
|
delete fileTree("./src/test/java/net/consensys/pantheon/ethereum/vm/generalstate/") {
|
||
|
include("**/GeneralStateReferenceTest*.java")
|
||
|
include("**/GeneralStateRegressionReferenceTest*.java")
|
||
|
}
|
||
|
delete fileTree("./src/test/java/net/consensys/pantheon/ethereum/vm/blockchain/") { include("**/BlockchainReferenceTest*.java") }
|
||
|
}
|
||
|
|
||
|
clean.dependsOn(cleanupReferenceTests)
|
||
|
|
||
|
task referenceTests(type: Test, dependsOn: ["compileTestJava"]) {
|
||
|
scanForTestClasses = false
|
||
|
enableAssertions = true
|
||
|
include 'net/consensys/pantheon/ethereum/vm/**ReferenceTest.class'
|
||
|
include 'net/consensys/pantheon/ethereum/vm/blockchain/**.class'
|
||
|
include 'net/consensys/pantheon/ethereum/vm/generalstate/**.class'
|
||
|
}
|
||
|
|
||
|
artifacts {
|
||
|
testArtifacts testJar
|
||
|
testSupportArtifacts testSupportJar
|
||
|
}
|