mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 18:59:15 +00:00
99 lines
3.1 KiB
Java
99 lines
3.1 KiB
Java
/**
|
|
* The MIT License
|
|
* Copyright (c) 2014-2016 Ilkka Seppälä
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
package com.iluwatar.observer.generic;
|
|
|
|
import com.iluwatar.observer.WeatherObserver;
|
|
import com.iluwatar.observer.WeatherType;
|
|
import com.iluwatar.observer.utils.InMemoryAppender;
|
|
import org.junit.jupiter.api.AfterEach;
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.mockito.InOrder;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
import static org.mockito.Mockito.*;
|
|
|
|
/**
|
|
* Date: 12/27/15 - 11:08 AM
|
|
*
|
|
* @author Jeroen Meulemeester
|
|
*/
|
|
public class GWeatherTest {
|
|
|
|
private InMemoryAppender appender;
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
appender = new InMemoryAppender(GWeather.class);
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
appender.stop();
|
|
}
|
|
|
|
/**
|
|
* Add a {@link WeatherObserver}, verify if it gets notified of a weather change, remove the
|
|
* observer again and verify that there are no more notifications.
|
|
*/
|
|
@Test
|
|
public void testAddRemoveObserver() {
|
|
final Race observer = mock(Race.class);
|
|
|
|
final GWeather weather = new GWeather();
|
|
weather.addObserver(observer);
|
|
verifyZeroInteractions(observer);
|
|
|
|
weather.timePasses();
|
|
assertEquals("The weather changed to rainy.", appender.getLastMessage());
|
|
verify(observer).update(weather, WeatherType.RAINY);
|
|
|
|
weather.removeObserver(observer);
|
|
weather.timePasses();
|
|
assertEquals("The weather changed to windy.", appender.getLastMessage());
|
|
|
|
verifyNoMoreInteractions(observer);
|
|
assertEquals(2, appender.getLogSize());
|
|
}
|
|
|
|
/**
|
|
* Verify if the weather passes in the order of the {@link WeatherType}s
|
|
*/
|
|
@Test
|
|
public void testTimePasses() {
|
|
final Race observer = mock(Race.class);
|
|
final GWeather weather = new GWeather();
|
|
weather.addObserver(observer);
|
|
|
|
final InOrder inOrder = inOrder(observer);
|
|
final WeatherType[] weatherTypes = WeatherType.values();
|
|
for (int i = 1; i < 20; i++) {
|
|
weather.timePasses();
|
|
inOrder.verify(observer).update(weather, weatherTypes[i % weatherTypes.length]);
|
|
}
|
|
|
|
verifyNoMoreInteractions(observer);
|
|
}
|
|
|
|
}
|