mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-12-26 11:07:39 +01:00
Lowercased some command class names to better fit how they are actually working in game
This commit is contained in:
parent
14a3ed6792
commit
14a794a5b1
@ -9,9 +9,9 @@ import world.bentobox.bentobox.api.commands.CompositeCommand;
|
|||||||
import world.bentobox.bentobox.api.commands.ConfirmableCommand;
|
import world.bentobox.bentobox.api.commands.ConfirmableCommand;
|
||||||
import world.bentobox.bentobox.api.user.User;
|
import world.bentobox.bentobox.api.user.User;
|
||||||
|
|
||||||
public class AdminClearResetsAllCommand extends ConfirmableCommand {
|
public class AdminClearresetsallCommand extends ConfirmableCommand {
|
||||||
|
|
||||||
public AdminClearResetsAllCommand(CompositeCommand parent) {
|
public AdminClearresetsallCommand(CompositeCommand parent) {
|
||||||
super(parent, "clearresetsall");
|
super(parent, "clearresetsall");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,9 +10,9 @@ import world.bentobox.bentobox.api.localization.TextVariables;
|
|||||||
import world.bentobox.bentobox.api.user.User;
|
import world.bentobox.bentobox.api.user.User;
|
||||||
import world.bentobox.bentobox.util.Util;
|
import world.bentobox.bentobox.util.Util;
|
||||||
|
|
||||||
public class AdminClearResetsCommand extends CompositeCommand {
|
public class AdminClearresetsCommand extends CompositeCommand {
|
||||||
|
|
||||||
public AdminClearResetsCommand(CompositeCommand parent) {
|
public AdminClearresetsCommand(CompositeCommand parent) {
|
||||||
super(parent, "clearresets");
|
super(parent, "clearresets");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,9 +18,9 @@ import world.bentobox.bentobox.managers.RanksManager;
|
|||||||
* @author tastybento
|
* @author tastybento
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class AdminGetRankCommand extends CompositeCommand {
|
public class AdminGetrankCommand extends CompositeCommand {
|
||||||
|
|
||||||
public AdminGetRankCommand(CompositeCommand adminCommand) {
|
public AdminGetrankCommand(CompositeCommand adminCommand) {
|
||||||
super(adminCommand, "getrank");
|
super(adminCommand, "getrank");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,9 +16,9 @@ import world.bentobox.bentobox.managers.RanksManager;
|
|||||||
* @author tastybento
|
* @author tastybento
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class AdminSetRankCommand extends CompositeCommand {
|
public class AdminSetrankCommand extends CompositeCommand {
|
||||||
|
|
||||||
public AdminSetRankCommand(CompositeCommand adminCommand) {
|
public AdminSetrankCommand(CompositeCommand adminCommand) {
|
||||||
super(adminCommand, "setrank");
|
super(adminCommand, "setrank");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,9 +7,9 @@ import world.bentobox.bentobox.api.user.User;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
public class AdminTeamSetOwnerCommand extends CompositeCommand {
|
public class AdminTeamSetownerCommand extends CompositeCommand {
|
||||||
|
|
||||||
public AdminTeamSetOwnerCommand(CompositeCommand parent) {
|
public AdminTeamSetownerCommand(CompositeCommand parent) {
|
||||||
super(parent, "setowner");
|
super(parent, "setowner");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ public class AdminClearResetsAllCommandTest {
|
|||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteCheckConfirm() {
|
public void testExecuteCheckConfirm() {
|
||||||
AdminClearResetsAllCommand itl = new AdminClearResetsAllCommand(ac);
|
AdminClearresetsallCommand itl = new AdminClearresetsallCommand(ac);
|
||||||
assertFalse(itl.execute(user, itl.getLabel(), new ArrayList<>(Arrays.asList("tastybento", "bobby"))));
|
assertFalse(itl.execute(user, itl.getLabel(), new ArrayList<>(Arrays.asList("tastybento", "bobby"))));
|
||||||
assertTrue(itl.execute(user, itl.getLabel(), new ArrayList<>()));
|
assertTrue(itl.execute(user, itl.getLabel(), new ArrayList<>()));
|
||||||
Mockito.verify(user).sendMessage(Mockito.eq("commands.confirmation.confirm"), Mockito.eq("[seconds]"), Mockito.any());
|
Mockito.verify(user).sendMessage(Mockito.eq("commands.confirmation.confirm"), Mockito.eq("[seconds]"), Mockito.any());
|
||||||
|
@ -41,7 +41,7 @@ import world.bentobox.bentobox.managers.PlayersManager;
|
|||||||
*/
|
*/
|
||||||
@RunWith(PowerMockRunner.class)
|
@RunWith(PowerMockRunner.class)
|
||||||
@PrepareForTest({Bukkit.class, BentoBox.class, User.class })
|
@PrepareForTest({Bukkit.class, BentoBox.class, User.class })
|
||||||
public class AdminClearResetsCommandTest {
|
public class AdminClearresetsCommandTest {
|
||||||
|
|
||||||
private CompositeCommand ac;
|
private CompositeCommand ac;
|
||||||
private User user;
|
private User user;
|
||||||
@ -119,7 +119,7 @@ public class AdminClearResetsCommandTest {
|
|||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteNoTarget() {
|
public void testExecuteNoTarget() {
|
||||||
AdminClearResetsCommand itl = new AdminClearResetsCommand(ac);
|
AdminClearresetsCommand itl = new AdminClearresetsCommand(ac);
|
||||||
assertFalse(itl.execute(user, itl.getLabel(), new ArrayList<>()));
|
assertFalse(itl.execute(user, itl.getLabel(), new ArrayList<>()));
|
||||||
// Show help
|
// Show help
|
||||||
Mockito.verify(user).sendMessage(Mockito.eq("commands.help.header"), Mockito.eq("[label]"), Mockito.any());
|
Mockito.verify(user).sendMessage(Mockito.eq("commands.help.header"), Mockito.eq("[label]"), Mockito.any());
|
||||||
@ -130,7 +130,7 @@ public class AdminClearResetsCommandTest {
|
|||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteUnknownPlayer() {
|
public void testExecuteUnknownPlayer() {
|
||||||
AdminClearResetsCommand itl = new AdminClearResetsCommand(ac);
|
AdminClearresetsCommand itl = new AdminClearresetsCommand(ac);
|
||||||
String[] name = {"tastybento"};
|
String[] name = {"tastybento"};
|
||||||
when(pm.getUUID(Mockito.any())).thenReturn(null);
|
when(pm.getUUID(Mockito.any())).thenReturn(null);
|
||||||
assertFalse(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
assertFalse(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
||||||
@ -142,7 +142,7 @@ public class AdminClearResetsCommandTest {
|
|||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecutePlayerNoIsland() {
|
public void testExecutePlayerNoIsland() {
|
||||||
AdminClearResetsCommand itl = new AdminClearResetsCommand(ac);
|
AdminClearresetsCommand itl = new AdminClearresetsCommand(ac);
|
||||||
String[] name = {"tastybento"};
|
String[] name = {"tastybento"};
|
||||||
when(pm.getUUID(Mockito.any())).thenReturn(notUUID);
|
when(pm.getUUID(Mockito.any())).thenReturn(notUUID);
|
||||||
when(im.hasIsland(Mockito.any(), Mockito.any(UUID.class))).thenReturn(false);
|
when(im.hasIsland(Mockito.any(), Mockito.any(UUID.class))).thenReturn(false);
|
||||||
@ -155,7 +155,7 @@ public class AdminClearResetsCommandTest {
|
|||||||
String[] name = {"tastybento"};
|
String[] name = {"tastybento"};
|
||||||
when(pm.getUUID(Mockito.any())).thenReturn(notUUID);
|
when(pm.getUUID(Mockito.any())).thenReturn(notUUID);
|
||||||
|
|
||||||
AdminClearResetsCommand itl = new AdminClearResetsCommand(ac);
|
AdminClearresetsCommand itl = new AdminClearresetsCommand(ac);
|
||||||
assertTrue(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
assertTrue(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
||||||
// Add other verifications
|
// Add other verifications
|
||||||
Mockito.verify(user).sendMessage("commands.admin.clearresets.cleared");
|
Mockito.verify(user).sendMessage("commands.admin.clearresets.cleared");
|
||||||
|
@ -41,7 +41,7 @@ import world.bentobox.bentobox.managers.PlayersManager;
|
|||||||
*/
|
*/
|
||||||
@RunWith(PowerMockRunner.class)
|
@RunWith(PowerMockRunner.class)
|
||||||
@PrepareForTest({Bukkit.class, BentoBox.class, User.class })
|
@PrepareForTest({Bukkit.class, BentoBox.class, User.class })
|
||||||
public class AdminTeamSetOwnerCommandTest {
|
public class AdminTeamSetownerCommandTest {
|
||||||
|
|
||||||
private CompositeCommand ac;
|
private CompositeCommand ac;
|
||||||
private UUID uuid;
|
private UUID uuid;
|
||||||
@ -114,21 +114,21 @@ public class AdminTeamSetOwnerCommandTest {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test method for {@link AdminTeamSetOwnerCommand#execute(User, String, List)}.
|
* Test method for {@link AdminTeamSetownerCommand#execute(User, String, List)}.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteNoTarget() {
|
public void testExecuteNoTarget() {
|
||||||
AdminTeamSetOwnerCommand itl = new AdminTeamSetOwnerCommand(ac);
|
AdminTeamSetownerCommand itl = new AdminTeamSetownerCommand(ac);
|
||||||
assertFalse(itl.execute(user, itl.getLabel(), new ArrayList<>()));
|
assertFalse(itl.execute(user, itl.getLabel(), new ArrayList<>()));
|
||||||
// Show help
|
// Show help
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test method for {@link AdminTeamSetOwnerCommand#execute(User, String, List)}.
|
* Test method for {@link AdminTeamSetownerCommand#execute(User, String, List)}.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteUnknownPlayer() {
|
public void testExecuteUnknownPlayer() {
|
||||||
AdminTeamSetOwnerCommand itl = new AdminTeamSetOwnerCommand(ac);
|
AdminTeamSetownerCommand itl = new AdminTeamSetownerCommand(ac);
|
||||||
String[] name = {"tastybento"};
|
String[] name = {"tastybento"};
|
||||||
when(pm.getUUID(Mockito.any())).thenReturn(null);
|
when(pm.getUUID(Mockito.any())).thenReturn(null);
|
||||||
assertFalse(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
assertFalse(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
||||||
@ -136,11 +136,11 @@ public class AdminTeamSetOwnerCommandTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test method for {@link AdminTeamSetOwnerCommand#execute(User, String, List)}.
|
* Test method for {@link AdminTeamSetownerCommand#execute(User, String, List)}.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecutePlayerNotInTeam() {
|
public void testExecutePlayerNotInTeam() {
|
||||||
AdminTeamSetOwnerCommand itl = new AdminTeamSetOwnerCommand(ac);
|
AdminTeamSetownerCommand itl = new AdminTeamSetownerCommand(ac);
|
||||||
String[] name = {"tastybento"};
|
String[] name = {"tastybento"};
|
||||||
when(pm.getUUID(Mockito.any())).thenReturn(notUUID);
|
when(pm.getUUID(Mockito.any())).thenReturn(notUUID);
|
||||||
when(im.getMembers(Mockito.any(), Mockito.any())).thenReturn(new HashSet<>());
|
when(im.getMembers(Mockito.any(), Mockito.any())).thenReturn(new HashSet<>());
|
||||||
@ -149,7 +149,7 @@ public class AdminTeamSetOwnerCommandTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test method for {@link AdminTeamSetOwnerCommand#execute(User, String, List)}.
|
* Test method for {@link AdminTeamSetownerCommand#execute(User, String, List)}.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteMakeLeaderAlreadyLeader() {
|
public void testExecuteMakeLeaderAlreadyLeader() {
|
||||||
@ -161,13 +161,13 @@ public class AdminTeamSetOwnerCommandTest {
|
|||||||
|
|
||||||
when(im.getTeamLeader(Mockito.any(), Mockito.eq(notUUID))).thenReturn(notUUID);
|
when(im.getTeamLeader(Mockito.any(), Mockito.eq(notUUID))).thenReturn(notUUID);
|
||||||
|
|
||||||
AdminTeamSetOwnerCommand itl = new AdminTeamSetOwnerCommand(ac);
|
AdminTeamSetownerCommand itl = new AdminTeamSetownerCommand(ac);
|
||||||
assertFalse(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
assertFalse(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
||||||
Mockito.verify(user).sendMessage("commands.admin.team.setowner.already-owner");
|
Mockito.verify(user).sendMessage("commands.admin.team.setowner.already-owner");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test method for {@link AdminTeamSetOwnerCommand#execute(User, String, List)}.
|
* Test method for {@link AdminTeamSetownerCommand#execute(User, String, List)}.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testExecuteSuccess() {
|
public void testExecuteSuccess() {
|
||||||
@ -185,7 +185,7 @@ public class AdminTeamSetOwnerCommandTest {
|
|||||||
members.add(notUUID);
|
members.add(notUUID);
|
||||||
when(im.getMembers(Mockito.any(), Mockito.any())).thenReturn(members);
|
when(im.getMembers(Mockito.any(), Mockito.any())).thenReturn(members);
|
||||||
|
|
||||||
AdminTeamSetOwnerCommand itl = new AdminTeamSetOwnerCommand(ac);
|
AdminTeamSetownerCommand itl = new AdminTeamSetownerCommand(ac);
|
||||||
assertTrue(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
assertTrue(itl.execute(user, itl.getLabel(), Arrays.asList(name)));
|
||||||
// Add other verifications
|
// Add other verifications
|
||||||
Mockito.verify(im).setOwner(Mockito.any(), Mockito.eq(user), Mockito.eq(notUUID));
|
Mockito.verify(im).setOwner(Mockito.any(), Mockito.eq(user), Mockito.eq(notUUID));
|
||||||
|
Loading…
Reference in New Issue
Block a user