summaryrefslogtreecommitdiffstats
blob: 004f68f65cdbd5b66d45193d536a5226e9e104ec (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.parser.payloadparsers;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import org.junit.Test;
import com.isode.stroke.elements.PrivateStorage;
import com.isode.stroke.elements.Storage;
import com.isode.stroke.parser.payloadparsers.PrivateStorageParser;
import com.isode.stroke.parser.payloadparsers.PayloadsParserTester;
import com.isode.stroke.parser.payloadparsers.PayloadParserTester;
import com.isode.stroke.parser.PayloadParserFactoryCollection;
import com.isode.stroke.eventloop.DummyEventLoop;
import com.isode.stroke.jid.JID;

public class PrivateStorageParserTest {

	public PrivateStorageParserTest() {

	}

	@Test
	public void testParse() {
		DummyEventLoop eventLoop = new DummyEventLoop();
		PayloadsParserTester parser = new PayloadsParserTester(eventLoop);

		assertNotNull(parser.parse(
			"<query xmlns='jabber:iq:private'>"
		+		"<storage xmlns='storage:bookmarks'>"
		+			"<conference name='Swift' jid='swift@rooms.swift.im'>"
		+				"<nick>Alice</nick>"
		+			"</conference>"
		+		"</storage>"
		+	"</query>"));

		PrivateStorage payload = (PrivateStorage)(parser.getPayload());
		assertNotNull(payload);
		Storage storage = (Storage)(payload.getPayload());
		assertNotNull(storage);
		assertEquals("Alice", storage.getRooms().get(0).nick);
		assertEquals(new JID("swift@rooms.swift.im"), storage.getRooms().get(0).jid);
	}

	@Test
	public void testParse_NoPayload() {
		DummyEventLoop eventLoop = new DummyEventLoop();
		PayloadsParserTester parser = new PayloadsParserTester(eventLoop);

		assertNotNull(parser.parse("<query xmlns='jabber:iq:private'/>"));

		PrivateStorage payload = (PrivateStorage)(parser.getPayload());
		assertNotNull(payload);
		assertNull(payload.getPayload());
	}

	@Test
	public void testParse_MultiplePayloads() {
		DummyEventLoop eventLoop = new DummyEventLoop();
		PayloadsParserTester parser = new PayloadsParserTester(eventLoop);

		assertNotNull(parser.parse(
			"<query xmlns='jabber:iq:private'>"
		+		"<storage xmlns='storage:bookmarks'>"
		+			"<conference name='Swift' jid='swift@rooms.swift.im'>"
		+				"<nick>Alice</nick>"
		+			"</conference>"
		+		"</storage>"
		+		"<storage xmlns='storage:bookmarks'>"
		+			"<conference name='Swift' jid='swift@rooms.swift.im'>"
		+				"<nick>Rabbit</nick>"
		+			"</conference>"
		+		"</storage>"
		+	"</query>"));

		PrivateStorage payload = (PrivateStorage)(parser.getPayload());
		assertNotNull(payload);
		Storage storage = (Storage)(payload.getPayload());
		assertNotNull(storage);
		assertEquals("Rabbit", storage.getRooms().get(0).nick);
	}

	@Test
	public void testParse_UnsupportedPayload() {
		PayloadParserFactoryCollection factories = new PayloadParserFactoryCollection();
		PrivateStorageParser testling = new PrivateStorageParser(factories);
		PayloadParserTester parser = new PayloadParserTester(testling);

		assertNotNull(parser.parse(
			"<query xmlns='jabber:iq:private'>" +
				"<foo>Bar</foo>" +
			"</query>"));

		assertNull(((PrivateStorage)(testling.getPayload())).getPayload());
	}
}