mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2024-11-03 02:34:19 +00:00
125 lines
3.3 KiB
Java
125 lines
3.3 KiB
Java
package com.earth2me.essentials;
|
|
|
|
import com.earth2me.essentials.api.Economy;
|
|
import com.earth2me.essentials.api.NoLoanPermittedException;
|
|
import com.earth2me.essentials.api.UserDoesNotExistException;
|
|
import java.io.IOException;
|
|
import junit.framework.TestCase;
|
|
import org.bukkit.World.Environment;
|
|
import org.bukkit.plugin.InvalidDescriptionException;
|
|
import org.junit.Test;
|
|
|
|
|
|
public class EconomyTest extends TestCase
|
|
{
|
|
private final transient Essentials ess;
|
|
private final static String NPCNAME = "npc1";
|
|
private final static String PLAYERNAME = "TestPlayer1";
|
|
|
|
public EconomyTest(final String testName)
|
|
{
|
|
super(testName);
|
|
ess = new Essentials();
|
|
final FakeServer server = new FakeServer();
|
|
server.createWorld("testWorld", Environment.NORMAL);
|
|
try
|
|
{
|
|
ess.setupForTesting(server);
|
|
}
|
|
catch (InvalidDescriptionException ex)
|
|
{
|
|
fail("InvalidDescriptionException");
|
|
}
|
|
catch (IOException ex)
|
|
{
|
|
fail("IOException");
|
|
}
|
|
server.addPlayer(new OfflinePlayer(PLAYERNAME, ess));
|
|
}
|
|
|
|
// only one big test, since we use static instances
|
|
@Test
|
|
public void testEconomy()
|
|
{
|
|
// test NPC
|
|
assertFalse("NPC does not exists", Economy.playerExists(NPCNAME));
|
|
assertTrue("Create NPC", Economy.createNPC(NPCNAME));
|
|
assertTrue("NPC exists", Economy.playerExists(NPCNAME));
|
|
assertNotNull("NPC can be accessed", ess.getOfflineUser(NPCNAME));
|
|
try
|
|
{
|
|
Economy.removeNPC(NPCNAME);
|
|
}
|
|
catch (UserDoesNotExistException ex)
|
|
{
|
|
fail(ex.getMessage());
|
|
}
|
|
assertFalse("NPC can be removed", Economy.playerExists(NPCNAME));
|
|
|
|
//test Math
|
|
try
|
|
{
|
|
|
|
assertTrue("Player exists", Economy.playerExists(PLAYERNAME));
|
|
Economy.resetBalance(PLAYERNAME);
|
|
assertEquals("Player has no money", 0.0, Economy.getMoney(PLAYERNAME));
|
|
Economy.add(PLAYERNAME, 10.0);
|
|
assertEquals("Add money", 10.0, Economy.getMoney(PLAYERNAME));
|
|
Economy.subtract(PLAYERNAME, 5.0);
|
|
assertEquals("Subtract money", 5.0, Economy.getMoney(PLAYERNAME));
|
|
Economy.multiply(PLAYERNAME, 2.0);
|
|
assertEquals("Multiply money", 10.0, Economy.getMoney(PLAYERNAME));
|
|
Economy.divide(PLAYERNAME, 2.0);
|
|
assertEquals("Divide money", 5.0, Economy.getMoney(PLAYERNAME));
|
|
Economy.setMoney(PLAYERNAME, 10.0);
|
|
assertEquals("Set money", 10.0, Economy.getMoney(PLAYERNAME));
|
|
}
|
|
catch (NoLoanPermittedException ex)
|
|
{
|
|
fail(ex.getMessage());
|
|
}
|
|
catch (UserDoesNotExistException ex)
|
|
{
|
|
fail(ex.getMessage());
|
|
}
|
|
|
|
//test Format
|
|
assertEquals("Format $1000", "$1000", Economy.format(1000.0));
|
|
assertEquals("Format $10", "$10", Economy.format(10.0));
|
|
assertEquals("Format $10.10", "$10.10", Economy.format(10.10));
|
|
assertEquals("Format $10.10", "$10.10", Economy.format(10.102));
|
|
assertEquals("Format $10.11", "$10.11", Economy.format(10.109));
|
|
|
|
|
|
//test Exceptions
|
|
try
|
|
{
|
|
assertTrue("Player exists", Economy.playerExists(PLAYERNAME));
|
|
Economy.resetBalance(PLAYERNAME);
|
|
assertEquals("Reset balance", 0.0, Economy.getMoney(PLAYERNAME));
|
|
Economy.subtract(PLAYERNAME, 5.0);
|
|
fail("Did not throw exception");
|
|
}
|
|
catch (NoLoanPermittedException ex)
|
|
{
|
|
}
|
|
catch (UserDoesNotExistException ex)
|
|
{
|
|
fail(ex.getMessage());
|
|
}
|
|
|
|
try
|
|
{
|
|
Economy.resetBalance("UnknownPlayer");
|
|
fail("Did not throw exception");
|
|
}
|
|
catch (NoLoanPermittedException ex)
|
|
{
|
|
fail(ex.getMessage());
|
|
}
|
|
catch (UserDoesNotExistException ex)
|
|
{
|
|
}
|
|
}
|
|
}
|