changeset 3744:1cfc8012a76f

mod_bookmarks2: Add tests.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 13 Nov 2019 16:57:35 +0100
parents 5eab799b5fa4
children e43a82ddde12
files mod_bookmarks2/tests/bookmarks2.scs mod_bookmarks2/tests/conversion.scs
diffstat 2 files changed, 433 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_bookmarks2/tests/bookmarks2.scs	Wed Nov 13 16:57:35 2019 +0100
@@ -0,0 +1,180 @@
+# Pubsub: Bookmarks 2.0
+
+[Client] Juliet
+	jid: admin@localhost
+	password: password
+
+// admin@localhost is assumed to have node creation privileges
+
+---------
+
+Juliet connects
+
+-- Generated with https://gitlab.com/xmpp-rs/xmpp-parsers:
+-- cargo run --example=generate-caps https://code.matthewwild.co.uk/scansion/ <<< "<query xmlns='http://jabber.org/protocol/disco#info'><identity category='client' name='scansion' type='bot'/><feature var='http://jabber.org/protocol/disco#info'/><feature var='urn:xmpp:bookmarks:0+notify'/></query>"
+Juliet sends:
+	<presence id='presence0'>
+		<c xmlns='http://jabber.org/protocol/caps'
+		   hash='sha-1'
+		   node='https://code.matthewwild.co.uk/scansion/'
+		   ver='Tg9qGTn5+LdKR6TTdjCUMVohBMc='/>
+		<c xmlns='urn:xmpp:caps'>
+			<hash xmlns='urn:xmpp:hashes:2' algo='sha-256'>5a5oTk21S9EmWQGIyuMwPKuSkPwqmXv6aKO5ftqCw/Q=</hash>
+			<hash xmlns='urn:xmpp:hashes:2' algo='sha3-256'>f3ziwT4vDK+VxuWrhhPEEgI3HJcEw7Zg4MggYE6vjZ0=</hash>
+		</c>
+	</presence>
+
+Juliet receives:
+	<iq from="${Juliet's JID}" id='disco' type='get'>
+		<query xmlns='http://jabber.org/protocol/disco#info' node='https://code.matthewwild.co.uk/scansion/#Tg9qGTn5+LdKR6TTdjCUMVohBMc='/>
+	</iq>
+
+Juliet sends:
+	<iq to="${Juliet's JID}" id='disco' type='result'>
+		<query xmlns='http://jabber.org/protocol/disco#info' node='https://code.matthewwild.co.uk/scansion/#Tg9qGTn5+LdKR6TTdjCUMVohBMc='>
+			<identity category='client' name='scansion' type='bot'/>
+			<feature var='http://jabber.org/protocol/disco#info'/>
+			<feature var='urn:xmpp:bookmarks:0+notify'/>
+		</query>
+	</iq>
+
+Juliet sends:
+	<iq type='set' id='pub0'>
+		<pubsub xmlns='http://jabber.org/protocol/pubsub'>
+			<publish node='urn:xmpp:bookmarks:0'>
+				<item id='theplay@conference.shakespeare.lit'>
+					<conference xmlns='urn:xmpp:bookmarks:0'
+					            name='The Play&apos;s the Thing'
+					            autojoin='true'>
+						<nick>JC</nick>
+					</conference>
+				</item>
+			</publish>
+			<publish-options>
+				<x xmlns='jabber:x:data' type='submit'>
+					<field var='FORM_TYPE' type='hidden'>
+						<value>http://jabber.org/protocol/pubsub#publish-options</value>
+					</field>
+					<field var='pubsub#persist_items'>
+						<value>true</value>
+					</field>
+					<field var='pubsub#max_items'>
+						<value>255</value>
+					</field>
+					<field var='pubsub#send_last_published_item'>
+						<value>never</value>
+					</field>
+					<field var='pubsub#access_model'>
+						<value>whitelist</value>
+					</field>
+				</x>
+			</publish-options>
+		</pubsub>
+	</iq>
+
+Juliet receives:
+	<message type='headline' from="${Juliet's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<items node='urn:xmpp:bookmarks:0'>
+				<item id='theplay@conference.shakespeare.lit'>
+					<conference xmlns='urn:xmpp:bookmarks:0'
+					            name='The Play&apos;s the Thing'
+					            autojoin='true'>
+						<nick>JC</nick>
+					</conference>
+				</item>
+			</items>
+		</event>
+	</message>
+
+Juliet receives:
+	<iq type='result' id='pub0'>
+		<pubsub xmlns='http://jabber.org/protocol/pubsub'>
+			<publish node='urn:xmpp:bookmarks:0'>
+				<item id='theplay@conference.shakespeare.lit'/>
+			</publish>
+		</pubsub>
+	</iq>
+
+Juliet sends:
+	<iq type='set' id='pub1'>
+		<pubsub xmlns='http://jabber.org/protocol/pubsub'>
+			<publish node='urn:xmpp:bookmarks:0'>
+				<item id='orchard@conference.shakespeare.lit'>
+					<conference xmlns='urn:xmpp:bookmarks:0'
+					            name='The Orchard'
+					            autojoin='true'>
+						<nick>JC</nick>
+					</conference>
+				</item>
+			</publish>
+			<publish-options>
+				<x xmlns='jabber:x:data' type='submit'>
+					<field var='FORM_TYPE' type='hidden'>
+						<value>http://jabber.org/protocol/pubsub#publish-options</value>
+					</field>
+					<field var='pubsub#persist_items'>
+						<value>true</value>
+					</field>
+					<field var='pubsub#max_items'>
+						<value>255</value>
+					</field>
+					<field var='pubsub#send_last_published_item'>
+						<value>never</value>
+					</field>
+					<field var='pubsub#access_model'>
+						<value>whitelist</value>
+					</field>
+				</x>
+			</publish-options>
+		</pubsub>
+	</iq>
+
+Juliet receives:
+	<message type='headline' from="${Juliet's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<items node='urn:xmpp:bookmarks:0'>
+				<item id='orchard@conference.shakespeare.lit'>
+					<conference xmlns='urn:xmpp:bookmarks:0'
+					            name='The Orchard'
+					            autojoin='true'>
+						<nick>JC</nick>
+					</conference>
+				</item>
+			</items>
+		</event>
+	</message>
+
+Juliet receives:
+	<iq type='result' id='pub1'>
+		<pubsub xmlns='http://jabber.org/protocol/pubsub'>
+			<publish node='urn:xmpp:bookmarks:0'>
+				<item id='orchard@conference.shakespeare.lit'/>
+			</publish>
+		</pubsub>
+	</iq>
+
+Juliet sends:
+	<iq type='set' id='retract0'>
+		<pubsub xmlns='http://jabber.org/protocol/pubsub'>
+			<retract node='urn:xmpp:bookmarks:0' notify='1'>
+				<item id='theplay@conference.shakespeare.lit'/>
+			</retract>
+		</pubsub>
+	</iq>
+
+Juliet receives:
+	<message type='headline' from="${Juliet's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<items node='urn:xmpp:bookmarks:0'>
+				<retract id='theplay@conference.shakespeare.lit'/>
+			</items>
+		</event>
+	</message>
+
+Juliet receives:
+	<iq type='result' id='retract0'/>
+
+Juliet disconnects
+
+// vim: syntax=xml:
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_bookmarks2/tests/conversion.scs	Wed Nov 13 16:57:35 2019 +0100
@@ -0,0 +1,253 @@
+# Pubsub: Bookmarks 2.0
+
+[Client] Juliet-old
+	jid: admin@localhost
+	password: password
+
+[Client] Juliet-new
+	jid: admin@localhost
+	password: password
+
+// admin@localhost is assumed to have node creation privileges
+
+---------
+
+Juliet-new connects
+
+-- Generated with https://gitlab.com/xmpp-rs/xmpp-parsers:
+-- cargo run --example=generate-caps https://code.matthewwild.co.uk/scansion/ <<< "<query xmlns='http://jabber.org/protocol/disco#info'><identity category='client' name='scansion' type='bot'/><feature var='http://jabber.org/protocol/disco#info'/><feature var='urn:xmpp:bookmarks:0+notify'/></query>"
+Juliet-new sends:
+	<presence id='presence0'>
+		<c xmlns='http://jabber.org/protocol/caps'
+		   hash='sha-1'
+		   node='https://code.matthewwild.co.uk/scansion/'
+		   ver='Tg9qGTn5+LdKR6TTdjCUMVohBMc='/>
+		<c xmlns='urn:xmpp:caps'>
+			<hash xmlns='urn:xmpp:hashes:2' algo='sha-256'>5a5oTk21S9EmWQGIyuMwPKuSkPwqmXv6aKO5ftqCw/Q=</hash>
+			<hash xmlns='urn:xmpp:hashes:2' algo='sha3-256'>f3ziwT4vDK+VxuWrhhPEEgI3HJcEw7Zg4MggYE6vjZ0=</hash>
+		</c>
+	</presence>
+
+Juliet-new receives:
+	<iq from="${Juliet-new's JID}" id='disco' type='get'>
+		<query xmlns='http://jabber.org/protocol/disco#info' node='https://code.matthewwild.co.uk/scansion/#Tg9qGTn5+LdKR6TTdjCUMVohBMc='/>
+	</iq>
+
+Juliet-new sends:
+	<iq to="${Juliet-new's JID}" id='disco' type='result'>
+		<query xmlns='http://jabber.org/protocol/disco#info' node='https://code.matthewwild.co.uk/scansion/#Tg9qGTn5+LdKR6TTdjCUMVohBMc='>
+			<identity category='client' name='scansion' type='bot'/>
+			<feature var='http://jabber.org/protocol/disco#info'/>
+			<feature var='urn:xmpp:bookmarks:0+notify'/>
+		</query>
+	</iq>
+
+Juliet-old connects
+
+Juliet-old sends:
+	<iq type='get' id='get0'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old receives:
+	<iq type='result' id='get0'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old sends:
+	<iq type='set' id='pub0'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'>
+				<conference name='The Play&apos;s the Thing'
+					    autojoin='true'
+					    jid='theplay@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+			</storage>
+		</query>
+	</iq>
+
+Juliet-new receives:
+	<message type='headline' from="${Juliet-new's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<items node='urn:xmpp:bookmarks:0'>
+				<item id='theplay@conference.shakespeare.lit'>
+					<conference xmlns='urn:xmpp:bookmarks:0'
+					            name='The Play&apos;s the Thing'
+					            autojoin='true'>
+						<nick>JC</nick>
+					</conference>
+				</item>
+			</items>
+		</event>
+	</message>
+
+Juliet-old receives:
+	<iq type='result' id='pub0'/>
+
+Juliet-old sends:
+	<iq type='get' id='get1'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old receives:
+	<iq type='result' id='get1'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'>
+				<conference name='The Play&apos;s the Thing'
+					    autojoin='true'
+					    jid='theplay@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+			</storage>
+		</query>
+	</iq>
+
+Juliet-old sends:
+	<iq type='set' id='pub1'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'>
+				<conference name='The Play&apos;s the Thing'
+					    autojoin='true'
+					    jid='theplay@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+				<conference name='The Orchard'
+					    autojoin='true'
+					    jid='orchard@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+			</storage>
+		</query>
+	</iq>
+
+Juliet-new receives:
+	<message type='headline' from="${Juliet-new's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<items node='urn:xmpp:bookmarks:0'>
+				<item id='orchard@conference.shakespeare.lit'>
+					<conference xmlns='urn:xmpp:bookmarks:0'
+					            name='The Orchard'
+					            autojoin='true'>
+						<nick>JC</nick>
+					</conference>
+				</item>
+			</items>
+		</event>
+	</message>
+
+Juliet-old receives:
+	<iq type='result' id='pub1'/>
+
+Juliet-old sends:
+	<iq type='get' id='get2'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old receives:
+	<iq type='result' id='get2'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'>
+				<conference name='The Play&apos;s the Thing'
+					    autojoin='true'
+					    jid='theplay@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+				<conference name='The Orchard'
+					    autojoin='true'
+					    jid='orchard@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+			</storage>
+		</query>
+	</iq>
+
+Juliet-old sends:
+	<iq type='set' id='retract0'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'>
+				<conference name='The Orchard'
+					    autojoin='true'
+					    jid='orchard@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+			</storage>
+		</query>
+	</iq>
+
+Juliet-new receives:
+	<message type='headline' from="${Juliet-new's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<items node='urn:xmpp:bookmarks:0'>
+				<retract id='theplay@conference.shakespeare.lit'/>
+			</items>
+		</event>
+	</message>
+
+Juliet-old receives:
+	<iq type='result' id='retract0'/>
+
+Juliet-old sends:
+	<iq type='get' id='get3'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old receives:
+	<iq type='result' id='get3'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'>
+				<conference name='The Orchard'
+					    autojoin='true'
+					    jid='orchard@conference.shakespeare.lit'>
+					<nick>JC</nick>
+				</conference>
+			</storage>
+		</query>
+	</iq>
+
+Juliet-old sends:
+	<iq type='set' id='purge0'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-new receives:
+	<message type='headline' from="${Juliet-new's JID}">
+		<event xmlns='http://jabber.org/protocol/pubsub#event'>
+			<purge node='urn:xmpp:bookmarks:0'/>
+		</event>
+	</message>
+
+Juliet-old receives:
+	<iq type='result' id='purge0'/>
+
+Juliet-old sends:
+	<iq type='get' id='get4'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old receives:
+	<iq type='result' id='get4'>
+		<query xmlns='jabber:iq:private'>
+			<storage xmlns='storage:bookmarks'/>
+		</query>
+	</iq>
+
+Juliet-old disconnects
+
+Juliet-new disconnects
+
+// vim: syntax=xml: