Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IqRosterPushTest.php « db « integration « tests - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6e8c0daf34bd817d68738938eaac2b43230e13c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
namespace OCA\OJSXC\Db;

use Sabre\Xml\Writer;
use OCA\OJSXC\Utility\TestCase;

class IqRosterPushTest extends TestCase
{
	public function testIqRoster()
	{
		$expected = '<body xmlns="http://jabber.org/protocol/httpbind"><iq to="jan@localhost" type="set" id="4"><query xmlns="jabber:iq:roster"><item jid="john@localhost" name="john" subscription="both"></item></query></iq></body>';

		$writer = new Writer();
		$writer->openMemory();
		$writer->startElement('body');
		$writer->writeAttribute('xmlns', 'http://jabber.org/protocol/httpbind');

		$iqRosterPush = new IQRosterPush();
		$iqRosterPush->setJid('john@localhost');
		$iqRosterPush->setTo('jan@localhost');
		$iqRosterPush->setName('john');
		$iqRosterPush->setSubscription('both');

		$this->assertEquals($iqRosterPush->getJid(), 'john@localhost');
		$this->assertEquals($iqRosterPush->getTo(), 'jan@localhost');
		$this->assertEquals($iqRosterPush->getName(), 'john');
		$this->assertEquals($iqRosterPush->getSubscription(), 'both');

		$writer->write($iqRosterPush); // needed to test the xmlSerialize function

		$writer->endElement();
		$result = $writer->outputMemory();

		$this->assertEquals($expected, $result);
	}
}