From e56d6715af206c198f4d2bd7ef594ede3ad26985 Mon Sep 17 00:00:00 2001 From: tastybento Date: Tue, 19 Feb 2019 23:03:17 -0800 Subject: [PATCH] Fixed default help command test class --- .../api/commands/DefaultHelpCommandTest.java | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/src/test/java/world/bentobox/bentobox/api/commands/DefaultHelpCommandTest.java b/src/test/java/world/bentobox/bentobox/api/commands/DefaultHelpCommandTest.java index 7f80433fd..855cbf536 100644 --- a/src/test/java/world/bentobox/bentobox/api/commands/DefaultHelpCommandTest.java +++ b/src/test/java/world/bentobox/bentobox/api/commands/DefaultHelpCommandTest.java @@ -4,7 +4,7 @@ import static org.junit.Assert.assertNotNull; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; -import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.UUID; @@ -14,7 +14,6 @@ import org.bukkit.World; import org.bukkit.entity.Player; import org.bukkit.scheduler.BukkitScheduler; import org.junit.Before; -import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; @@ -113,6 +112,9 @@ public class DefaultHelpCommandTest { } + /** + * Test for {@link DefaultHelpCommand} + */ @Test public void testSetup() { CompositeCommand cc = mock(CompositeCommand.class); @@ -124,6 +126,9 @@ public class DefaultHelpCommandTest { Mockito.verify(cc).getPermission(); } + /** + * Test for {@link DefaultHelpCommand#execute(User, String, List)} + */ @Test public void testExecuteUserListOfString() { CompositeCommand parent = mock(CompositeCommand.class); @@ -136,7 +141,7 @@ public class DefaultHelpCommandTest { when(user.getTranslationOrNothing("parameters")).thenReturn(""); when(user.getTranslation("description")).thenReturn("the main island command"); DefaultHelpCommand dhc = new DefaultHelpCommand(parent); - dhc.execute(user, dhc.getLabel(), new ArrayList<>()); + dhc.execute(user, dhc.getLabel(), Collections.emptyList()); Mockito.verify(user).sendMessage("commands.help.header", "[label]", "BSkyBlock"); Mockito.verify(user).getTranslationOrNothing("parameters"); Mockito.verify(user).getTranslation("description"); @@ -150,6 +155,9 @@ public class DefaultHelpCommandTest { Mockito.verify(user).sendMessage("commands.help.end"); } + /** + * Test for {@link DefaultHelpCommand#execute(User, String, List)} + */ @Test public void testExecuteSecondLevelHelp() { CompositeCommand parent = mock(CompositeCommand.class); @@ -161,9 +169,7 @@ public class DefaultHelpCommandTest { when(user.getTranslationOrNothing("parameters")).thenReturn(""); when(user.getTranslation("description")).thenReturn("the main island command"); DefaultHelpCommand dhc = new DefaultHelpCommand(parent); - List args = new ArrayList<>(); - args.add("1"); - dhc.execute(user, dhc.getLabel(), args); + dhc.execute(user, dhc.getLabel(), Collections.singletonList("1")); // There are no header or footer shown Mockito.verify(user).getTranslationOrNothing("parameters"); Mockito.verify(user).getTranslation("description"); @@ -176,11 +182,14 @@ public class DefaultHelpCommandTest { ); } - @Ignore("Failing due to 'wanted but not invoked' errors") + /** + * Test for {@link DefaultHelpCommand#execute(User, String, List)} + */ @Test public void testExecuteDirectHelpHelp() { CompositeCommand parent = mock(CompositeCommand.class); when(parent.getLabel()).thenReturn("island"); + when(parent.getUsage()).thenReturn("island"); when(user.getTranslation("island")).thenReturn("island"); when(user.getTranslationOrNothing("island")).thenReturn("island"); when(user.getTranslation("commands.help.parameters")).thenReturn("help-parameters"); @@ -188,13 +197,11 @@ public class DefaultHelpCommandTest { when(user.getTranslation("commands.help.description")).thenReturn("the help command"); when(user.getTranslationOrNothing("commands.help.description")).thenReturn("the help command"); DefaultHelpCommand dhc = new DefaultHelpCommand(parent); - List args = new ArrayList<>(); // Test /island help team - args.add("team"); - dhc.execute(user, dhc.getLabel(), args); + dhc.execute(user, dhc.getLabel(), Collections.singletonList("team")); // There are no header or footer shown - Mockito.verify(user).getTranslationOrNothing("commands.help.parameters"); - Mockito.verify(user).getTranslationOrNothing("commands.help.description"); + Mockito.verify(user).getTranslation("commands.help.parameters"); + Mockito.verify(user).getTranslation("commands.help.description"); Mockito.verify(user).sendMessage( "commands.help.syntax", "[usage]",