Add benchmarks for kotlin-graphql library.

This library uses Spring plus kapt.

^KT-49921 In Progress
This commit is contained in:
Yahor Berdnikau
2022-01-10 15:01:23 +01:00
committed by Space
parent ee9965a139
commit 4fe27cce07
4 changed files with 198 additions and 0 deletions
@@ -0,0 +1,74 @@
/*
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
// Quite big library written in Kotlin:
// - uses Spring boot
// - uses Kotlin kapt
@file:BenchmarkProject(
name = "graphql-kotlin",
gitUrl = "https://github.com/ExpediaGroup/graphql-kotlin.git",
gitCommitSha = "fac1e41914f6a8a0a494082752a4e3674b812a3f"
)
import java.io.File
val stableReleasePatch = {
"graphql-kotlin-1.6.10.patch" to File("benchmarkScripts/files/graphql-kotlin-1.6.10.patch").inputStream()
}
val currentReleasePatch = {
"graphql-kotlin-current.patch" to File("benchmarkScripts/files/graphql-kotlin-current.patch")
.readText()
.run { replace("<kotlin_version>", currentKotlinVersion) }
.byteInputStream()
}
runAllBenchmarks(
suite {
scenario {
title = "Spring server clean build"
useGradleArgs("--no-build-cache")
runTasks(":graphql-kotlin-spring-server:assemble")
runCleanupTasks("clean")
}
scenario {
title = "Spring client clean build"
useGradleArgs("--no-build-cache")
runTasks(":graphql-kotlin-spring-client:assemble")
runCleanupTasks("clean")
}
scenario {
title = "Ktor client clean build"
useGradleArgs("--no-build-cache")
runTasks(":graphql-kotlin-ktor-client:assemble")
runCleanupTasks("clean")
}
scenario {
title = "Incremental Spring server build with ABI change in FederatedSchemaGenerator"
useGradleArgs("--no-build-cache")
runTasks(":graphql-kotlin-spring-server:assemble")
applyAbiChangeTo("generator/graphql-kotlin-federation/src/main/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaGenerator.kt")
}
scenario {
title = "Incremental Spring client build with ABI change in GraphQLClient"
useGradleArgs("--no-build-cache")
runTasks(":graphql-kotlin-spring-server:assemble")
applyAbiChangeTo("clients/graphql-kotlin-client/src/main/kotlin/com/expediagroup/graphql/client/GraphQLClient.kt")
}
},
mapOf(
"1.6.10" to stableReleasePatch,
"1.6.20" to currentReleasePatch
)
)