-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix (extensions) : isSupported doesn't check all of the applicable AP…
…I Groups (#4447) + Disable exact apiGroup match in isSupported method call in extension clients which use more than one apiGroup. This effects Istio, Knative and Tekton extensions that use more than one apiGroups Signed-off-by: Rohan Kumar <[email protected]>
- Loading branch information
1 parent
ad33027
commit 09edb3d
Showing
40 changed files
with
949 additions
and
17 deletions.
There are no files selected for viewing
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
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
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
82 changes: 82 additions & 0 deletions
82
extensions/camel-k/client/src/test/java/io/fabric8/camelk/client/CamelKClientAdaptTest.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,82 @@ | ||
/** | ||
* Copyright (C) 2015 Red Hat, 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 io.fabric8.camelk.client; | ||
|
||
import io.fabric8.kubernetes.api.model.APIGroup; | ||
import io.fabric8.kubernetes.api.model.APIGroupBuilder; | ||
import io.fabric8.kubernetes.api.model.APIGroupList; | ||
import io.fabric8.kubernetes.api.model.APIGroupListBuilder; | ||
import io.fabric8.kubernetes.client.Config; | ||
import io.fabric8.kubernetes.client.ConfigBuilder; | ||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
import io.fabric8.kubernetes.client.dsl.internal.OperationSupport; | ||
import io.fabric8.kubernetes.client.http.HttpClient; | ||
import io.fabric8.kubernetes.client.impl.KubernetesClientImpl; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.Arguments; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
import org.mockito.MockedConstruction; | ||
import org.mockito.Mockito; | ||
|
||
import java.util.stream.Stream; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.mockConstruction; | ||
import static org.mockito.Mockito.when; | ||
|
||
class CamelKClientAdaptTest { | ||
private KubernetesClient kubernetesClient; | ||
|
||
@BeforeEach | ||
public void setUp() { | ||
HttpClient mockClient = mock(HttpClient.class, Mockito.RETURNS_DEEP_STUBS); | ||
Config config = new ConfigBuilder().withMasterUrl("https://localhost:8443/").build(); | ||
kubernetesClient = new KubernetesClientImpl(mockClient, config); | ||
} | ||
|
||
@AfterEach | ||
void tearDown() { | ||
kubernetesClient.close(); | ||
kubernetesClient = null; | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("getInputData") | ||
void isSupported_withGivenApiGroup_shouldValidateSupport(String apiGroupName, boolean expectedResult) { | ||
try (MockedConstruction<OperationSupport> ignored = mockConstruction(OperationSupport.class, (mock, ctx) -> { | ||
givenApiGroupsCallReturns(mock, new APIGroupBuilder().withName(apiGroupName).build()); | ||
})) { | ||
assertThat(kubernetesClient.isAdaptable(CamelKClient.class)).isEqualTo(expectedResult); | ||
} | ||
} | ||
|
||
private static Stream<Arguments> getInputData() { | ||
return Stream.of( | ||
Arguments.of("camel.apache.org", true), | ||
Arguments.of("test.camel.apache.org", true), | ||
Arguments.of("tekton.dev", false)); | ||
} | ||
|
||
private void givenApiGroupsCallReturns(OperationSupport operationSupport, APIGroup apiGroup) { | ||
when(operationSupport.restCall(APIGroupList.class, "/apis")) | ||
.thenReturn(new APIGroupListBuilder() | ||
.addToGroups(apiGroup) | ||
.build()); | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
...nsions/camel-k/client/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
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 @@ | ||
mock-maker-inline |
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
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
1 change: 1 addition & 0 deletions
1
...ions/chaosmesh/client/src/main/resources/mockito-extensions/org.mockito.plugins.MockMaker
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 @@ | ||
mock-maker-inline |
81 changes: 81 additions & 0 deletions
81
.../chaosmesh/client/src/test/java/io/fabric8/chaosmesh/client/ChaosMeshClientAdaptTest.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,81 @@ | ||
/** | ||
* Copyright (C) 2015 Red Hat, 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 io.fabric8.chaosmesh.client; | ||
|
||
import io.fabric8.kubernetes.api.model.APIGroup; | ||
import io.fabric8.kubernetes.api.model.APIGroupBuilder; | ||
import io.fabric8.kubernetes.api.model.APIGroupList; | ||
import io.fabric8.kubernetes.api.model.APIGroupListBuilder; | ||
import io.fabric8.kubernetes.client.Config; | ||
import io.fabric8.kubernetes.client.ConfigBuilder; | ||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
import io.fabric8.kubernetes.client.dsl.internal.OperationSupport; | ||
import io.fabric8.kubernetes.client.http.HttpClient; | ||
import io.fabric8.kubernetes.client.impl.KubernetesClientImpl; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.Arguments; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
import org.mockito.MockedConstruction; | ||
import org.mockito.Mockito; | ||
|
||
import java.util.stream.Stream; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.mockConstruction; | ||
import static org.mockito.Mockito.when; | ||
|
||
class ChaosMeshClientAdaptTest { | ||
private KubernetesClient kubernetesClient; | ||
|
||
@BeforeEach | ||
public void setUp() { | ||
HttpClient mockClient = Mockito.mock(HttpClient.class, Mockito.RETURNS_DEEP_STUBS); | ||
Config config = new ConfigBuilder().withMasterUrl("https://localhost:8443/").build(); | ||
kubernetesClient = new KubernetesClientImpl(mockClient, config); | ||
} | ||
|
||
@AfterEach | ||
void tearDown() { | ||
kubernetesClient.close(); | ||
kubernetesClient = null; | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("getInputData") | ||
void isSupported_withGivenApiGroup_shouldValidateSupport(String apiGroupName, boolean expectedResult) { | ||
try (MockedConstruction<OperationSupport> ignored = mockConstruction(OperationSupport.class, (mock, ctx) -> { | ||
givenApiGroupsCallReturns(mock, new APIGroupBuilder().withName(apiGroupName).build()); | ||
})) { | ||
assertThat(kubernetesClient.isAdaptable(ChaosMeshClient.class)).isEqualTo(expectedResult); | ||
} | ||
} | ||
|
||
private static Stream<Arguments> getInputData() { | ||
return Stream.of( | ||
Arguments.of("chaos-mesh.org", true), | ||
Arguments.of("test.chaos-mesh.org", true), | ||
Arguments.of("tekton.dev", false)); | ||
} | ||
|
||
private void givenApiGroupsCallReturns(OperationSupport operationSupport, APIGroup apiGroup) { | ||
when(operationSupport.restCall(APIGroupList.class, "/apis")) | ||
.thenReturn(new APIGroupListBuilder() | ||
.addToGroups(apiGroup) | ||
.build()); | ||
} | ||
} |
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
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
81 changes: 81 additions & 0 deletions
81
extensions/istio/client/src/test/java/io/fabric8/istio/client/IstioClientAdaptTest.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,81 @@ | ||
/** | ||
* Copyright (C) 2015 Red Hat, 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 io.fabric8.istio.client; | ||
|
||
import io.fabric8.kubernetes.api.model.APIGroup; | ||
import io.fabric8.kubernetes.api.model.APIGroupBuilder; | ||
import io.fabric8.kubernetes.api.model.APIGroupList; | ||
import io.fabric8.kubernetes.api.model.APIGroupListBuilder; | ||
import io.fabric8.kubernetes.client.Config; | ||
import io.fabric8.kubernetes.client.ConfigBuilder; | ||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
import io.fabric8.kubernetes.client.dsl.internal.OperationSupport; | ||
import io.fabric8.kubernetes.client.http.HttpClient; | ||
import io.fabric8.kubernetes.client.impl.KubernetesClientImpl; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.Arguments; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
import org.mockito.MockedConstruction; | ||
import org.mockito.Mockito; | ||
|
||
import java.util.stream.Stream; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.mockConstruction; | ||
import static org.mockito.Mockito.when; | ||
|
||
class IstioClientAdaptTest { | ||
private KubernetesClient kubernetesClient; | ||
|
||
@BeforeEach | ||
public void setUp() { | ||
HttpClient mockClient = Mockito.mock(HttpClient.class, Mockito.RETURNS_DEEP_STUBS); | ||
Config config = new ConfigBuilder().withMasterUrl("https://localhost:8443/").build(); | ||
kubernetesClient = new KubernetesClientImpl(mockClient, config); | ||
} | ||
|
||
@AfterEach | ||
void tearDown() { | ||
kubernetesClient.close(); | ||
kubernetesClient = null; | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("getInputData") | ||
void isSupported_withGivenApiGroup_shouldValidateSupport(String apiGroupName, boolean expectedResult) { | ||
try (MockedConstruction<OperationSupport> ignored = mockConstruction(OperationSupport.class, (mock, ctx) -> { | ||
givenApiGroupsCallReturns(mock, new APIGroupBuilder().withName(apiGroupName).build()); | ||
})) { | ||
assertThat(kubernetesClient.isAdaptable(IstioClient.class)).isEqualTo(expectedResult); | ||
} | ||
} | ||
|
||
private static Stream<Arguments> getInputData() { | ||
return Stream.of( | ||
Arguments.of("istio.io", true), | ||
Arguments.of("security.istio.io", true), | ||
Arguments.of("tekton.dev", false)); | ||
} | ||
|
||
private void givenApiGroupsCallReturns(OperationSupport operationSupport, APIGroup apiGroup) { | ||
when(operationSupport.restCall(APIGroupList.class, "/apis")) | ||
.thenReturn(new APIGroupListBuilder() | ||
.addToGroups(apiGroup) | ||
.build()); | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
extensions/istio/client/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
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 @@ | ||
mock-maker-inline |
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
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
Oops, something went wrong.