mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 11:45:31 +01:00
Added DefaultHelpCommandTest
Changed CompositeCommand to use a StringBuilder for better efficiency.
This commit is contained in:
parent
fe26eeda2a
commit
0eae384b97
@ -377,12 +377,13 @@ public abstract class CompositeCommand extends Command implements PluginIdentifi
|
||||
public Command setUsage(String usage) {
|
||||
// Go up the chain
|
||||
CompositeCommand parentCommand = getParent();
|
||||
this.usage = getLabel() + " " + usage;
|
||||
StringBuilder u = new StringBuilder().append(getLabel()).append(" ").append(usage);
|
||||
while (parentCommand != null) {
|
||||
this.usage = parentCommand.getLabel() + " " + this.usage;
|
||||
u.insert(0, " ");
|
||||
u.insert(0, parentCommand.getLabel());
|
||||
parentCommand = parentCommand.getParent();
|
||||
}
|
||||
this.usage = this.usage.trim();
|
||||
this.usage = u.toString().trim();
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,227 @@
|
||||
package us.tastybento.bskyblock.api.commands;
|
||||
|
||||
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.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.scheduler.BukkitScheduler;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mockito;
|
||||
import org.powermock.api.mockito.PowerMockito;
|
||||
import org.powermock.core.classloader.annotations.PrepareForTest;
|
||||
import org.powermock.modules.junit4.PowerMockRunner;
|
||||
import org.powermock.reflect.Whitebox;
|
||||
|
||||
import us.tastybento.bskyblock.BSkyBlock;
|
||||
import us.tastybento.bskyblock.Settings;
|
||||
import us.tastybento.bskyblock.api.events.command.CommandEvent;
|
||||
import us.tastybento.bskyblock.api.user.User;
|
||||
import us.tastybento.bskyblock.commands.IslandCommand;
|
||||
import us.tastybento.bskyblock.managers.CommandsManager;
|
||||
import us.tastybento.bskyblock.managers.IslandsManager;
|
||||
import us.tastybento.bskyblock.managers.PlayersManager;
|
||||
|
||||
@RunWith(PowerMockRunner.class)
|
||||
@PrepareForTest({Bukkit.class, BSkyBlock.class, CommandEvent.class})
|
||||
public class DefaultHelpCommandTest {
|
||||
|
||||
private BSkyBlock plugin;
|
||||
private IslandCommand ic;
|
||||
private UUID uuid;
|
||||
private User user;
|
||||
private Settings s;
|
||||
private IslandsManager im;
|
||||
private PlayersManager pm;
|
||||
private Player player;
|
||||
|
||||
/**
|
||||
* @throws java.lang.Exception
|
||||
*/
|
||||
@Before
|
||||
public void setUp() throws Exception {
|
||||
// Set up plugin
|
||||
plugin = mock(BSkyBlock.class);
|
||||
Whitebox.setInternalState(BSkyBlock.class, "instance", plugin);
|
||||
|
||||
// Command manager
|
||||
CommandsManager cm = mock(CommandsManager.class);
|
||||
when(plugin.getCommandsManager()).thenReturn(cm);
|
||||
|
||||
// Settings
|
||||
s = mock(Settings.class);
|
||||
when(s.getResetWait()).thenReturn(0L);
|
||||
when(s.getResetLimit()).thenReturn(3);
|
||||
when(plugin.getSettings()).thenReturn(s);
|
||||
|
||||
// Player
|
||||
player = mock(Player.class);
|
||||
// Sometimes use: Mockito.withSettings().verboseLogging()
|
||||
user = mock(User.class);
|
||||
when(user.isOp()).thenReturn(false);
|
||||
uuid = UUID.randomUUID();
|
||||
when(user.getUniqueId()).thenReturn(uuid);
|
||||
when(user.getPlayer()).thenReturn(player);
|
||||
User.setPlugin(plugin);
|
||||
// Set up user already
|
||||
User.getInstance(player);
|
||||
|
||||
// Parent command has no aliases
|
||||
ic = mock(IslandCommand.class);
|
||||
when(ic.getSubCommandAliases()).thenReturn(new HashMap<>());
|
||||
|
||||
// No island for player to begin with (set it later in the tests)
|
||||
im = mock(IslandsManager.class);
|
||||
when(im.hasIsland(Mockito.eq(uuid))).thenReturn(false);
|
||||
when(im.isOwner(Mockito.eq(uuid))).thenReturn(false);
|
||||
when(plugin.getIslands()).thenReturn(im);
|
||||
|
||||
// Has team
|
||||
pm = mock(PlayersManager.class);
|
||||
when(pm.inTeam(Mockito.eq(uuid))).thenReturn(true);
|
||||
when(plugin.getPlayers()).thenReturn(pm);
|
||||
|
||||
// Server & Scheduler
|
||||
BukkitScheduler sch = mock(BukkitScheduler.class);
|
||||
PowerMockito.mockStatic(Bukkit.class);
|
||||
when(Bukkit.getScheduler()).thenReturn(sch);
|
||||
|
||||
}
|
||||
|
||||
class FakeParent extends CompositeCommand {
|
||||
|
||||
public FakeParent() {
|
||||
super("island", "is");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setup() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean execute(User user, List<String> args) {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDefaultHelpCommand() throws Exception {
|
||||
CompositeCommand cc = mock(CompositeCommand.class);
|
||||
|
||||
DefaultHelpCommand dhc = new DefaultHelpCommand(cc);
|
||||
assertNotNull(dhc);
|
||||
Mockito.verify(cc).getSubCommands();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSetup() {
|
||||
CompositeCommand cc = mock(CompositeCommand.class);
|
||||
DefaultHelpCommand dhc = new DefaultHelpCommand(cc);
|
||||
assertNotNull(dhc);
|
||||
Mockito.verify(cc).getParameters();
|
||||
Mockito.verify(cc).getDescription();
|
||||
Mockito.verify(cc).getPermission();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExecuteUserListOfString() {
|
||||
CompositeCommand parent = mock(CompositeCommand.class);
|
||||
when(parent.getLabel()).thenReturn("island");
|
||||
when(parent.getUsage()).thenReturn("island");
|
||||
when(parent.getParameters()).thenReturn("parameters");
|
||||
when(parent.getDescription()).thenReturn("description");
|
||||
when(parent.getPermission()).thenReturn("permission");
|
||||
when(user.getTranslation("island")).thenReturn("island");
|
||||
when(user.getTranslation("parameters")).thenReturn("");
|
||||
when(user.getTranslation("description")).thenReturn("the main island command");
|
||||
DefaultHelpCommand dhc = new DefaultHelpCommand(parent);
|
||||
dhc.execute(user, new ArrayList<>());
|
||||
Mockito.verify(user).sendMessage("commands.help.header");
|
||||
Mockito.verify(user).getTranslation("island");
|
||||
Mockito.verify(user).getTranslation("parameters");
|
||||
Mockito.verify(user).getTranslation("description");
|
||||
Mockito.verify(user).sendMessage(
|
||||
"commands.help.syntax",
|
||||
"[usage]",
|
||||
"island",
|
||||
"[parameters]",
|
||||
"",
|
||||
"[description]",
|
||||
"the main island command"
|
||||
);
|
||||
Mockito.verify(user).sendMessage("commands.help.end");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExecuteSecondLevelHelp() {
|
||||
CompositeCommand parent = mock(CompositeCommand.class);
|
||||
when(parent.getLabel()).thenReturn("island");
|
||||
when(parent.getUsage()).thenReturn("island");
|
||||
when(parent.getParameters()).thenReturn("parameters");
|
||||
when(parent.getDescription()).thenReturn("description");
|
||||
when(parent.getPermission()).thenReturn("permission");
|
||||
when(user.getTranslation("island")).thenReturn("island");
|
||||
when(user.getTranslation("parameters")).thenReturn("");
|
||||
when(user.getTranslation("description")).thenReturn("the main island command");
|
||||
DefaultHelpCommand dhc = new DefaultHelpCommand(parent);
|
||||
List<String> args = new ArrayList<>();
|
||||
args.add("1");
|
||||
dhc.execute(user, args);
|
||||
// There are no header or footer shown
|
||||
Mockito.verify(user).getTranslation("island");
|
||||
Mockito.verify(user).getTranslation("parameters");
|
||||
Mockito.verify(user).getTranslation("description");
|
||||
Mockito.verify(user).sendMessage(
|
||||
"commands.help.syntax",
|
||||
"[usage]",
|
||||
"island",
|
||||
"[parameters]",
|
||||
"",
|
||||
"[description]",
|
||||
"the main island command"
|
||||
);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExecuteDirectHelpHelp() {
|
||||
CompositeCommand parent = mock(CompositeCommand.class);
|
||||
when(parent.getLabel()).thenReturn("island");
|
||||
when(parent.getUsage()).thenReturn("island");
|
||||
when(parent.getParameters()).thenReturn("parameters");
|
||||
when(parent.getDescription()).thenReturn("description");
|
||||
when(parent.getPermission()).thenReturn("permission");
|
||||
when(user.getTranslation("island")).thenReturn("island");
|
||||
when(user.getTranslation("parameters")).thenReturn("");
|
||||
when(user.getTranslation("description")).thenReturn("the main island command");
|
||||
when(user.getTranslation("commands.help.parameters")).thenReturn("help-parameters");
|
||||
when(user.getTranslation("commands.help.description")).thenReturn("the help command");
|
||||
DefaultHelpCommand dhc = new DefaultHelpCommand(parent);
|
||||
List<String> args = new ArrayList<>();
|
||||
// Test /island help team
|
||||
args.add("team");
|
||||
dhc.execute(user, args);
|
||||
// There are no header or footer shown
|
||||
Mockito.verify(user).getTranslation("island");
|
||||
Mockito.verify(user).getTranslation("commands.help.parameters");
|
||||
Mockito.verify(user).getTranslation("commands.help.description");
|
||||
Mockito.verify(user).sendMessage(
|
||||
"commands.help.syntax",
|
||||
"[usage]",
|
||||
"island",
|
||||
"[parameters]",
|
||||
"help-parameters",
|
||||
"[description]",
|
||||
"the help command"
|
||||
);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user