mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Bump jxmpp to 0.5.0-alpha2
This commit is contained in:
parent
516e397679
commit
0b322419ce
2 changed files with 1 additions and 36 deletions
|
@ -36,7 +36,6 @@ import org.junit.Test;
|
||||||
import org.junit.rules.TemporaryFolder;
|
import org.junit.rules.TemporaryFolder;
|
||||||
import org.jxmpp.jid.Jid;
|
import org.jxmpp.jid.Jid;
|
||||||
import org.jxmpp.jid.JidTestUtil;
|
import org.jxmpp.jid.JidTestUtil;
|
||||||
import org.jxmpp.jid.impl.JidCreate;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests the implementation of {@link DirectoryRosterStore}.
|
* Tests the implementation of {@link DirectoryRosterStore}.
|
||||||
|
@ -190,38 +189,4 @@ public class DirectoryRosterStoreTest {
|
||||||
assertEquals("Number of entries", 1, entries.size());
|
assertEquals("Number of entries", 1, entries.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Tests adding entries with evil characters
|
|
||||||
*/
|
|
||||||
@Test
|
|
||||||
public void testAddEvilChars() throws IOException {
|
|
||||||
File storeDir = tmpFolder.newFolder();
|
|
||||||
DirectoryRosterStore store = DirectoryRosterStore.init(storeDir);
|
|
||||||
|
|
||||||
Jid user = JidCreate.from(".._#;'&@example.com");
|
|
||||||
String name = "\n../_#\0\t;\"'&@\\";
|
|
||||||
String group1 = "\t;\"'&@\\\n../_#\0";
|
|
||||||
String group2 = "#\0\t;\"'&@\\\n../_";
|
|
||||||
|
|
||||||
Item item = new Item(user, name);
|
|
||||||
item.setItemStatus(ItemStatus.unsubscribe);
|
|
||||||
item.setItemType(ItemType.to);
|
|
||||||
item.addGroupName(group1);
|
|
||||||
item.addGroupName(group2);
|
|
||||||
store.addEntry(item, "a-version");
|
|
||||||
Item storedItem = store.getEntry(user);
|
|
||||||
|
|
||||||
assertNotNull("Added entry not found", storedItem);
|
|
||||||
assertEquals("User of added entry",
|
|
||||||
item.getUser(), storedItem.getUser());
|
|
||||||
assertEquals("Name of added entry",
|
|
||||||
item.getName(), storedItem.getName());
|
|
||||||
assertEquals("Groups", item.getGroupNames(), storedItem.getGroupNames());
|
|
||||||
assertEquals("ItemType of added entry",
|
|
||||||
item.getItemType(), storedItem.getItemType());
|
|
||||||
assertEquals("ItemStatus of added entry",
|
|
||||||
item.getItemStatus(), storedItem.getItemStatus());
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ allprojects {
|
||||||
ext {
|
ext {
|
||||||
shortVersion = '4.2.0-alpha2'
|
shortVersion = '4.2.0-alpha2'
|
||||||
isSnapshot = true
|
isSnapshot = true
|
||||||
jxmppVersion = '0.5.0-alpha1'
|
jxmppVersion = '0.5.0-alpha2'
|
||||||
smackMinAndroidSdk = 8
|
smackMinAndroidSdk = 8
|
||||||
|
|
||||||
// The baseline version to check the API's binary
|
// The baseline version to check the API's binary
|
||||||
|
|
Loading…
Reference in a new issue