diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt index 0226911c9007fd9e2e1c685df73ed6dc455cd3a7..1cfc037f654ed0e9f6a6ca6106ef1522a9df8782 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt @@ -191,9 +191,9 @@ class TheodoliteController( private fun checkResource(benchmark: KubernetesBenchmark): States { return try { val appResources = - benchmark.loadKubernetesResources(resources = benchmark.appResource) + benchmark.loadKubernetesResources(resourceSet = benchmark.appResourceSets) val loadGenResources = - benchmark.loadKubernetesResources(resources = benchmark.loadGenResource) + benchmark.loadKubernetesResources(resourceSet = benchmark.loadGenResourceSets) if(appResources.isNotEmpty() && loadGenResources.isNotEmpty()) { States.AVAILABLE } else { diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt index b0b72fe4b9cf43434c0f90fa0a2dbd226fddfa66..62a5327d93782c77fdc2194ba1cd64c64d19ebd5 100644 --- a/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt +++ b/theodolite/src/test/kotlin/theodolite/execution/operator/ControllerTest.kt @@ -15,6 +15,8 @@ import theodolite.benchmark.BenchmarkExecution import theodolite.benchmark.KubernetesBenchmark import theodolite.model.crd.BenchmarkCRD import theodolite.model.crd.ExecutionCRD +import theodolite.model.crd.ExecutionStatus +import theodolite.model.crd.States @QuarkusTest class ControllerTest { @@ -40,6 +42,7 @@ class ControllerTest { // benchmark val benchmark1 = BenchmarkCRDummy(name = "Test-Benchmark") + benchmark1.getCR().status.resourceSets = States.AVAILABLE.value val benchmark2 = BenchmarkCRDummy(name = "Test-Benchmark-123") benchmarkResourceList.items = listOf(benchmark1.getCR(), benchmark2.getCR()) @@ -113,12 +116,12 @@ class ControllerTest { .getDeclaredMethod("getBenchmarks") method.isAccessible = true - val result = method.invoke(controller) as List<KubernetesBenchmark> + val result = method.invoke(controller) as List<BenchmarkCRD> assertEquals(2, result.size) assertEquals( gson.toJson(benchmark), - gson.toJson(result.firstOrNull()) + gson.toJson(result.firstOrNull()?.spec) ) }