Skip to content

Commit

Permalink
- Add spotbugs exclude
Browse files Browse the repository at this point in the history
- Add TestNG test
  • Loading branch information
romain-grecourt committed Oct 16, 2024
1 parent 490ddbe commit a5a4a45
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 0 deletions.
29 changes: 29 additions & 0 deletions microprofile/testing/mocking/etc/spotbugs/exclude.xml
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>
4 changes: 4 additions & 0 deletions microprofile/testing/mocking/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
Integration with Mocking to support tests with CDI injection
</description>

<properties>
<spotbugs.exclude>etc/spotbugs/exclude.xml</spotbugs.exclude>
</properties>

<dependencies>
<dependency>
<groupId>jakarta.enterprise</groupId>
Expand Down
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;
}
}
}

0 comments on commit a5a4a45

Please sign in to comment.