167 lines
6.4 KiB
Java
167 lines
6.4 KiB
Java
package org.bukkit;
|
|
|
|
import org.bukkit.util.ChatPaginator;
|
|
import org.junit.Test;
|
|
|
|
import static org.hamcrest.CoreMatchers.is;
|
|
import static org.hamcrest.CoreMatchers.nullValue;
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
/**
|
|
*/
|
|
public class ChatPaginatorTest {
|
|
@Test
|
|
public void testWordWrap1() {
|
|
String rawString = ChatColor.RED + "123456789 123456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 19);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.RED + "123456789 123456789"));
|
|
assertThat(lines[1], is(ChatColor.RED.toString() + "123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap2() {
|
|
String rawString = "123456789 123456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 22);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "123456789 123456789"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap3() {
|
|
String rawString = ChatColor.RED + "123456789 " + ChatColor.RED + ChatColor.RED + "123456789 " + ChatColor.RED + "123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 16);
|
|
|
|
assertThat(lines.length, is(3));
|
|
assertThat(lines[0], is(ChatColor.RED + "123456789"));
|
|
assertThat(lines[1], is(ChatColor.RED.toString() + ChatColor.RED + "123456789"));
|
|
assertThat(lines[2], is(ChatColor.RED + "123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap4() {
|
|
String rawString = "123456789 123456789 123456789 12345";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 19);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "123456789 123456789"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456789 12345"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap5() {
|
|
String rawString = "123456789\n123456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 19);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "123456789"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456789 123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap6() {
|
|
String rawString = "12345678 23456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 19);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "12345678 23456789"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap7() {
|
|
String rawString = "12345678 23456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 19);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "12345678 23456789"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap8() {
|
|
String rawString = "123456789 123456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 6);
|
|
|
|
assertThat(lines.length, is(6));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "123456"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "789"));
|
|
assertThat(lines[2], is(ChatColor.WHITE.toString() + "123456"));
|
|
assertThat(lines[3], is(ChatColor.WHITE.toString() + "789"));
|
|
assertThat(lines[4], is(ChatColor.WHITE.toString() + "123456"));
|
|
assertThat(lines[5], is(ChatColor.WHITE.toString() + "789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap9() {
|
|
String rawString = "1234 123456789 123456789 123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 6);
|
|
|
|
assertThat(lines.length, is(7));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "1234"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456"));
|
|
assertThat(lines[2], is(ChatColor.WHITE.toString() + "789"));
|
|
assertThat(lines[3], is(ChatColor.WHITE.toString() + "123456"));
|
|
assertThat(lines[4], is(ChatColor.WHITE.toString() + "789"));
|
|
assertThat(lines[5], is(ChatColor.WHITE.toString() + "123456"));
|
|
assertThat(lines[6], is(ChatColor.WHITE.toString() + "789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap10() {
|
|
String rawString = "123456789\n123456789";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 19);
|
|
|
|
assertThat(lines.length, is(2));
|
|
assertThat(lines[0], is(ChatColor.WHITE.toString() + "123456789"));
|
|
assertThat(lines[1], is(ChatColor.WHITE.toString() + "123456789"));
|
|
}
|
|
|
|
@Test
|
|
public void testWordWrap11() {
|
|
String rawString = ChatColor.RED + "a a a " + ChatColor.BLUE + "a a";
|
|
String[] lines = ChatPaginator.wordWrap(rawString, 9);
|
|
|
|
assertThat(lines.length, is(1));
|
|
assertThat(lines[0], is(ChatColor.RED + "a a a " + ChatColor.BLUE + "a a"));
|
|
}
|
|
|
|
@Test
|
|
public void testPaginate1() {
|
|
String rawString = "1234 123456789 123456789 123456789";
|
|
ChatPaginator.ChatPage page = ChatPaginator.paginate(rawString, 1, 6, 2);
|
|
|
|
assertThat(page.getPageNumber(), is(1));
|
|
assertThat(page.getTotalPages(), is(4));
|
|
assertThat(page.getLines().length, is(2));
|
|
assertThat(page.getLines()[0], is(ChatColor.WHITE.toString() + "1234"));
|
|
assertThat(page.getLines()[1], is(ChatColor.WHITE.toString() + "123456"));
|
|
}
|
|
|
|
@Test
|
|
public void testPaginate2() {
|
|
String rawString = "1234 123456789 123456789 123456789";
|
|
ChatPaginator.ChatPage page = ChatPaginator.paginate(rawString, 2, 6, 2);
|
|
|
|
assertThat(page.getPageNumber(), is(2));
|
|
assertThat(page.getTotalPages(), is(4));
|
|
assertThat(page.getLines().length, is(2));
|
|
assertThat(page.getLines()[0], is(ChatColor.WHITE.toString() + "789"));
|
|
assertThat(page.getLines()[1], is(ChatColor.WHITE.toString() + "123456"));
|
|
}
|
|
|
|
@Test
|
|
public void testPaginate3() {
|
|
String rawString = "1234 123456789 123456789 123456789";
|
|
ChatPaginator.ChatPage page = ChatPaginator.paginate(rawString, 4, 6, 2);
|
|
|
|
assertThat(page.getPageNumber(), is(4));
|
|
assertThat(page.getTotalPages(), is(4));
|
|
assertThat(page.getLines().length, is(1));
|
|
assertThat(page.getLines()[0], is(ChatColor.WHITE.toString() + "789"));
|
|
}
|
|
}
|