2011-10-12 23:39:52 +00:00
|
|
|
package com.earth2me.essentials;
|
|
|
|
|
|
|
|
import com.earth2me.essentials.settings.Settings;
|
2011-12-06 13:39:52 +00:00
|
|
|
import com.earth2me.essentials.storage.ObjectLoadException;
|
2011-10-12 23:39:52 +00:00
|
|
|
import com.earth2me.essentials.storage.StorageObject;
|
2011-11-23 01:43:38 +00:00
|
|
|
import com.earth2me.essentials.storage.YamlStorageReader;
|
|
|
|
import com.earth2me.essentials.storage.YamlStorageWriter;
|
2011-11-21 01:55:26 +00:00
|
|
|
import java.io.*;
|
|
|
|
import junit.framework.TestCase;
|
2011-11-23 01:43:38 +00:00
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.World;
|
|
|
|
import org.bukkit.World.Environment;
|
|
|
|
import org.bukkit.plugin.InvalidDescriptionException;
|
2011-10-12 23:39:52 +00:00
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
|
|
|
|
public class StorageTest extends TestCase
|
|
|
|
{
|
2011-11-23 01:43:38 +00:00
|
|
|
Essentials ess;
|
|
|
|
FakeServer server;
|
|
|
|
World world;
|
|
|
|
|
|
|
|
public StorageTest()
|
|
|
|
{
|
|
|
|
ess = new Essentials();
|
|
|
|
server = new FakeServer();
|
|
|
|
world = server.createWorld("testWorld", Environment.NORMAL);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ess.setupForTesting(server);
|
|
|
|
}
|
|
|
|
catch (InvalidDescriptionException ex)
|
|
|
|
{
|
|
|
|
fail("InvalidDescriptionException");
|
|
|
|
}
|
|
|
|
catch (IOException ex)
|
|
|
|
{
|
|
|
|
fail("IOException");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-12 23:39:52 +00:00
|
|
|
@Test
|
|
|
|
public void testSettings()
|
|
|
|
{
|
2011-12-06 13:39:52 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
assertTrue(StorageObject.class.isAssignableFrom(Settings.class));
|
|
|
|
ExecuteTimer ext = new ExecuteTimer();
|
|
|
|
ext.start();
|
|
|
|
final ByteArrayInputStream bais = new ByteArrayInputStream(new byte[0]);
|
|
|
|
final Reader reader = new InputStreamReader(bais);
|
|
|
|
final Settings settings = new YamlStorageReader(reader, null).load(Settings.class);
|
|
|
|
ext.mark("load empty settings");
|
|
|
|
final ByteArrayInputStream bais3 = new ByteArrayInputStream(new byte[0]);
|
|
|
|
final Reader reader3 = new InputStreamReader(bais3);
|
|
|
|
final Settings settings3 = new YamlStorageReader(reader3, null).load(Settings.class);
|
|
|
|
ext.mark("load empty settings (class cached)");
|
|
|
|
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
|
|
|
final PrintWriter writer = new PrintWriter(baos);
|
|
|
|
new YamlStorageWriter(writer).save(settings);
|
|
|
|
writer.close();
|
|
|
|
ext.mark("write settings");
|
|
|
|
byte[] written = baos.toByteArray();
|
|
|
|
System.out.println(new String(written));
|
|
|
|
final ByteArrayInputStream bais2 = new ByteArrayInputStream(written);
|
|
|
|
final Reader reader2 = new InputStreamReader(bais2);
|
|
|
|
final Settings settings2 = new YamlStorageReader(reader2, null).load(Settings.class);
|
|
|
|
System.out.println(settings.toString());
|
|
|
|
System.out.println(settings2.toString());
|
|
|
|
ext.mark("reload settings");
|
|
|
|
System.out.println(ext.end());
|
|
|
|
//assertEquals("Default and rewritten config should be equal", settings, settings2);
|
|
|
|
//that assertion fails, because empty list and maps return as null
|
|
|
|
}
|
|
|
|
catch (ObjectLoadException ex)
|
|
|
|
{
|
|
|
|
fail(ex.getMessage());
|
|
|
|
}
|
2011-10-12 23:39:52 +00:00
|
|
|
}
|
2011-11-23 01:43:38 +00:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testUserdata()
|
|
|
|
{
|
2011-12-06 13:39:52 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
FakeServer server = new FakeServer();
|
|
|
|
World world = server.createWorld("testWorld", Environment.NORMAL);
|
|
|
|
ExecuteTimer ext = new ExecuteTimer();
|
|
|
|
ext.start();
|
|
|
|
final ByteArrayInputStream bais = new ByteArrayInputStream(new byte[0]);
|
|
|
|
final Reader reader = new InputStreamReader(bais);
|
|
|
|
final com.earth2me.essentials.user.UserData userdata = new YamlStorageReader(reader, null).load(com.earth2me.essentials.user.UserData.class);
|
|
|
|
ext.mark("load empty user");
|
|
|
|
final ByteArrayInputStream bais3 = new ByteArrayInputStream(new byte[0]);
|
|
|
|
final Reader reader3 = new InputStreamReader(bais3);
|
|
|
|
final com.earth2me.essentials.user.UserData userdata3 = new YamlStorageReader(reader3, null).load(com.earth2me.essentials.user.UserData.class);
|
|
|
|
ext.mark("load empty user (class cached)");
|
2011-11-23 01:43:38 +00:00
|
|
|
|
2011-12-06 13:39:52 +00:00
|
|
|
for (int j = 0; j < 10000; j++)
|
|
|
|
{
|
|
|
|
userdata.getHomes().put("home", new Location(world, j, j, j));
|
|
|
|
}
|
|
|
|
ext.mark("change home 10000 times");
|
|
|
|
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
|
|
|
final PrintWriter writer = new PrintWriter(baos);
|
|
|
|
new YamlStorageWriter(writer).save(userdata);
|
|
|
|
writer.close();
|
|
|
|
ext.mark("write user");
|
|
|
|
final ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
|
|
|
|
final PrintWriter writer2 = new PrintWriter(baos2);
|
|
|
|
new YamlStorageWriter(writer2).save(userdata);
|
|
|
|
writer2.close();
|
|
|
|
ext.mark("write user (cached)");
|
|
|
|
byte[] written = baos.toByteArray();
|
|
|
|
System.out.println(new String(written));
|
|
|
|
ext.mark("debug output");
|
|
|
|
final ByteArrayInputStream bais2 = new ByteArrayInputStream(written);
|
|
|
|
final Reader reader2 = new InputStreamReader(bais2);
|
|
|
|
final com.earth2me.essentials.user.UserData userdata2 = new YamlStorageReader(reader2, null).load(com.earth2me.essentials.user.UserData.class);
|
|
|
|
ext.mark("reload file");
|
|
|
|
final ByteArrayInputStream bais4 = new ByteArrayInputStream(written);
|
|
|
|
final Reader reader4 = new InputStreamReader(bais4);
|
|
|
|
final com.earth2me.essentials.user.UserData userdata4 = new YamlStorageReader(reader4, null).load(com.earth2me.essentials.user.UserData.class);
|
|
|
|
ext.mark("reload file (cached)");
|
|
|
|
System.out.println(userdata.toString());
|
|
|
|
System.out.println(userdata2.toString());
|
|
|
|
System.out.println(ext.end());
|
|
|
|
}
|
|
|
|
catch (ObjectLoadException ex)
|
2011-11-23 01:43:38 +00:00
|
|
|
{
|
2011-12-06 13:39:52 +00:00
|
|
|
fail(ex.getMessage());
|
2011-11-23 01:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testOldUserdata()
|
|
|
|
{
|
|
|
|
ExecuteTimer ext = new ExecuteTimer();
|
|
|
|
ext.start();
|
|
|
|
OfflinePlayer base1 = server.createPlayer("testPlayer1", ess);
|
|
|
|
server.addPlayer(base1);
|
|
|
|
ext.mark("fake user created");
|
|
|
|
UserData user = (UserData)ess.getUser(base1);
|
|
|
|
ext.mark("load empty user");
|
|
|
|
for (int j = 0; j < 1; j++)
|
|
|
|
{
|
|
|
|
user.setHome("home", new Location(world, j, j, j));
|
|
|
|
}
|
|
|
|
ext.mark("change home 1 times");
|
|
|
|
user.save();
|
|
|
|
ext.mark("write user");
|
|
|
|
user.save();
|
|
|
|
ext.mark("write user (cached)");
|
|
|
|
user.reloadConfig();
|
|
|
|
ext.mark("reloaded file");
|
|
|
|
user.reloadConfig();
|
|
|
|
ext.mark("reloaded file (cached)");
|
|
|
|
System.out.println(ext.end());
|
|
|
|
}
|
2011-10-12 23:39:52 +00:00
|
|
|
}
|