blob: 5249b8c52c5e0e93ebb1167a60796f6ab1e48aee (
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.slick.protocol.msn;
import java.util.*;
import junit.framework.*;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.slick.protocol.generic.*;
/**
* Tests for the MSN ad-hoc multi-user chat operation set.
*
* @author Valentin Martinet
*/
public class TestOperationSetAdHocMultiUserChatMsnImpl
extends TestOperationSetAdHocMultiUserChat
{
/**
* Creates the test with the specified method name.
*
* @param name the name of the method to execute.
*/
public TestOperationSetAdHocMultiUserChatMsnImpl(String name)
{
super(name);
}
/**
* Creates a test suite containing tests of this class in a specific order.
*
* @return Test a tests suite containing all tests to execute.
*/
public static TestSuite suite()
{
TestSuite suite = new TestSuite();
suite.addTest(new TestOperationSetAdHocMultiUserChatMsnImpl(
"testRegisterAccount3"));
suite.addTest(new TestOperationSetAdHocMultiUserChatMsnImpl(
"prepareContactList"));
suite.addTest(new TestOperationSetAdHocMultiUserChatMsnImpl(
"testCreateRoom"));
suite.addTest(new TestOperationSetAdHocMultiUserChatMsnImpl(
"testPeerJoined"));
suite.addTest(new TestOperationSetAdHocMultiUserChatMsnImpl(
"testSendIM"));
suite.addTest(new TestOperationSetAdHocMultiUserChatMsnImpl(
"testPeerLeaved"));
return suite;
}
public void testRegisterAccount3() throws OperationFailedException
{
fixture.provider3.register(
new SecurityAuthorityImpl(
System.getProperty(
MsnProtocolProviderServiceLick.ACCOUNT_3_PREFIX
+ ProtocolProviderFactory.PASSWORD).toCharArray()));
assertEquals(fixture.provider3.getRegistrationState(),
RegistrationState.REGISTERED);
}
@Override
public void start() throws Exception
{
fixture = new MsnSlickFixture();
fixture.setUp();
// Supported operation sets by each protocol provider.
Map<String, OperationSet>
supportedOpSets1, supportedOpSets2, supportedOpSets3;
supportedOpSets1 = fixture.provider1.getSupportedOperationSets();
supportedOpSets2 = fixture.provider2.getSupportedOperationSets();
supportedOpSets3 = fixture.provider3.getSupportedOperationSets();
//
// Initialization of operation sets for the first testing account:
//
if (supportedOpSets1 == null || supportedOpSets1.size() < 1)
throw new NullPointerException(
"No OperationSet implementations are supported by " +
"this implementation. ");
opSetAHMUC1 = (OperationSetAdHocMultiUserChat) supportedOpSets1.get(
OperationSetAdHocMultiUserChat.class.getName());
if (opSetAHMUC1 == null)
throw new NullPointerException(
"No implementation for multi user chat was found");
opSetPresence1 = (OperationSetPresence) supportedOpSets1.get(
OperationSetPresence.class.getName());
if (opSetPresence1 == null)
throw new NullPointerException(
"An implementation of the service must provide an " +
"implementation of at least one of the PresenceOperationSets");
//
// Initialization of operation sets for the second testing account:
//
if (supportedOpSets2 == null || supportedOpSets2.size() < 1)
throw new NullPointerException(
"No OperationSet implementations are supported by " +
"this implementation. ");
opSetAHMUC2 = (OperationSetAdHocMultiUserChat) supportedOpSets2.get(
OperationSetAdHocMultiUserChat.class.getName());
if (opSetAHMUC2 == null)
throw new NullPointerException(
"No implementation for ad hoc multi user chat was found");
opSetPresence2 = (OperationSetPresence) supportedOpSets2.get(
OperationSetPresence.class.getName());
if (opSetPresence2 == null)
throw new NullPointerException(
"An implementation of the service must provide an " +
"implementation of at least one of the PresenceOperationSets");
//
// Initialization of operation sets for the third testing account:
//
if (supportedOpSets3 == null || supportedOpSets3.size() < 1)
throw new NullPointerException(
"No OperationSet implementations are supported by " +
"this implementation. ");
opSetAHMUC3 = (OperationSetAdHocMultiUserChat) supportedOpSets3.get(
OperationSetAdHocMultiUserChat.class.getName());
if (opSetAHMUC3 == null)
throw new NullPointerException(
"No implementation for ad hoc multi user chat was found");
opSetPresence3 = (OperationSetPresence) supportedOpSets3.get(
OperationSetPresence.class.getName());
if (opSetPresence3 == null)
throw new NullPointerException(
"An implementation of the service must provide an " +
"implementation of at least one of the PresenceOperationSets");
}
}
|