mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-28 13:45:14 +01:00
Completes turtle protection update.
https://github.com/BentoBoxWorld/bentobox/issues/348
This commit is contained in:
parent
46156fbf5c
commit
693c6ab17e
@ -30,7 +30,8 @@ public class BreedingListener extends FlagListener {
|
|||||||
Material.EGG,
|
Material.EGG,
|
||||||
Material.WHEAT,
|
Material.WHEAT,
|
||||||
Material.CARROT,
|
Material.CARROT,
|
||||||
Material.WHEAT_SEEDS);
|
Material.WHEAT_SEEDS,
|
||||||
|
Material.SEAGRASS);
|
||||||
|
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.LOW, ignoreCancelled=true)
|
@EventHandler(priority = EventPriority.LOW, ignoreCancelled=true)
|
||||||
|
@ -0,0 +1,297 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
package world.bentobox.bentobox.listeners.flags;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.mockito.Matchers.any;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.Server;
|
||||||
|
import org.bukkit.World;
|
||||||
|
import org.bukkit.entity.Animals;
|
||||||
|
import org.bukkit.entity.Cow;
|
||||||
|
import org.bukkit.entity.Entity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.entity.Slime;
|
||||||
|
import org.bukkit.entity.Zombie;
|
||||||
|
import org.bukkit.event.player.PlayerInteractAtEntityEvent;
|
||||||
|
import org.bukkit.inventory.EquipmentSlot;
|
||||||
|
import org.bukkit.inventory.ItemFactory;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.inventory.PlayerInventory;
|
||||||
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
|
import org.bukkit.plugin.PluginManager;
|
||||||
|
import org.bukkit.util.Vector;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mockito;
|
||||||
|
import org.mockito.stubbing.Answer;
|
||||||
|
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 world.bentobox.bentobox.BentoBox;
|
||||||
|
import world.bentobox.bentobox.Settings;
|
||||||
|
import world.bentobox.bentobox.api.configuration.WorldSettings;
|
||||||
|
import world.bentobox.bentobox.api.user.Notifier;
|
||||||
|
import world.bentobox.bentobox.api.user.User;
|
||||||
|
import world.bentobox.bentobox.database.objects.Island;
|
||||||
|
import world.bentobox.bentobox.lists.Flags;
|
||||||
|
import world.bentobox.bentobox.managers.FlagsManager;
|
||||||
|
import world.bentobox.bentobox.managers.IslandWorldManager;
|
||||||
|
import world.bentobox.bentobox.managers.IslandsManager;
|
||||||
|
import world.bentobox.bentobox.managers.LocalesManager;
|
||||||
|
import world.bentobox.bentobox.managers.PlayersManager;
|
||||||
|
import world.bentobox.bentobox.util.Util;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author tastybento
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@RunWith(PowerMockRunner.class)
|
||||||
|
@PrepareForTest( {Bukkit.class, BentoBox.class, Flags.class, Util.class} )
|
||||||
|
public class BreedingListenerTest {
|
||||||
|
|
||||||
|
private Location location;
|
||||||
|
private BentoBox plugin;
|
||||||
|
private Notifier notifier;
|
||||||
|
private Player player;
|
||||||
|
private PlayerInventory inventory;
|
||||||
|
private ItemStack itemInMainHand;
|
||||||
|
private ItemStack itemInOffHand;
|
||||||
|
private IslandWorldManager iwm;
|
||||||
|
|
||||||
|
private static final List<Material> BREEDING_ITEMS = Arrays.asList(
|
||||||
|
Material.EGG,
|
||||||
|
Material.WHEAT,
|
||||||
|
Material.CARROT,
|
||||||
|
Material.WHEAT_SEEDS,
|
||||||
|
Material.SEAGRASS);
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() {
|
||||||
|
// Set up plugin
|
||||||
|
plugin = mock(BentoBox.class);
|
||||||
|
Whitebox.setInternalState(BentoBox.class, "instance", plugin);
|
||||||
|
|
||||||
|
Server server = mock(Server.class);
|
||||||
|
World world = mock(World.class);
|
||||||
|
when(server.getLogger()).thenReturn(Logger.getAnonymousLogger());
|
||||||
|
when(server.getWorld("world")).thenReturn(world);
|
||||||
|
when(server.getVersion()).thenReturn("BSB_Mocking");
|
||||||
|
|
||||||
|
PluginManager pluginManager = mock(PluginManager.class);
|
||||||
|
when(server.getPluginManager()).thenReturn(pluginManager);
|
||||||
|
|
||||||
|
ItemFactory itemFactory = mock(ItemFactory.class);
|
||||||
|
when(server.getItemFactory()).thenReturn(itemFactory);
|
||||||
|
|
||||||
|
PowerMockito.mockStatic(Bukkit.class);
|
||||||
|
when(Bukkit.getServer()).thenReturn(server);
|
||||||
|
//Bukkit.setServer(server);
|
||||||
|
|
||||||
|
SkullMeta skullMeta = mock(SkullMeta.class);
|
||||||
|
when(itemFactory.getItemMeta(any())).thenReturn(skullMeta);
|
||||||
|
when(Bukkit.getItemFactory()).thenReturn(itemFactory);
|
||||||
|
when(Bukkit.getLogger()).thenReturn(Logger.getAnonymousLogger());
|
||||||
|
location = mock(Location.class);
|
||||||
|
when(location.getWorld()).thenReturn(world);
|
||||||
|
when(location.getBlockX()).thenReturn(0);
|
||||||
|
when(location.getBlockY()).thenReturn(0);
|
||||||
|
when(location.getBlockZ()).thenReturn(0);
|
||||||
|
PowerMockito.mockStatic(Flags.class);
|
||||||
|
|
||||||
|
FlagsManager flagsManager = new FlagsManager(plugin);
|
||||||
|
when(plugin.getFlagsManager()).thenReturn(flagsManager);
|
||||||
|
|
||||||
|
|
||||||
|
// Worlds
|
||||||
|
iwm = mock(IslandWorldManager.class);
|
||||||
|
when(iwm.inWorld(any(World.class))).thenReturn(true);
|
||||||
|
when(iwm.inWorld(any(Location.class))).thenReturn(true);
|
||||||
|
when(plugin.getIWM()).thenReturn(iwm);
|
||||||
|
|
||||||
|
// Monsters and animals
|
||||||
|
Zombie zombie = mock(Zombie.class);
|
||||||
|
when(zombie.getLocation()).thenReturn(location);
|
||||||
|
Slime slime = mock(Slime.class);
|
||||||
|
when(slime.getLocation()).thenReturn(location);
|
||||||
|
Cow cow = mock(Cow.class);
|
||||||
|
when(cow.getLocation()).thenReturn(location);
|
||||||
|
|
||||||
|
// Fake players
|
||||||
|
Settings settings = mock(Settings.class);
|
||||||
|
Mockito.when(plugin.getSettings()).thenReturn(settings);
|
||||||
|
Mockito.when(settings.getFakePlayers()).thenReturn(new HashSet<>());
|
||||||
|
|
||||||
|
// Player and player inventory. Start with nothing in hands
|
||||||
|
player = mock(Player.class);
|
||||||
|
inventory = mock(PlayerInventory.class);
|
||||||
|
itemInMainHand = mock(ItemStack.class);
|
||||||
|
when(itemInMainHand.getType()).thenReturn(Material.AIR);
|
||||||
|
itemInOffHand = mock(ItemStack.class);
|
||||||
|
when(itemInOffHand.getType()).thenReturn(Material.AIR);
|
||||||
|
when(inventory.getItemInMainHand()).thenReturn(itemInMainHand);
|
||||||
|
when(inventory.getItemInOffHand()).thenReturn(itemInOffHand);
|
||||||
|
when(player.getInventory()).thenReturn(inventory);
|
||||||
|
User.setPlugin(plugin);
|
||||||
|
|
||||||
|
// Locales
|
||||||
|
LocalesManager lm = mock(LocalesManager.class);
|
||||||
|
when(plugin.getLocalesManager()).thenReturn(lm);
|
||||||
|
Answer<String> answer = invocation -> (String)Arrays.asList(invocation.getArguments()).get(1);
|
||||||
|
when(lm.get(any(), any())).thenAnswer(answer);
|
||||||
|
|
||||||
|
// Player name
|
||||||
|
PlayersManager pm = mock(PlayersManager.class);
|
||||||
|
when(pm.getName(Mockito.any())).thenReturn("tastybento");
|
||||||
|
when(plugin.getPlayers()).thenReturn(pm);
|
||||||
|
|
||||||
|
// World Settings
|
||||||
|
WorldSettings ws = mock(WorldSettings.class);
|
||||||
|
when(iwm.getWorldSettings(Mockito.any())).thenReturn(ws);
|
||||||
|
Map<String, Boolean> worldFlags = new HashMap<>();
|
||||||
|
when(ws.getWorldFlags()).thenReturn(worldFlags);
|
||||||
|
|
||||||
|
// Island manager
|
||||||
|
IslandsManager im = mock(IslandsManager.class);
|
||||||
|
when(plugin.getIslands()).thenReturn(im);
|
||||||
|
Island island = mock(Island.class);
|
||||||
|
Optional<Island> optional = Optional.of(island);
|
||||||
|
when(im.getProtectedIslandAt(Mockito.any())).thenReturn(optional);
|
||||||
|
|
||||||
|
// Notifier
|
||||||
|
notifier = mock(Notifier.class);
|
||||||
|
when(plugin.getNotifier()).thenReturn(notifier);
|
||||||
|
|
||||||
|
PowerMockito.mockStatic(Util.class);
|
||||||
|
when(Util.getWorld(Mockito.any())).thenReturn(mock(World.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractNotAnimal() {
|
||||||
|
Entity clickedEntity = mock(Entity.class);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position);
|
||||||
|
new BreedingListener().onPlayerInteract(e);
|
||||||
|
assertFalse("Not animal failed", e.isCancelled());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractAnimalNothingInMainHand() {
|
||||||
|
|
||||||
|
Animals clickedEntity = mock(Animals.class);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position);
|
||||||
|
new BreedingListener().onPlayerInteract(e);
|
||||||
|
assertFalse("Animal, nothing in main hand failed", e.isCancelled());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractAnimalNothingInOffHand() {
|
||||||
|
Animals clickedEntity = mock(Animals.class);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position, EquipmentSlot.OFF_HAND);
|
||||||
|
new BreedingListener().onPlayerInteract(e);
|
||||||
|
assertFalse("Animal, nothing in off hand failed", e.isCancelled());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractAnimalBreedingFoodInMainHandNotRightWorld() {
|
||||||
|
Animals clickedEntity = mock(Animals.class);
|
||||||
|
when(clickedEntity.getLocation()).thenReturn(location);
|
||||||
|
when(iwm.inWorld(any(World.class))).thenReturn(false);
|
||||||
|
when(iwm.inWorld(any(Location.class))).thenReturn(false);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position);
|
||||||
|
BreedingListener bl = new BreedingListener();
|
||||||
|
for (Material breedingMat : BREEDING_ITEMS) {
|
||||||
|
when(itemInMainHand.getType()).thenReturn(breedingMat);
|
||||||
|
bl.onPlayerInteract(e);
|
||||||
|
assertFalse("Animal, breeding item in main hand, wrong world failed " + breedingMat, e.isCancelled());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractAnimalBreedingFoodInMainHand() {
|
||||||
|
Animals clickedEntity = mock(Animals.class);
|
||||||
|
when(clickedEntity.getLocation()).thenReturn(location);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position);
|
||||||
|
BreedingListener bl = new BreedingListener();
|
||||||
|
for (Material breedingMat : BREEDING_ITEMS) {
|
||||||
|
when(itemInMainHand.getType()).thenReturn(breedingMat);
|
||||||
|
bl.onPlayerInteract(e);
|
||||||
|
assertTrue("Animal, breeding item in main hand failed " + breedingMat, e.isCancelled());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractAnimalBreedingFoodInOffHandNotRightWorld() {
|
||||||
|
Animals clickedEntity = mock(Animals.class);
|
||||||
|
when(clickedEntity.getLocation()).thenReturn(location);
|
||||||
|
when(iwm.inWorld(any(World.class))).thenReturn(false);
|
||||||
|
when(iwm.inWorld(any(Location.class))).thenReturn(false);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position, EquipmentSlot.OFF_HAND);
|
||||||
|
BreedingListener bl = new BreedingListener();
|
||||||
|
for (Material breedingMat : BREEDING_ITEMS) {
|
||||||
|
when(itemInOffHand.getType()).thenReturn(breedingMat);
|
||||||
|
bl.onPlayerInteract(e);
|
||||||
|
assertFalse("Animal, breeding item in off hand, wrong world failed " + breedingMat, e.isCancelled());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* I am not sure if breeding with off hand is possible!
|
||||||
|
* Test method for {@link world.bentobox.bentobox.listeners.flags.BreedingListener#onPlayerInteract(org.bukkit.event.player.PlayerInteractAtEntityEvent)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testOnPlayerInteractAnimalBreedingFoodInOffHand() {
|
||||||
|
Animals clickedEntity = mock(Animals.class);
|
||||||
|
when(clickedEntity.getLocation()).thenReturn(location);
|
||||||
|
Vector position = new Vector(0,0,0);
|
||||||
|
PlayerInteractAtEntityEvent e = new PlayerInteractAtEntityEvent(player, clickedEntity , position, EquipmentSlot.OFF_HAND);
|
||||||
|
BreedingListener bl = new BreedingListener();
|
||||||
|
for (Material breedingMat : BREEDING_ITEMS) {
|
||||||
|
when(itemInOffHand.getType()).thenReturn(breedingMat);
|
||||||
|
bl.onPlayerInteract(e);
|
||||||
|
assertTrue("Animal, breeding item in off hand failed " + breedingMat, e.isCancelled());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -70,9 +70,9 @@ import world.bentobox.bentobox.util.Util;
|
|||||||
@PrepareForTest( {BentoBox.class, Flags.class, Util.class, Bukkit.class} )
|
@PrepareForTest( {BentoBox.class, Flags.class, Util.class, Bukkit.class} )
|
||||||
public class PhysicalInteractionListenerTest {
|
public class PhysicalInteractionListenerTest {
|
||||||
|
|
||||||
private static Location location;
|
private Location location;
|
||||||
private static BentoBox plugin;
|
private BentoBox plugin;
|
||||||
private static Notifier notifier;
|
private Notifier notifier;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
@ -318,7 +318,7 @@ public class PhysicalInteractionListenerTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testOnProjectileHitProjectileBlockNull() {
|
public void testOnProjectileHitProjectileBlockNull() {
|
||||||
Projectile entity = mock(Projectile.class);
|
Projectile entity = mock(Projectile.class);
|
||||||
ProjectileSource source = (ProjectileSource) mock(Creeper.class);
|
ProjectileSource source = mock(Creeper.class);
|
||||||
when(entity.getShooter()).thenReturn(source);
|
when(entity.getShooter()).thenReturn(source);
|
||||||
Block block = null;
|
Block block = null;
|
||||||
EntityInteractEvent e = new EntityInteractEvent(entity, block);
|
EntityInteractEvent e = new EntityInteractEvent(entity, block);
|
||||||
@ -333,7 +333,7 @@ public class PhysicalInteractionListenerTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testOnProjectileHitProjectile() {
|
public void testOnProjectileHitProjectile() {
|
||||||
Projectile entity = mock(Projectile.class);
|
Projectile entity = mock(Projectile.class);
|
||||||
ProjectileSource source = (ProjectileSource) mock(Creeper.class);
|
ProjectileSource source = mock(Creeper.class);
|
||||||
when(entity.getShooter()).thenReturn(source);
|
when(entity.getShooter()).thenReturn(source);
|
||||||
Block block = mock(Block.class);
|
Block block = mock(Block.class);
|
||||||
EntityInteractEvent e = new EntityInteractEvent(entity, block);
|
EntityInteractEvent e = new EntityInteractEvent(entity, block);
|
||||||
@ -348,7 +348,7 @@ public class PhysicalInteractionListenerTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testOnProjectileHitProjectileBlockNullPlayer() {
|
public void testOnProjectileHitProjectileBlockNullPlayer() {
|
||||||
Projectile entity = mock(Projectile.class);
|
Projectile entity = mock(Projectile.class);
|
||||||
ProjectileSource source = (ProjectileSource) mock(Player.class);
|
ProjectileSource source = mock(Player.class);
|
||||||
when(entity.getShooter()).thenReturn(source);
|
when(entity.getShooter()).thenReturn(source);
|
||||||
Block block = null;
|
Block block = null;
|
||||||
EntityInteractEvent e = new EntityInteractEvent(entity, block);
|
EntityInteractEvent e = new EntityInteractEvent(entity, block);
|
||||||
@ -367,7 +367,7 @@ public class PhysicalInteractionListenerTest {
|
|||||||
when(player.isOp()).thenReturn(false);
|
when(player.isOp()).thenReturn(false);
|
||||||
when(player.getLocation()).thenReturn(location);
|
when(player.getLocation()).thenReturn(location);
|
||||||
User.getInstance(player);
|
User.getInstance(player);
|
||||||
ProjectileSource source = (ProjectileSource) player ;
|
ProjectileSource source = player ;
|
||||||
when(entity.getShooter()).thenReturn(source);
|
when(entity.getShooter()).thenReturn(source);
|
||||||
Block block = mock(Block.class);
|
Block block = mock(Block.class);
|
||||||
when(block.getLocation()).thenReturn(location);
|
when(block.getLocation()).thenReturn(location);
|
||||||
|
Loading…
Reference in New Issue
Block a user