Skip to content

Commit

Permalink
4.x: MockBean fails with ArgumentMatcher helidon-io#9397
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Bescos Gascon <[email protected]>
  • Loading branch information
jbescos committed Oct 16, 2024
1 parent 8f9f04b commit fc8bca7
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,27 @@ private void processMockBeanParameters(List<? extends AnnotatedParameter<?>> par
});
}

void registerOtherBeans(@Observes AfterBeanDiscovery event, BeanManager beanManager) {
void registerMocks(@Observes AfterBeanDiscovery event, BeanManager beanManager) {
// Register all mocks
mocks.entrySet().forEach(entry -> {
Object eagerMock = Mockito.mock(entry.getKey(),
Mockito.withSettings().defaultAnswer(entry.getValue().answer()));
event.addBean()
.addType(entry.getKey())
.scope(ApplicationScoped.class)
.alternative(true)
.createWith(inst -> {
Object mock;
Set<Bean<?>> beans = beanManager.getBeans(MockSettings.class);
if (!beans.isEmpty()) {
Bean<?> bean = beans.iterator().next();
MockSettings mockSettings = (MockSettings) beanManager.getReference(bean, MockSettings.class,
beanManager.createCreationalContext(null));
return Mockito.mock(entry.getKey(), mockSettings);
mock = Mockito.mock(entry.getKey(), mockSettings);
} else {
return Mockito.mock(entry.getKey(), Mockito.withSettings().defaultAnswer(entry.getValue().answer()));
mock = eagerMock;
}
return mock;
})
.priority(0);
});
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* 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.junit5;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.mockito.ArgumentMatchers.anyString;

import io.helidon.microprofile.testing.junit5.AddBean;
import io.helidon.microprofile.testing.junit5.HelidonTest;
import io.helidon.microprofile.testing.mocking.MockBean;

import org.junit.jupiter.api.Test;
import org.mockito.Mockito;

@HelidonTest
@AddBean(TestIssue9397.Service.class)
class TestIssue9397 {

@MockBean
private Service service;

@Test
void testArgumentMatcher() {
Mockito.when(service.test(anyString())).thenReturn("Mocked");
assertThat(service.test("something"), is("Mocked"));
}

static class Service {

String test(String test) {
return test;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* 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 static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.mockito.ArgumentMatchers.anyString;

import jakarta.inject.Inject;

import io.helidon.microprofile.testing.mocking.MockBean;
import io.helidon.microprofile.testing.testng.HelidonTest;

import org.mockito.Mockito;
import org.testng.annotations.Test;

@HelidonTest
class TestIssue9397 {

@MockBean
@Inject
private Service service;

@Test
void testArgumentMatcher() {
Mockito.when(service.test(anyString())).thenReturn("Mocked");
assertThat(service.test("something"), is("Mocked"));
}

static class Service {

String test(String test) {
return test;
}
}
}

0 comments on commit fc8bca7

Please sign in to comment.