io.helidon.docs.mp.testing.HelidonMockingSnippets Maven / Gradle / Ivy
The newest version!
/*
* 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.docs.mp.testing;
import io.helidon.microprofile.testing.junit5.AddBean;
import io.helidon.microprofile.testing.junit5.HelidonTest;
import io.helidon.microprofile.testing.mocking.MockBean;
import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.client.WebTarget;
import org.junit.jupiter.api.Test;
import org.mockito.Answers;
import org.mockito.Mockito;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
@SuppressWarnings("ALL")
class HelidonMockingSnippets {
// tag::snippet_1[]
@HelidonTest
@AddBean(MockBeanAnswerTest.Resource.class)
@AddBean(MockBeanAnswerTest.Service.class)
class MockBeanAnswerTest {
@MockBean(answer = Answers.CALLS_REAL_METHODS) // <1>
private Service service;
@Inject
private WebTarget target;
@Test
void injectionTest() {
String response = target.path("/test").request().get(String.class);
assertThat(response, is("Not Mocked")); // <2>
Mockito.when(service.test()).thenReturn("Mocked");
response = target.path("/test").request().get(String.class);
assertThat(response, is("Mocked")); // <3>
}
@Path("/test")
public static class Resource {
@Inject
private Service service;
@GET
public String test() {
return service.test();
}
}
static class Service {
String test() {
return "Not Mocked";
}
}
}
// end::snippet_1[]
}