PageRenderTime 56ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/jboss-as-7.1.1.Final/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/jaxr/JaxrConnectionFactoryBindingTestCase.java

#
Java | 73 lines | 39 code | 7 blank | 27 comment | 0 complexity | 340924956ee3a2ff3f0c8a6e35b0914e MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. /*
  2. * JBoss, Home of Professional Open Source.
  3. * Copyright 2008, Red Hat Middleware LLC, and individual contributors
  4. * as indicated by the @author tags. See the copyright.txt file in the
  5. * distribution for a full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.jboss.as.test.integration.jaxr;
  23. import java.net.URL;
  24. import java.util.concurrent.TimeUnit;
  25. import org.jboss.arquillian.container.test.api.Deployment;
  26. import org.jboss.arquillian.container.test.api.RunAsClient;
  27. import org.jboss.arquillian.junit.Arquillian;
  28. import org.jboss.arquillian.test.api.ArquillianResource;
  29. import org.jboss.as.test.integration.common.HttpRequest;
  30. import org.jboss.shrinkwrap.api.ShrinkWrap;
  31. import org.jboss.shrinkwrap.api.spec.WebArchive;
  32. import org.junit.Assert;
  33. import org.junit.Test;
  34. import org.junit.runner.RunWith;
  35. /**
  36. * Tests the JAXR connection factory bound to JNDI
  37. *
  38. * @author Thomas.Diesler@jboss.com
  39. * @since 26-Oct-2011
  40. */
  41. @RunAsClient
  42. @RunWith(Arquillian.class)
  43. public class JaxrConnectionFactoryBindingTestCase {
  44. @ArquillianResource
  45. private URL url;
  46. @Deployment
  47. public static WebArchive deployment() {
  48. WebArchive archive = ShrinkWrap.create(WebArchive.class, "jaxr-connection-test.war");
  49. archive.addClasses(JaxrServlet.class);
  50. archive.addAsWebInfResource("jaxr/webA.xml", "web.xml");
  51. archive.addAsWebInfResource("jaxr/jboss-webA.xml", "jboss-web.xml");
  52. return archive;
  53. }
  54. @Test
  55. public void testConnectionFactoryLookup() throws Exception {
  56. String reqpath = url.toExternalForm() + "?method=lookup";
  57. String response = HttpRequest.get(reqpath, 10, TimeUnit.SECONDS);
  58. Assert.assertEquals("org.apache.ws.scout.registry.ConnectionFactoryImpl", response.trim());
  59. }
  60. @Test
  61. public void testConnectionFactoryNewInstance() throws Exception {
  62. String reqpath = url.toExternalForm() + "?method=new";
  63. String response = HttpRequest.get(reqpath, 10, TimeUnit.SECONDS);
  64. Assert.assertEquals("org.apache.ws.scout.registry.ConnectionFactoryImpl", response.trim());
  65. }
  66. }