Enable sip tests, telephony and messaging (without presence).

cusax-fix
Damian Minkov 16 years ago
parent 8c2dae7364
commit 030f0ea5b3

@ -21,6 +21,7 @@ net.java.sip.communicator.slick.runner.TEST_LIST=ConfigurationServiceLick \
JabberProtocolProviderSlick \
YahooProtocolProviderSlick \
MsnProtocolProviderSlick \
SipProtocolProviderServiceLick \
GibberishProtocolProviderServiceLick \
RssProtocolProviderServiceLick \
PopupMessageHandlerSLick
@ -35,7 +36,6 @@ net.java.sip.communicator.slick.runner.TEST_LIST=ConfigurationServiceLick \
# because the addSuite calls are commented-out in start().
#
# MediaServiceLick because one of the 2 tests fails.
# SipProtocolProviderServiceLick
#
# GenericProtocolProviderServiceLick because it does not add any tests.
#

@ -80,13 +80,13 @@ public void start(BundleContext context)
addTestSuite(TestProtocolProviderServiceSipImpl.class);
// presence tests
addTest(TestOperationSetPresence.suite());
// addTest(TestOperationSetPresence.suite());
// only in online mode
if (!SipSlickFixture.onlineTestingDisabled) {
if (!SipSlickFixture.onlineTestingDisabled)
{
// persistent presence
addTest(TestOperationSetPersistentPresence.suite());
// addTest(TestOperationSetPersistentPresence.suite());
//IM test
addTest(TestOperationSetBasicInstantMessaging.suite());

@ -317,5 +317,10 @@ public void clearProvidersLists()
}
citer = rootGroup2.contacts();
}
// be gentle to servers
synchronized(lock){
lock.wait(5000);
}
}
}

Loading…
Cancel
Save