-
Notifications
You must be signed in to change notification settings - Fork 806
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(clouddriver): Test to verify conversion exception in ClusterSize…
…PreconditionTask The expectation is that the oortService APIs must throw only Spinnaker*Exceptions as it is already using SpinnakerRetrofitErrorHandler. This test is to ensure that any future modifications on this fix must not result in unexpected behaviour.
- Loading branch information
Pranav-b-7
committed
Apr 18, 2024
1 parent
3148a3f
commit 4999b14
Showing
1 changed file
with
124 additions
and
0 deletions.
There are no files selected for viewing
124 changes: 124 additions & 0 deletions
124
...com/netflix/spinnaker/orca/clouddriver/tasks/cluster/ClusterSizePreconditionTaskTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
/* | ||
* Copyright 2024 OpsMx, Inc. | ||
* | ||
* Licensed 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 com.netflix.spinnaker.orca.clouddriver.tasks.cluster; | ||
|
||
import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; | ||
import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo; | ||
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig; | ||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
|
||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import com.github.tomakehurst.wiremock.client.WireMock; | ||
import com.github.tomakehurst.wiremock.http.HttpHeaders; | ||
import com.github.tomakehurst.wiremock.junit5.WireMockExtension; | ||
import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo; | ||
import com.netflix.spinnaker.kork.retrofit.exceptions.SpinnakerConversionException; | ||
import com.netflix.spinnaker.kork.retrofit.exceptions.SpinnakerRetrofitErrorHandler; | ||
import com.netflix.spinnaker.okhttp.SpinnakerRequestInterceptor; | ||
import com.netflix.spinnaker.orca.clouddriver.OortService; | ||
import com.netflix.spinnaker.orca.pipeline.model.PipelineExecutionImpl; | ||
import com.netflix.spinnaker.orca.pipeline.model.StageExecutionImpl; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.springframework.http.HttpStatus; | ||
import retrofit.RestAdapter; | ||
import retrofit.client.OkClient; | ||
import retrofit.converter.JacksonConverter; | ||
|
||
public class ClusterSizePreconditionTaskTest { | ||
|
||
private static ObjectMapper objectMapper = new ObjectMapper(); | ||
|
||
private static OortService oortService; | ||
|
||
private ClusterSizePreconditionTask clusterSizePreconditionTask; | ||
|
||
@RegisterExtension | ||
private static WireMockExtension wireMock = | ||
WireMockExtension.newInstance().options(wireMockConfig().dynamicPort()).build(); | ||
|
||
@BeforeAll | ||
public static void setupOnce(WireMockRuntimeInfo wmRuntimeInfo) { | ||
|
||
OkClient okClient = new OkClient(); | ||
RestAdapter.LogLevel retrofitLogLevel = RestAdapter.LogLevel.NONE; | ||
|
||
oortService = | ||
new RestAdapter.Builder() | ||
.setRequestInterceptor(new SpinnakerRequestInterceptor(true)) | ||
.setEndpoint(wmRuntimeInfo.getHttpBaseUrl()) | ||
.setClient(okClient) | ||
.setLogLevel(retrofitLogLevel) | ||
.setErrorHandler(SpinnakerRetrofitErrorHandler.getInstance()) | ||
.setConverter(new JacksonConverter(objectMapper)) | ||
.build() | ||
.create(OortService.class); | ||
} | ||
|
||
@BeforeEach | ||
public void setup() { | ||
clusterSizePreconditionTask = new ClusterSizePreconditionTask(); | ||
clusterSizePreconditionTask.setOortService(oortService); | ||
clusterSizePreconditionTask.setObjectMapper(objectMapper); | ||
} | ||
|
||
private static void simulateFault(String url, String body, HttpStatus httpStatus) { | ||
wireMock.givenThat( | ||
WireMock.get(urlPathEqualTo(url)) | ||
.willReturn( | ||
aResponse() | ||
.withHeaders(HttpHeaders.noHeaders()) | ||
.withStatus(httpStatus.value()) | ||
.withBody(body))); | ||
} | ||
|
||
@Test | ||
public void verifyConversionException() { | ||
|
||
var application = "testapp"; | ||
|
||
var stage = | ||
new StageExecutionImpl( | ||
PipelineExecutionImpl.newPipeline(application), | ||
"checkCluster", | ||
new HashMap<>( | ||
Map.of( | ||
"context", | ||
Map.of( | ||
"credentials", | ||
"test", | ||
"cluster", | ||
"foo", | ||
"regions", | ||
List.of( | ||
"eu-west-1", "eu-west-1", "us-west-1", "us-east-1", "us-west-2"))))); | ||
|
||
// simulate conversion exception by passing invalid json body | ||
simulateFault("/applications/foo/clusters/test/foo/aws", "{non-json-response}", HttpStatus.OK); | ||
|
||
assertThatThrownBy(() -> clusterSizePreconditionTask.execute(stage)) | ||
.isExactlyInstanceOf(SpinnakerConversionException.class) | ||
.hasMessage( | ||
"com.fasterxml.jackson.core.JsonParseException: Unexpected character ('n' (code 110)): was expecting double-quote to start field name\n" | ||
+ " at [Source: (ByteArrayInputStream); line: 1, column: 3]"); | ||
} | ||
} |