mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-10 17:49:38 +02:00
SMACK-289 Added functionality for retrieving items when the user has multiple subscriptions
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11579 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
e600fb02f5
commit
11a41e79ca
6 changed files with 189 additions and 26 deletions
|
@ -1,8 +1,10 @@
|
|||
package org.jivesoftware.smackx.pubsub;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import org.jivesoftware.smack.XMPPException;
|
||||
import org.jivesoftware.smack.packet.XMPPError;
|
||||
import org.jivesoftware.smackx.pubsub.test.PubSubTestCase;
|
||||
|
||||
public class MultiUserSubscriptionUseCases extends PubSubTestCase
|
||||
|
@ -29,4 +31,31 @@ public class MultiUserSubscriptionUseCases extends PubSubTestCase
|
|||
Collection<? extends Item> items = user2Node.getItems();
|
||||
assertTrue(items.size() == 5);
|
||||
}
|
||||
|
||||
public void testGetItemsWithMultiSubscription() throws XMPPException
|
||||
{
|
||||
LeafNode node = getRandomPubnode(getManager(0), true, false);
|
||||
node.send((Item)null);
|
||||
node.send((Item)null);
|
||||
node.send((Item)null);
|
||||
node.send((Item)null);
|
||||
node.send((Item)null);
|
||||
|
||||
LeafNode user2Node = (LeafNode) getManager(1).getNode(node.getId());
|
||||
Subscription sub1 = user2Node.subscribe(getBareJID(1));
|
||||
|
||||
Subscription sub2 = user2Node.subscribe(getBareJID(1));
|
||||
|
||||
try
|
||||
{
|
||||
user2Node.getItems();
|
||||
}
|
||||
catch (XMPPException exc)
|
||||
{
|
||||
assertEquals("bad-request", exc.getXMPPError().getCondition());
|
||||
assertEquals(XMPPError.Type.MODIFY, exc.getXMPPError().getType());
|
||||
}
|
||||
List<Item> items = user2Node.getItems(sub1.getId());
|
||||
assertTrue(items.size() == 5);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue