Skip to content

Commit 9686784

Browse files
committed
Removed unstable category from TestDialVerb* test classes in order to see results
This refer to #RESTCOMM-1487
1 parent 879022a commit 9686784

2 files changed

Lines changed: 4 additions & 11 deletions

File tree

restcomm/restcomm.testsuite/src/test/java/org/restcomm/connect/testsuite/telephony/TestDialVerbPartThree.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import org.restcomm.connect.commons.annotations.ParallelClassTests;
4747
import org.restcomm.connect.commons.annotations.WithInMinsTests;
4848
import org.restcomm.connect.testsuite.NetworkPortAssigner;
49-
import org.restcomm.connect.commons.annotations.UnstableTests;
5049
import org.restcomm.connect.testsuite.WebArchiveUtil;
5150

5251
/**
@@ -169,7 +168,7 @@ public void after() throws Exception {
169168

170169
//Non regression test for https://github.com/Mobicents/RestComm/issues/612
171170
@Test
172-
@Category({UnstableTests.class, FeatureAltTests.class})
171+
@Category({FeatureAltTests.class})
173172
public synchronized void testRecord_ExecuteRCML_ReturnedFromActionURL() throws InterruptedException, ParseException {
174173

175174
stubFor(get(urlPathEqualTo("/1111"))
@@ -231,7 +230,7 @@ public synchronized void testRecord_ExecuteRCML_ReturnedFromActionURL() throws I
231230

232231
//Non regression test for https://github.com/Mobicents/RestComm/issues/612
233232
@Test
234-
@Category({UnstableTests.class, FeatureAltTests.class})
233+
@Category({FeatureAltTests.class})
235234
public synchronized void testRecord_ExecuteRCML_ReturnedFromActionURLWithNullFinishOnKey() throws InterruptedException, ParseException {
236235

237236
stubFor(get(urlPathEqualTo("/1111"))
@@ -339,7 +338,6 @@ public synchronized void testDialWithCustomHeaders() throws InterruptedException
339338
}
340339

341340
@Test
342-
@Category(UnstableTests.class)
343341
// Non regression test for https://bitbucket.org/telestax/telscale-restcomm/issue/132/implement-twilio-sip-out
344342
public synchronized void testDialSip() throws InterruptedException, ParseException {
345343
stubFor(get(urlPathEqualTo("/1111"))

restcomm/restcomm.testsuite/src/test/java/org/restcomm/connect/testsuite/telephony/TestDialVerbPartTwo.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
import org.restcomm.connect.commons.annotations.ParallelClassTests;
5858
import org.restcomm.connect.commons.annotations.WithInMinsTests;
5959
import org.restcomm.connect.testsuite.NetworkPortAssigner;
60-
import org.restcomm.connect.commons.annotations.UnstableTests;
6160
import org.restcomm.connect.testsuite.WebArchiveUtil;
6261

6362
/**
@@ -253,7 +252,6 @@ public synchronized void testDialClientAliceToBigDID() throws InterruptedExcepti
253252
"\t\t\t<Sms to=\"bob\" from=\"+12223334499\">Hello World!</Sms>\n" +
254253
"</Response>";
255254
@Test
256-
@Category(UnstableTests.class)
257255
public synchronized void testDialClientAliceWithRecord() throws InterruptedException, ParseException {
258256
stubFor(get(urlPathEqualTo("/1111"))
259257
.willReturn(aResponse()
@@ -325,7 +323,6 @@ public synchronized void testDialClientAliceWithRecord() throws InterruptedExcep
325323
}
326324

327325
@Test
328-
@Category(UnstableTests.class)
329326
public synchronized void testDialClientAliceWithRecord2() throws InterruptedException, ParseException {
330327
stubFor(get(urlPathEqualTo("/1111"))
331328
.willReturn(aResponse()
@@ -507,7 +504,7 @@ public synchronized void testDialConferenceWithDialActionNoRcml() throws Interru
507504
"<Sms to=\"bob\" from=\"+12223334499\">Hello World!</Sms></Response>";
508505
private String dialConferenceNoDialActionRcml = "<Response><Dial><Conference>test</Conference></Dial></Response>";
509506
@Test
510-
@Category({UnstableTests.class, FeatureAltTests.class})
507+
@Category(FeatureAltTests.class)
511508
public synchronized void testDialConferenceNoDialAction_SendSms() throws InterruptedException, ParseException {
512509
stubFor(get(urlPathEqualTo("/1111"))
513510
.willReturn(aResponse()
@@ -706,7 +703,7 @@ public synchronized void testDialClientAliceWithRecordAndStatusCallbackForApp()
706703
}
707704

708705
@Test //Test case for issue 320
709-
@Category({UnstableTests.class,FeatureAltTests.class})
706+
@Category({FeatureAltTests.class})
710707
public synchronized void testDialClientAliceWithRecordAndStatusCallbackForAppForThreeCalls() throws InterruptedException, ParseException, MalformedURLException {
711708
stubFor(get(urlPathEqualTo("/1111"))
712709
.willReturn(aResponse()
@@ -1002,7 +999,6 @@ public synchronized void testRecordWithActionAndStatusCallbackForAppWithDisconne
1002999
}
10031000

10041001
@Test
1005-
@Category(UnstableTests.class)
10061002
//Test case for github issue 859
10071003
public synchronized void testRecordWithActionAndStatusCallbackForAppWithBobSendsFinishKey() throws InterruptedException, ParseException {
10081004
stubFor(get(urlPathEqualTo("/1111"))
@@ -1537,7 +1533,6 @@ public synchronized void testDialNumberRejectBusyRcml() throws InterruptedExcept
15371533

15381534
private String hangupActionRcml = "<Response><Hangup /></Response>";
15391535

1540-
@Category(UnstableTests.class)
15411536
@Test // (customised from testDialClientAliceWithRecordAndStatusCallbackForApp)
15421537
public synchronized void testDialClientAliceWithActionAndStatusCallbackForApp() throws InterruptedException, ParseException {
15431538
stubFor(get(urlPathEqualTo("/1111"))

0 commit comments

Comments
 (0)