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

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

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

Loading…
Cancel
Save