Replaced the TextComponentTest test

This commit is contained in:
BuildTools
2019-03-12 15:23:05 +00:00
parent 951891f4ca
commit 1f45546dc9

View File

@@ -1,87 +1,68 @@
/* /*
* Copyright (c) 2018, Adam <Adam@sigterm.info> * Copyright (c) 2018, Adam <Adam@sigterm.info>
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met: * modification, are permitted provided that the following conditions are met:
* *
* 1. Redistributions of source code must retain the above copyright notice, this * 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer. * list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, * 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation * this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution. * and/or other materials provided with the distribution.
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
package net.runelite.client.ui.overlay.components; package net.runelite.client.ui.overlay.components;
import java.awt.Color; import java.awt.Color;
import java.awt.FontMetrics; import java.awt.Graphics2D;
import java.awt.Graphics2D; import java.awt.image.BufferedImage;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith;
import static org.mockito.Matchers.anyInt; public class TextComponentTest
import static org.mockito.Matchers.eq; {
import org.mockito.Mock; private Graphics2D graphics;
import static org.mockito.Mockito.atLeastOnce;
import static org.mockito.Mockito.mock; @Before
import static org.mockito.Mockito.times; public void before()
import static org.mockito.Mockito.verify; {
import static org.mockito.Mockito.when; BufferedImage dest = new BufferedImage(1, 1, BufferedImage.TYPE_INT_RGB);
import org.mockito.runners.MockitoJUnitRunner; graphics = (Graphics2D) dest.getGraphics();
}
@RunWith(MockitoJUnitRunner.class)
public class TextComponentTest @Test
{ public void testRender()
@Mock {
private Graphics2D graphics; TextComponent textComponent = new TextComponent();
textComponent.setText("test");
@Before textComponent.setColor(Color.RED);
public void before() textComponent.render(graphics);
{ }
when(graphics.getFontMetrics()).thenReturn(mock(FontMetrics.class));
} @Test
public void testRender2()
@Test {
public void testRender() TextComponent textComponent = new TextComponent();
{ textComponent.setText("<col=0000ff>test");
TextComponent textComponent = new TextComponent(); textComponent.render(graphics);
textComponent.setText("test"); }
textComponent.setColor(Color.RED);
textComponent.render(graphics); @Test
verify(graphics, times(2)).drawString(eq("test"), anyInt(), anyInt()); public void testRender3()
verify(graphics, atLeastOnce()).setColor(Color.RED); {
} TextComponent textComponent = new TextComponent();
textComponent.setText("<col=0000ff>test<col=00ff00> test");
@Test textComponent.render(graphics);
public void testRender2() }
{ }
TextComponent textComponent = new TextComponent();
textComponent.setText("<col=0000ff>test");
textComponent.render(graphics);
verify(graphics, times(2)).drawString(eq("test"), anyInt(), anyInt());
verify(graphics, atLeastOnce()).setColor(Color.BLUE);
}
@Test
public void testRender3()
{
TextComponent textComponent = new TextComponent();
textComponent.setText("<col=0000ff>test<col=00ff00> test");
textComponent.render(graphics);
verify(graphics, atLeastOnce()).drawString(eq("test"), anyInt(), anyInt());
verify(graphics, atLeastOnce()).drawString(eq(" test"), anyInt(), anyInt());
verify(graphics, atLeastOnce()).setColor(Color.BLUE);
verify(graphics, atLeastOnce()).setColor(Color.GREEN);
}
}