From ddcbccf49df8c38ceae2bba80039023526bbc3b5 Mon Sep 17 00:00:00 2001 From: lorenz <stu203404@mail.uni-kiel.de> Date: Tue, 20 Apr 2021 14:15:58 +0200 Subject: [PATCH] Refactoring --- .../theodolite/benchmark/KubernetesBenchmark.kt | 4 ++-- .../benchmark/KubernetesBenchmarkDeployment.kt | 2 +- .../kotlin/theodolite/evaluation/SloChecker.kt | 2 +- .../theodolite/execution/BenchmarkExecutor.kt | 2 +- .../main/kotlin/theodolite/execution/Main.kt | 6 +++--- .../execution/operator/BenchmarkEventHandler.kt | 7 ++++--- .../execution/operator/ExecutionEventHandler.kt | 15 ++++++++------- .../execution/operator/TheodoliteController.kt | 1 - .../kotlin/theodolite/k8s/K8sContextFactory.kt | 6 +++--- .../kotlin/theodolite/k8s/K8sResourceLoader.kt | 9 ++++++++- .../main/kotlin/theodolite/k8s/TopicManager.kt | 17 +++++++++-------- .../kotlin/theodolite/patcher/ImagePatcher.kt | 2 +- ...umNestedGroupsLoadGeneratorReplicaPatcher.kt | 5 +++-- .../NumSensorsLoadGeneratorReplicaPatcher.kt | 3 ++- .../theodolite/patcher/ResourceLimitPatcher.kt | 1 - .../patcher/ResourceRequestPatcher.kt | 1 - .../theodolite/patcher/SchedulerNamePatcher.kt | 8 ++++---- .../searchstrategy/CompositeStrategy.kt | 2 +- .../strategies/searchstrategy/FullSearch.kt | 2 +- .../main/kotlin/theodolite/util/KafkaConfig.kt | 3 ++- .../restriction/LowerBoundRestrictionTest.kt | 10 ++++++---- 21 files changed, 60 insertions(+), 48 deletions(-) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt index bbcb8a957..53fcb5793 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt @@ -22,7 +22,7 @@ private var DEFAULT_NAMESPACE = "default" * - [loadGenResource] resource that generates the load, * - [resourceTypes] types of scaling resources, * - [loadTypes] types of loads that can be scaled for the benchmark, - * - [kafkaConfig] for the [TopicManager], + * - [kafkaConfig] for the [theodolite.k8s.TopicManager], * - [namespace] for the client, * - [path] under which the resource yamls can be found. * @@ -63,7 +63,7 @@ class KubernetesBenchmark : Benchmark, CustomResource(), Namespaced { * First loads all required resources and then patches them to the concrete load and resources for the experiment. * Afterwards patches additional configurations(cluster depending) into the resources. * @param load concrete load that will be benchmarked in this experiment. - * @param res concrete resoruce that will be scaled for this experiment. + * @param res concrete resource that will be scaled for this experiment. * @param configurationOverrides * @return a [BenchmarkDeployment] */ diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt index 08fdd840d..5c2108615 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt @@ -35,7 +35,7 @@ class KubernetesBenchmarkDeployment( */ override fun setup() { val kafkaTopics = this.topics.filter { !it.removeOnly } - .map{ NewTopic(it.name, it.numPartitions, it.replicationFactor) } + .map { NewTopic(it.name, it.numPartitions, it.replicationFactor) } kafkaController.createTopics(kafkaTopics) resources.forEach { kubernetesManager.deploy(it) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloChecker.kt b/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloChecker.kt index 94d816d87..758dcdefc 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloChecker.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/evaluation/SloChecker.kt @@ -4,7 +4,7 @@ import theodolite.util.PrometheusResponse import java.time.Instant /** - * A SloChecker can be used to evaluate data from Promehteus. + * A SloChecker can be used to evaluate data from Prometheus. * @constructor Creates an empty SloChecker */ interface SloChecker { diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt index 6d4cd9ea9..4fb99fb72 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/BenchmarkExecutor.kt @@ -41,7 +41,7 @@ abstract class BenchmarkExecutor( * given load, false otherwise. */ abstract fun runExperiment(load: LoadDimension, res: Resource): Boolean - + /** * Wait while the benchmark is running and log the number of minutes executed every 1 minute. * diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Main.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/Main.kt index 64a40c0b1..bf8835299 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Main.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/Main.kt @@ -16,14 +16,14 @@ object Main { val mode = System.getenv("MODE") ?: "standalone" logger.info { "Start Theodolite with mode $mode" } - when(mode) { + when (mode) { "standalone" -> TheodoliteYamlExecutor().start() "yaml-executor" -> TheodoliteYamlExecutor().start() // TODO remove (#209) "operator" -> TheodoliteOperator().start() - else -> { + else -> { logger.error { "MODE $mode not found" } exitProcess(1) } } } -} \ No newline at end of file +} diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/BenchmarkEventHandler.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/BenchmarkEventHandler.kt index 69c53a379..7c8188e3c 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/BenchmarkEventHandler.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/BenchmarkEventHandler.kt @@ -3,6 +3,7 @@ package theodolite.execution.operator import io.fabric8.kubernetes.client.informers.ResourceEventHandler import mu.KotlinLogging import theodolite.benchmark.KubernetesBenchmark + private val logger = KotlinLogging.logger {} /** @@ -13,7 +14,7 @@ private val logger = KotlinLogging.logger {} * @see TheodoliteController * @see KubernetesBenchmark */ -class BenchmarkEventHandler(private val controller: TheodoliteController): ResourceEventHandler<KubernetesBenchmark> { +class BenchmarkEventHandler(private val controller: TheodoliteController) : ResourceEventHandler<KubernetesBenchmark> { /** * Add a KubernetesBenchmark. @@ -39,7 +40,7 @@ class BenchmarkEventHandler(private val controller: TheodoliteController): Resou override fun onUpdate(oldBenchmark: KubernetesBenchmark, newBenchmark: KubernetesBenchmark) { logger.info { "Update benchmark ${newBenchmark.metadata.name}." } newBenchmark.name = newBenchmark.metadata.name - if (this.controller.isInitialized() && this.controller.executor.getBenchmark().name == oldBenchmark.metadata.name) { + if (this.controller.isInitialized() && this.controller.executor.getBenchmark().name == oldBenchmark.metadata.name) { this.controller.isUpdated.set(true) this.controller.executor.executor.run.compareAndSet(true, false) } else { @@ -57,7 +58,7 @@ class BenchmarkEventHandler(private val controller: TheodoliteController): Resou override fun onDelete(benchmark: KubernetesBenchmark, b: Boolean) { logger.info { "Delete benchmark ${benchmark.metadata.name}." } this.controller.benchmarks.remove(benchmark.metadata.name) - if ( this.controller.isInitialized() && this.controller.executor.getBenchmark().name == benchmark.metadata.name) { + if (this.controller.isInitialized() && this.controller.executor.getBenchmark().name == benchmark.metadata.name) { this.controller.isUpdated.set(true) this.controller.executor.executor.run.compareAndSet(true, false) logger.info { "Current benchmark stopped." } diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt index 971d3428f..ea62b7b89 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/ExecutionEventHandler.kt @@ -3,7 +3,6 @@ package theodolite.execution.operator import io.fabric8.kubernetes.client.informers.ResourceEventHandler import mu.KotlinLogging import theodolite.benchmark.BenchmarkExecution -import java.lang.NullPointerException private val logger = KotlinLogging.logger {} @@ -15,7 +14,7 @@ private val logger = KotlinLogging.logger {} * @see TheodoliteController * @see BenchmarkExecution */ -class ExecutionHandler(private val controller: TheodoliteController): ResourceEventHandler<BenchmarkExecution> { +class ExecutionHandler(private val controller: TheodoliteController) : ResourceEventHandler<BenchmarkExecution> { /** * Add an execution to the end of the queue of the TheodoliteController. @@ -29,17 +28,19 @@ class ExecutionHandler(private val controller: TheodoliteController): ResourceEv } /** - * Update an execution. If this execution is running at the time this function is called, it is stopped and added to - * the beginning of the queue of the TheodoliteController. Otherwise, it is just added to the beginning of the queue. + * Updates an execution. If this execution is running at the time this function is called, it is stopped and + * added to the beginning of the queue of the TheodoliteController. + * Otherwise, it is just added to the beginning of the queue. * - * @param execution the execution to update + * @param oldExecution the old execution + * @param newExecution the new execution */ override fun onUpdate(oldExecution: BenchmarkExecution, newExecution: BenchmarkExecution) { logger.info { "Add updated execution to queue." } newExecution.name = newExecution.metadata.name try { this.controller.executionsQueue.removeIf { e -> e.name == newExecution.metadata.name } - } catch(e: NullPointerException) { + } catch (e: NullPointerException) { logger.warn { "No execution found for deletion" } } this.controller.executionsQueue.addFirst(newExecution) @@ -58,7 +59,7 @@ class ExecutionHandler(private val controller: TheodoliteController): ResourceEv try { this.controller.executionsQueue.removeIf { e -> e.name == execution.metadata.name } logger.info { "Delete execution ${execution.metadata.name} from queue." } - } catch(e: NullPointerException) { + } catch (e: NullPointerException) { logger.warn { "No execution found for deletion" } } if (this.controller.isInitialized() && this.controller.executor.getExecution().name == execution.metadata.name) { diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt index 532185841..0e889e039 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt @@ -2,7 +2,6 @@ package theodolite.execution.operator import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.fabric8.kubernetes.client.dsl.base.CustomResourceDefinitionContext -import khttp.patch import mu.KotlinLogging import theodolite.benchmark.BenchmarkExecution import theodolite.benchmark.KubernetesBenchmark diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt index c0e076101..7eb209bfb 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sContextFactory.kt @@ -21,12 +21,12 @@ class K8sContextFactory { * * @see CustomResourceDefinitionContext */ - fun create(api: String, scope: String, group: String, plural: String ) : CustomResourceDefinitionContext { - return CustomResourceDefinitionContext.Builder() + fun create(api: String, scope: String, group: String, plural: String): CustomResourceDefinitionContext { + return CustomResourceDefinitionContext.Builder() .withVersion(api) .withScope(scope) .withGroup(group) .withPlural(plural) .build() } -} \ No newline at end of file +} diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt index 324b02b74..fd5ec3b2e 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sResourceLoader.kt @@ -32,7 +32,14 @@ class K8sResourceLoader(private val client: NamespacedKubernetesClient) { * @return CustomResource from fabric8 */ private fun loadServiceMonitor(path: String): ServiceMonitorWrapper { - return loadGenericResource(path) { x: String -> ServiceMonitorWrapper(YamlParser().parse(path, HashMap<String, String>()::class.java)!!) } + return loadGenericResource(path) { x: String -> + ServiceMonitorWrapper( + YamlParser().parse( + path, + HashMap<String, String>()::class.java + )!! + ) + } } /** diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt index 1367f6258..242569246 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt @@ -43,7 +43,7 @@ class TopicManager(private val kafkaConfig: Map<String, Any>) { logger.info { "Topics creation finished with result: ${ - result.values().map { it -> it.key + ": " + it.value.isDone } + result.values().map { it.key + ": " + it.value.isDone } .joinToString(separator = ",") } " } @@ -57,20 +57,21 @@ class TopicManager(private val kafkaConfig: Map<String, Any>) { fun removeTopics(topics: List<String>) { val kafkaAdmin: AdminClient = AdminClient.create(this.kafkaConfig) val currentTopics = kafkaAdmin.listTopics().names().get() - delete(currentTopics.filter{matchRegex(it, topics)}, kafkaAdmin) + delete(currentTopics.filter { matchRegex(it, topics) }, kafkaAdmin) kafkaAdmin.close() } /** - * This function checks whether one string in `topics` can be used as prefix of a regular expression to create the string `existingTopic` + * This function checks whether one string in `topics` can be used as prefix of a regular expression + * to create the string `existingTopic`. * - * @param existingTopic string for which should be checked if it could be created - * @param topics list of string which are used as possible prefixes to create `existingTopic` - * @return true, `existingTopics` matches a created regex, else false + * @param existingTopic string for which should be checked if it could be created. + * @param topics list of string which are used as possible prefixes to create `existingTopic`. + * @return true, `existingTopics` matches a created regex, else false. */ private fun matchRegex(existingTopic: String, topics: List<String>): Boolean { for (t in topics) { - val regex = t.toRegex() + val regex = t.toRegex() if (regex.matches(existingTopic)) { return true } @@ -87,7 +88,7 @@ class TopicManager(private val kafkaConfig: Map<String, Any>) { result.all().get() // wait for the future to be completed logger.info { "Topics deletion finished with result: ${ - result.values().map { it -> it.key + ": " + it.value.isDone } + result.values().map { it.key + ": " + it.value.isDone } .joinToString(separator = ",") }" } diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt index e5e5f6cb6..b29d8d992 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt @@ -12,7 +12,7 @@ import io.fabric8.kubernetes.api.model.apps.StatefulSet */ class ImagePatcher(private val k8sResource: KubernetesResource, private val container: String) : AbstractPatcher(k8sResource, container) { - + override fun <String> patch(imagePath: String) { if (k8sResource is Deployment) { k8sResource.spec.template.spec.containers.filter { it.name == container }.forEach { diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt index 7cf56f845..d7136740a 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumNestedGroupsLoadGeneratorReplicaPatcher.kt @@ -7,12 +7,13 @@ import kotlin.math.pow private const val NUM_SENSORS = 4.0 private const val LOAD_GEN_MAX_RECORDS = 150000 -class NumNestedGroupsLoadGeneratorReplicaPatcher(private val k8sResource: KubernetesResource) : AbstractPatcher(k8sResource) { +class NumNestedGroupsLoadGeneratorReplicaPatcher(private val k8sResource: KubernetesResource) : + AbstractPatcher(k8sResource) { override fun <String> patch(value: String) { if (k8sResource is Deployment) { if (value is kotlin.String) { val approxNumSensors = NUM_SENSORS.pow(Integer.parseInt(value).toDouble()) - val loadGenInstances = (approxNumSensors + LOAD_GEN_MAX_RECORDS -1) / LOAD_GEN_MAX_RECORDS + val loadGenInstances = (approxNumSensors + LOAD_GEN_MAX_RECORDS - 1) / LOAD_GEN_MAX_RECORDS this.k8sResource.spec.replicas = loadGenInstances.toInt() } } diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt index 6f2ebcb8b..d29280a64 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/NumSensorsLoadGeneratorReplicaPatcher.kt @@ -5,7 +5,8 @@ import io.fabric8.kubernetes.api.model.apps.Deployment private const val LOAD_GEN_MAX_RECORDS = 150000 -class NumSensorsLoadGeneratorReplicaPatcher(private val k8sResource: KubernetesResource) : AbstractPatcher(k8sResource) { +class NumSensorsLoadGeneratorReplicaPatcher(private val k8sResource: KubernetesResource) : + AbstractPatcher(k8sResource) { override fun <String> patch(value: String) { if (k8sResource is Deployment) { if (value is kotlin.String) { diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt index eab82effb..30f82e804 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt @@ -6,7 +6,6 @@ import io.fabric8.kubernetes.api.model.Quantity import io.fabric8.kubernetes.api.model.ResourceRequirements import io.fabric8.kubernetes.api.model.apps.Deployment import io.fabric8.kubernetes.api.model.apps.StatefulSet -import java.lang.IllegalArgumentException /** * The Resource limit [Patcher] set resource limits for deployments and statefulSets. diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt index f4ef38ede..24b2a6d40 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt @@ -6,7 +6,6 @@ import io.fabric8.kubernetes.api.model.Quantity import io.fabric8.kubernetes.api.model.ResourceRequirements import io.fabric8.kubernetes.api.model.apps.Deployment import io.fabric8.kubernetes.api.model.apps.StatefulSet -import java.lang.IllegalArgumentException /** * The Resource request [Patcher] set resource limits for deployments and statefulSets. diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt index 589bceff7..348f0c500 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/SchedulerNamePatcher.kt @@ -4,14 +4,14 @@ import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.api.model.apps.Deployment /** - * The Scheduler name [Patcher] make it possible to set the scheduler which should be used to deploy the given deployment. - * + * The Scheduler name [Patcher] make it possible to set the scheduler which should + * be used to deploy the given deployment. * @param k8sResource Kubernetes resource to be patched. */ -class SchedulerNamePatcher(private val k8sResource: KubernetesResource): Patcher { +class SchedulerNamePatcher(private val k8sResource: KubernetesResource) : Patcher { override fun <String> patch(value: String) { if (k8sResource is Deployment) { k8sResource.spec.template.spec.schedulerName = value as kotlin.String } } -} \ No newline at end of file +} diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt index 6ae06d70c..41cc5c325 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/CompositeStrategy.kt @@ -10,7 +10,7 @@ import theodolite.util.Resource * Composite strategy that combines a SearchStrategy and a set of RestrictionStrategy. * * @param searchStrategy the [SearchStrategy] that is executed as part of this [CompositeStrategy]. - * @param restrictionStrategies the set of [RestrictionStrategy] that are connected conjuntively to restrict the [Resource] + * @param restrictionStrategies the set of [RestrictionStrategy] that are connected conjunctive to restrict the [Resource] * @param benchmarkExecutor Benchmark executor which runs the individual benchmarks. */ @RegisterForReflection diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt index 20290a947..cb0dd2d8a 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/strategies/searchstrategy/FullSearch.kt @@ -18,7 +18,7 @@ private val logger = KotlinLogging.logger {} class FullSearch(benchmarkExecutor: BenchmarkExecutor) : SearchStrategy(benchmarkExecutor) { override fun findSuitableResource(load: LoadDimension, resources: List<Resource>): Resource? { - var minimalSuitableResources: Resource? = null; + var minimalSuitableResources: Resource? = null for (res in resources) { logger.info { "Running experiment with load '${load.get()}' and resources '${res.get()}'" } val result = this.benchmarkExecutor.runExperiment(load, res) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt b/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt index f304d8cd0..398ff90be 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/util/KafkaConfig.kt @@ -2,7 +2,7 @@ package theodolite.util import com.fasterxml.jackson.databind.annotation.JsonDeserialize import io.quarkus.runtime.annotations.RegisterForReflection -import org.apache.kafka.clients.admin.NewTopic +import theodolite.util.KafkaConfig.TopicWrapper import kotlin.properties.Delegates import kotlin.reflect.KProperty @@ -60,6 +60,7 @@ class DelegatesFalse { operator fun getValue(thisRef: Any?, property: KProperty<*>): Boolean { return state } + operator fun setValue(thisRef: Any?, property: KProperty<*>, value: Boolean) { state = value } diff --git a/theodolite-quarkus/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt b/theodolite-quarkus/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt index b6b9eaecd..b368647e3 100644 --- a/theodolite-quarkus/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt +++ b/theodolite-quarkus/src/test/kotlin/theodolite/strategies/restriction/LowerBoundRestrictionTest.kt @@ -1,6 +1,7 @@ package theodolite.strategies.restriction -import org.junit.jupiter.api.Assertions.* +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Assertions.assertNotNull import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test import theodolite.util.LoadDimension @@ -41,7 +42,7 @@ internal class LowerBoundRestrictionTest { val restriction = strategy.apply(load, resources) assertEquals(2, restriction.size) - assertEquals(resources.subList(1,3), restriction) + assertEquals(resources.subList(1, 3), restriction) } @Test @@ -111,6 +112,7 @@ internal class LowerBoundRestrictionTest { buildLoadDimension(load), buildResourcesDimension(resources) ), - successful) + successful + ) } -} \ No newline at end of file +} -- GitLab