summaryrefslogtreecommitdiffstats
blob: bcd617af813599abf29a47d3781b33a8ae920b3c (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
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * 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;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import org.junit.Before;
import com.isode.stroke.parser.PayloadParserFactoryCollection;
import com.isode.stroke.parser.StanzaParserTester;
import com.isode.stroke.parser.PresenceParser;
import com.isode.stroke.elements.Presence;

public class PresenceParserTest {

	private PayloadParserFactoryCollection factoryCollection_;

	public PresenceParserTest() {

	}

	@Before
	public void setUp() {
		factoryCollection_ = new PayloadParserFactoryCollection();
	}

	@Test
	public void testParse_Available() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence/>"));

		assertEquals(Presence.Type.Available, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Unavailable() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"unavailable\"/>"));

		assertEquals(Presence.Type.Unavailable, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Probe() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"probe\"/>"));

		assertEquals(Presence.Type.Probe, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Subscribe() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"subscribe\"/>"));

		assertEquals(Presence.Type.Subscribe, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Subscribed() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"subscribed\"/>"));

		assertEquals(Presence.Type.Subscribed, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Unsubscribe() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"unsubscribe\"/>"));

		assertEquals(Presence.Type.Unsubscribe, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Unsubscribed() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"unsubscribed\"/>"));

		assertEquals(Presence.Type.Unsubscribed, testling.getStanzaGeneric().getType());
	}

	@Test
	public void testParse_Error() {
		PresenceParser testling = new PresenceParser(factoryCollection_);
		StanzaParserTester parser = new StanzaParserTester(testling);

		assertTrue(parser.parse("<presence type=\"error\"/>"));

		assertEquals(Presence.Type.Error, testling.getStanzaGeneric().getType());
	}
}