/frameworks/testing/arquillian-container-mobicents-sip-servlets/mss-arquillian-showcase/tomcat-embedded-6/SimpleShootistTest/src/test/java/org/mobicents/servlet/sip/arquillian/showcase/SimpleTest.java

http://mobicents.googlecode.com/ · Java · 112 lines · 73 code · 18 blank · 21 comment · 6 complexity · b0ce0c5c8f98f405e1d2c5e8d2a5a9a1 MD5 · raw file

  1. /**
  2. *
  3. */
  4. package org.mobicents.servlet.sip.arquillian.showcase;
  5. import static org.junit.Assert.assertEquals;
  6. import static org.junit.Assert.assertTrue;
  7. import org.apache.log4j.Logger;
  8. import org.cafesip.sipunit.SipCall;
  9. import org.cafesip.sipunit.SipPhone;
  10. import org.cafesip.sipunit.SipStack;
  11. import org.jboss.arquillian.container.mss.extension.SipStackTool;
  12. import org.jboss.arquillian.container.test.api.Deployment;
  13. import org.jboss.arquillian.junit.Arquillian;
  14. import org.jboss.shrinkwrap.api.ShrinkWrap;
  15. import org.jboss.shrinkwrap.api.spec.WebArchive;
  16. import org.junit.After;
  17. import org.junit.Before;
  18. import org.junit.BeforeClass;
  19. import org.junit.Test;
  20. import org.junit.runner.RunWith;
  21. /**
  22. * Arquillian is controlling the lifecycle of the container and the test archive. That means it starts and stops the container and deploys
  23. * the test archive when it is needed
  24. *
  25. * @author <a href="mailto:gvagenas@gmail.com">George Vagenas</a>
  26. *
  27. */
  28. @RunWith(Arquillian.class)
  29. public class SimpleTest
  30. {
  31. private static Logger logger = Logger.getLogger(SimpleTest.class);
  32. private SipStack receiver;
  33. private SipCall sipCall;
  34. private SipPhone sipPhone;
  35. private final int TIMEOUT = 10000;
  36. private static SipStackTool sipStackTool;
  37. @BeforeClass
  38. public static void beforeClass(){
  39. sipStackTool = new SipStackTool();
  40. }
  41. @Before
  42. public void setUp() throws Exception
  43. {
  44. //Create the sipCall and start listening for messages
  45. receiver = sipStackTool.initializeSipStack(SipStack.PROTOCOL_UDP, "127.0.0.1", "5080", "127.0.0.1:5070");
  46. sipPhone = receiver.createSipPhone("127.0.0.1", SipStack.PROTOCOL_UDP, 5070, "sip:LittleGuy@there.com");
  47. sipCall = sipPhone.createSipCall();
  48. sipCall.listenForIncomingCall();
  49. }
  50. @After
  51. public void tearDown() throws Exception
  52. {
  53. if(sipCall != null) sipCall.disposeNoBye();
  54. if(sipPhone != null) sipPhone.dispose();
  55. if(receiver != null) receiver.dispose();
  56. }
  57. /*
  58. * Define the test archive here.
  59. * Pay attention to the properties of the Deployment annotation
  60. * --name: the arquillian Deployer, you can deploy/undeploy this archive by using the name here
  61. * --managed: the framework WILL manage the lifecycle of this archive
  62. * --testable: as-client mode (https://docs.jboss.org/author/display/ARQ/Test+run+modes)
  63. */
  64. @Deployment(name="simple", managed=true, testable=false)
  65. public static WebArchive createTestArchive()
  66. {
  67. WebArchive webArchive = ShrinkWrap.create(WebArchive.class, "simplesipservlet.war");
  68. webArchive.addClasses(SimpleSipServlet.class);
  69. webArchive.addAsWebInfResource("in-container-sip.xml", "sip.xml");
  70. return webArchive;
  71. }
  72. /*
  73. * Tests
  74. */
  75. @Test
  76. public void testInvite() throws InterruptedException
  77. {
  78. logger.info("testInvite test");
  79. String toUri = "sip:BigGuy@127.0.0.1:5070";
  80. assertTrue(sipCall.initiateOutgoingCall(toUri, null));
  81. assertTrue(sipCall.waitForAnswer(TIMEOUT));
  82. assertTrue(sipCall.sendInviteOkAck());
  83. Thread.sleep(100);
  84. sipCall.disconnect();
  85. Thread.sleep(1000);
  86. assertEquals(200, sipCall.getLastReceivedResponse().getStatusCode());
  87. }
  88. @Test
  89. public void testRegister()
  90. {
  91. logger.info("testRegister test");
  92. assertTrue(sipPhone.register("sip:LittleGuy@there.com", 3600));
  93. }
  94. }