-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
106 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2024 Oracle and/or its affiliates. | ||
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. | ||
--> | ||
|
||
<FindBugsFilter | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="https://github.com/spotbugs/filter/3.0.0" | ||
xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd"> | ||
|
||
<Match> | ||
<Class name="io.helidon.microprofile.testing.mocking.MockBeansCdiExtension"/> | ||
<Bug pattern="RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT"/> | ||
</Match> | ||
</FindBugsFilter> |
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
73 changes: 73 additions & 0 deletions
73
...c/test/java/io/helidon/microprofile/tests/testing/testng/TestMockBeanArgumentMatcher.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,73 @@ | ||
/* | ||
* Copyright (c) 2024 Oracle and/or its affiliates. | ||
* | ||
* 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.helidon.microprofile.tests.testing.testng; | ||
|
||
import io.helidon.microprofile.testing.mocking.MockBean; | ||
import io.helidon.microprofile.testing.testng.AddBean; | ||
import io.helidon.microprofile.testing.testng.HelidonTest; | ||
|
||
import jakarta.enterprise.context.ApplicationScoped; | ||
import jakarta.inject.Inject; | ||
import jakarta.ws.rs.GET; | ||
import jakarta.ws.rs.Path; | ||
import jakarta.ws.rs.QueryParam; | ||
import jakarta.ws.rs.client.WebTarget; | ||
import org.mockito.Mockito; | ||
import org.testng.annotations.Test; | ||
|
||
import static org.hamcrest.CoreMatchers.is; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.mockito.ArgumentMatchers.anyString; | ||
|
||
@HelidonTest | ||
@AddBean(TestMockBeanArgumentMatcher.Resource.class) | ||
@AddBean(TestMockBeanArgumentMatcher.Service.class) | ||
class TestMockBeanArgumentMatcher { | ||
|
||
@MockBean | ||
private Service service; | ||
|
||
@Test | ||
void testArgumentMatcher(WebTarget target) { | ||
Mockito.when(service.test(anyString())).thenReturn("Mocked"); | ||
String response = target.path("/test") | ||
.queryParam("str", "anything") | ||
.request() | ||
.get(String.class); | ||
assertThat(response, is("Mocked")); | ||
} | ||
|
||
@Path("/test") | ||
public static class Resource { | ||
|
||
@Inject | ||
private Service service; | ||
|
||
@GET | ||
public String post(@QueryParam("str") String str) { | ||
return service.test(str); | ||
} | ||
} | ||
|
||
@ApplicationScoped | ||
static class Service { | ||
|
||
String test(String str) { | ||
return "Not Mocked: " + str; | ||
} | ||
} | ||
} |