PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/jersey-tests/src/test/java/com/sun/jersey/impl/container/grizzly/MatrixParamTest.java

https://github.com/imyousuf/jersey
Java | 85 lines | 34 code | 8 blank | 43 comment | 0 complexity | 071cdb3d26028a6a4dc9c35649ab8877 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause-No-Nuclear-License-2014, GPL-2.0
  1. /*
  2. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  3. *
  4. * Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved.
  5. *
  6. * The contents of this file are subject to the terms of either the GNU
  7. * General Public License Version 2 only ("GPL") or the Common Development
  8. * and Distribution License("CDDL") (collectively, the "License"). You
  9. * may not use this file except in compliance with the License. You can
  10. * obtain a copy of the License at
  11. * http://glassfish.java.net/public/CDDL+GPL_1_1.html
  12. * or packager/legal/LICENSE.txt. See the License for the specific
  13. * language governing permissions and limitations under the License.
  14. *
  15. * When distributing the software, include this License Header Notice in each
  16. * file and include the License file at packager/legal/LICENSE.txt.
  17. *
  18. * GPL Classpath Exception:
  19. * Oracle designates this particular file as subject to the "Classpath"
  20. * exception as provided by Oracle in the GPL Version 2 section of the License
  21. * file that accompanied this code.
  22. *
  23. * Modifications:
  24. * If applicable, add the following below the License Header, with the fields
  25. * enclosed by brackets [] replaced by your own identifying information:
  26. * "Portions Copyright [year] [name of copyright owner]"
  27. *
  28. * Contributor(s):
  29. * If you wish your version of this file to be governed by only the CDDL or
  30. * only the GPL Version 2, indicate your decision by adding "[Contributor]
  31. * elects to include this software in this distribution under the [CDDL or GPL
  32. * Version 2] license." If you don't indicate a single choice of license, a
  33. * recipient has the option to distribute your version of this file under
  34. * either the CDDL, the GPL Version 2 or to extend the choice of license to
  35. * its licensees as provided above. However, if you add GPL Version 2 code
  36. * and therefore, elected the GPL Version 2 license, then the option applies
  37. * only if the new code is made subject to such option by the copyright
  38. * holder.
  39. */
  40. package com.sun.jersey.impl.container.grizzly;
  41. import com.sun.jersey.api.client.Client;
  42. import com.sun.jersey.api.client.WebResource;
  43. import javax.ws.rs.GET;
  44. import javax.ws.rs.MatrixParam;
  45. import javax.ws.rs.Path;
  46. import javax.ws.rs.core.UriBuilder;
  47. /**
  48. *
  49. * @author Paul.Sandoz@Sun.Com
  50. */
  51. public class MatrixParamTest extends AbstractGrizzlyServerTester {
  52. @Path("/test")
  53. public static class MatrixParamResource {
  54. @GET
  55. public String get(@MatrixParam("x") String x, @MatrixParam("y") String y) {
  56. return y;
  57. }
  58. }
  59. public MatrixParamTest(String testName) {
  60. super(testName);
  61. }
  62. public void testMatrixParam() {
  63. startServer(MatrixParamResource.class);
  64. UriBuilder base = getUri().path("test");
  65. WebResource r = Client.create().resource(base.clone().matrixParam("y", "1").build());
  66. assertEquals("1", r.get(String.class));
  67. r = Client.create().resource(base.clone().
  68. matrixParam("x", "1").matrixParam("y", "1%20%2B%202").build());
  69. assertEquals("1 + 2", r.get(String.class));
  70. r = Client.create().resource(base.clone().
  71. matrixParam("x", "1").matrixParam("y", "1%20%26%202").build());
  72. assertEquals("1 & 2", r.get(String.class));
  73. r = Client.create().resource(base.clone().
  74. matrixParam("x", "1").matrixParam("y", "1%20%7C%7C%202").build());
  75. assertEquals("1 || 2", r.get(String.class));
  76. }
  77. }