/* * Copyright 2016-2017 the original author or authors. * * 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 org.example; import griffon.core.injection.Module; import griffon.core.test.GriffonUnitRule; import griffon.core.test.TestFor; import junitparams.JUnitParamsRunner; import junitparams.Parameters; import org.codehaus.griffon.runtime.core.injection.AbstractTestingModule; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import javax.annotation.Nonnull; import javax.inject.Inject; import java.util.List; import static org.awaitility.Awaitility.await; import static java.util.Arrays.asList; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.notNullValue; import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.only; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; @RunWith(JUnitParamsRunner.class) @TestFor(SampleViewModel.class) public class SampleViewModelTest { static { // force initialization JavaFX Toolkit new javafx.embed.swing.JFXPanel(); } private SampleViewModel controller; @Rule public final GriffonUnitRule griffon = new GriffonUnitRule(); @Inject private SampleService sampleService; @Test @Parameters({",Howdy stranger!", "Test, Hello Test"}) public void sayHelloAction(String input, String output) { // expect: assertThat(controller.getOutput(), nullValue()); // expectations when(sampleService.sayHello(input)).thenReturn(output); // when: controller.setInput(input); controller.sayHello(); // then: await().until(() -> controller.getOutput(), notNullValue()); assertThat(controller.getOutput(), equalTo(output)); verify(sampleService, only()).sayHello(input); } @Nonnull private List<Module> moduleOverrides() { return asList(new AbstractTestingModule() { @Override protected void doConfigure() { bind(SampleService.class) .toProvider(() -> mock(SampleService.class)) .asSingleton(); } }); } }