mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 12:23:59 +00:00
![Pokechu22](/assets/img/avatar_default.png)
* Add tests for existing format behavior * Replace formatting implementation * Add permissions for individual color codes Resolves #415 * Use format code names * Fix escaping * Mockito: test scope only * Explicitly check the .magic permission Once I switch to checking if a perm's set in the loop, the explicit check is needed for an * perm. * Add support for removing individual colors * Use `obfuscated` as the name for §k `magic` is still accepted as the group name, so this is not a breaking change.
108 lines
4.6 KiB
Java
108 lines
4.6 KiB
Java
package com.earth2me.essentials.utils;
|
|
|
|
import net.ess3.api.IUser;
|
|
|
|
import org.junit.Test;
|
|
import static org.junit.Assert.*;
|
|
import static org.mockito.Mockito.*;
|
|
|
|
public class FormatUtilTest {
|
|
|
|
@Test
|
|
public void testFormatCase() {
|
|
checkFormatPerms("&aT&Aest", "&aT&Aest");
|
|
checkFormatPerms("§aT§Aest", "Test");
|
|
|
|
checkFormatPerms("&aT&Aest", "§aT§Aest", "color");
|
|
checkFormatPerms("§aT§Aest", "§aT§Aest", "color");
|
|
}
|
|
|
|
@Test
|
|
public void testFormatCategoryPerms() {
|
|
checkFormatPerms("Test", "Test");
|
|
checkFormatPerms("Test", "Test", "color", "format");
|
|
|
|
checkFormatPerms("&1C&2o&3l&4o&5r&6m&7a&8t&9i&ac", "&1C&2o&3l&4o&5r&6m&7a&8t&9i&ac"); // Unchanged
|
|
checkFormatPerms("§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac", "Colormatic"); // Removed
|
|
checkFormatPerms("&1C&2o&3l&4o&5r&6m&7a&8t&9i&ac", "§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac", "color"); // Converted
|
|
checkFormatPerms("§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac", "§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac", "color"); // Unchanged
|
|
|
|
checkFormatPerms("&kFUNKY LOL", "§kFUNKY LOL", "magic"); // Converted
|
|
checkFormatPerms("§kFUNKY LOL", "§kFUNKY LOL", "magic"); // Unchanged
|
|
|
|
// Magic isn't included in the format group
|
|
checkFormatPerms("&kFUNKY LOL", "&kFUNKY LOL"); // Unchanged
|
|
checkFormatPerms("§kFUNKY LOL", "FUNKY LOL"); // Removed
|
|
checkFormatPerms("&kFUNKY LOL", "&kFUNKY LOL", "format"); // Unchanged
|
|
checkFormatPerms("§kFUNKY LOL", "FUNKY LOL", "format"); // Removed
|
|
|
|
checkFormatPerms("&f<est", "&f<est");
|
|
checkFormatPerms("§f§ltest", "test");
|
|
checkFormatPerms("&f<est", "§f<est", "color");
|
|
checkFormatPerms("§f§ltest", "§ftest", "color");
|
|
checkFormatPerms("&f<est", "&f§ltest", "format");
|
|
checkFormatPerms("§f§ltest", "§ltest", "format");
|
|
checkFormatPerms("&f<est", "§f§ltest", "color", "format");
|
|
checkFormatPerms("§f§ltest", "§f§ltest", "color", "format");
|
|
}
|
|
|
|
@Test
|
|
public void testFormatCodePerms() {
|
|
checkFormatPerms("&1Te&2st", "&1Te&2st");
|
|
checkFormatPerms("§1Te§2st", "Test");
|
|
|
|
checkFormatPerms("&1Te&2st", "§1Te&2st", "dark_blue");
|
|
checkFormatPerms("§1Te§2st", "§1Test", "dark_blue");
|
|
|
|
checkFormatPerms("&1Te&2st", "&1Te§2st", "dark_green");
|
|
checkFormatPerms("§1Te§2st", "Te§2st", "dark_green");
|
|
|
|
checkFormatPerms("&1Te&2st", "§1Te§2st", "dark_blue", "dark_green");
|
|
checkFormatPerms("§1Te§2st", "§1Te§2st", "dark_blue", "dark_green");
|
|
|
|
// Obfuscated behaves the same as magic
|
|
checkFormatPerms("&kFUNKY LOL", "§kFUNKY LOL", "obfuscated");
|
|
checkFormatPerms("§kFUNKY LOL", "§kFUNKY LOL", "obfuscated");
|
|
}
|
|
|
|
@Test
|
|
public void testFormatAddRemovePerms() {
|
|
checkFormatPerms("&1Te&2st&ling", "&1Te§2st&ling", "color", "-dark_blue");
|
|
checkFormatPerms("§1Te§2st§ling", "Te§2sting", "color", "-dark_blue");
|
|
|
|
// Nothing happens when negated without being previously present
|
|
checkFormatPerms("&1Te&2st&ling", "&1Te§2st&ling", "color", "-dark_blue", "-bold");
|
|
checkFormatPerms("§1Te§2st§ling", "Te§2sting", "color", "-dark_blue", "-bold");
|
|
}
|
|
|
|
@Test
|
|
public void testFormatEscaping() {
|
|
// Don't do anything to non-format codes
|
|
checkFormatPerms("True & false", "True & false");
|
|
checkFormatPerms("True && false", "True && false");
|
|
|
|
// Formats are only unescaped if you have the right perms
|
|
checkFormatPerms("This is &&a message", "This is &&a message");
|
|
checkFormatPerms("This is &&a message", "This is &a message", "color");
|
|
|
|
// Can't put an & before a non-escaped format
|
|
checkFormatPerms("This is &&&a message", "This is &&&a message");
|
|
checkFormatPerms("This is &&&a message", "This is &&a message", "color");
|
|
}
|
|
|
|
private void checkFormatPerms(String input, String expectedOutput, String... perms) {
|
|
IUser user = mock(IUser.class);
|
|
for (String perm : perms) {
|
|
if (perm.startsWith("-")) {
|
|
// Negated perms
|
|
perm = perm.substring(1);
|
|
when(user.isAuthorized("essentials.chat." + perm)).thenReturn(false);
|
|
} else {
|
|
when(user.isAuthorized("essentials.chat." + perm)).thenReturn(true);
|
|
}
|
|
|
|
when(user.isPermissionSet("essentials.chat." + perm)).thenReturn(true);
|
|
}
|
|
assertEquals(expectedOutput, FormatUtil.formatString(user, "essentials.chat", input));
|
|
}
|
|
}
|