* Use lombok, reformat, and optimize the code * Fix merge conflicts and some sonar issues Co-authored-by: va1m <va1m@email.com>
79 lines
2.6 KiB
Java
79 lines
2.6 KiB
Java
/*
|
|
* The MIT License
|
|
* Copyright © 2014-2021 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.adapter;
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
|
|
/**
|
|
* Test class
|
|
*/
|
|
class AdapterPatternTest {
|
|
|
|
private Map<String, Object> beans;
|
|
|
|
private static final String FISHING_BEAN = "fisher";
|
|
|
|
private static final String ROWING_BEAN = "captain";
|
|
|
|
/**
|
|
* This method runs before the test execution and sets the bean objects in the beans Map.
|
|
*/
|
|
@BeforeEach
|
|
public void setup() {
|
|
beans = new HashMap<>();
|
|
|
|
var fishingBoatAdapter = spy(new FishingBoatAdapter());
|
|
beans.put(FISHING_BEAN, fishingBoatAdapter);
|
|
|
|
var captain = new Captain();
|
|
captain.setRowingBoat((FishingBoatAdapter) beans.get(FISHING_BEAN));
|
|
beans.put(ROWING_BEAN, captain);
|
|
}
|
|
|
|
/**
|
|
* This test asserts that when we use the row() method on a captain bean(client), it is internally
|
|
* calling sail method on the fishing boat object. The Adapter ({@link FishingBoatAdapter} )
|
|
* converts the interface of the target class ( {@link FishingBoat}) into a suitable one expected
|
|
* by the client ({@link Captain} ).
|
|
*/
|
|
@Test
|
|
void testAdapter() {
|
|
var captain = (Captain) beans.get(ROWING_BEAN);
|
|
|
|
// when captain moves
|
|
captain.row();
|
|
|
|
// the captain internally calls the battleship object to move
|
|
var adapter = (RowingBoat) beans.get(FISHING_BEAN);
|
|
verify(adapter).row();
|
|
}
|
|
}
|