blob: 3f66045cb444982b44c30e4acda499a8cafcc9c7 (
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.java.sip.communicator.slick.protocol.yahoo;
import java.util.*;
import junit.framework.*;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.slick.protocol.generic.*;
/**
* Tests for the Yahoo! ad-hoc multi-user chat operation set.
*
* @author Valentin Martinet
*/
public class TestOperationSetAdHocMultiUserChatYahooImpl
extends TestOperationSetAdHocMultiUserChat
{
/**
* Creates the test with the specified method name.
*
* @param name the name of the method to execute.
*/
public TestOperationSetAdHocMultiUserChatYahooImpl(String name)
{
super(name);
}
/**
* Creates a test suite containing tests of this class in a specific order.
*
* @return Test a testsuite containing all tests to execute.
*/
public static TestSuite suite()
{
TestSuite suite = new TestSuite();
suite.addTest(new TestOperationSetAdHocMultiUserChatYahooImpl(
"testRegisterAccount3"));
suite.addTest(new TestOperationSetAdHocMultiUserChatYahooImpl(
"prepareContactList"));
suite.addTest(new TestOperationSetAdHocMultiUserChatYahooImpl(
"testCreateRoomWithParticipants"));
suite.addTest(new TestOperationSetAdHocMultiUserChatYahooImpl(
"testInvitations"));
suite.addTest(new TestOperationSetAdHocMultiUserChatYahooImpl(
"testSendIM"));
suite.addTest(new TestOperationSetAdHocMultiUserChatYahooImpl(
"testPeerLeaved"));
return suite;
}
/**
* Register the third testing account.
*
* @throws OperationFailedException
*/
public void testRegisterAccount3() throws OperationFailedException
{
fixture.provider3.register(
new SecurityAuthorityImpl(
System.getProperty(
YahooProtocolProviderServiceLick.ACCOUNT_3_PREFIX
+ ProtocolProviderFactory.PASSWORD).toCharArray()));
assertEquals(fixture.provider3.getRegistrationState(),
RegistrationState.REGISTERED);
}
/**
* JUnit setUp method.
* @throws Exception
*
* @throws Exception
*/
@Override
public void start() throws Exception
{
fixture = new YahooSlickFixture();
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");
}
}
|