/* * Copyright (C) 2011 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.web.controller.router; import junit.framework.TestCase; /** * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a> */ public class TestPath extends TestCase { public void testFoo() throws Exception { assertEquals("", Path.parse("").getValue()); assertEquals("a", Path.parse("a").getValue()); assertEquals("?", Path.parse("%3F").getValue()); assertEquals(" ", Path.parse("%20").getValue()); assertEquals("? ", Path.parse("%3F%20").getValue()); // Path p2 = Path.parse("_"); assertEquals("_", p2.getValue()); assertEquals(0, p2.getRawStart(0)); assertEquals(1, p2.getRawEnd(0)); assertEquals(1, p2.getRawLength(0)); // Path p3 = Path.parse("a%5Fb%5Fc"); assertEquals("a_b_c", p3.getValue()); assertEquals(0, p3.getRawStart(0)); assertEquals(1, p3.getRawEnd(0)); assertEquals(1, p3.getRawLength(0)); assertEquals(1, p3.getRawStart(1)); assertEquals(4, p3.getRawEnd(1)); assertEquals(3, p3.getRawLength(1)); assertEquals(4, p3.getRawStart(2)); assertEquals(5, p3.getRawEnd(2)); assertEquals(1, p3.getRawLength(2)); assertEquals(5, p3.getRawStart(3)); assertEquals(8, p3.getRawEnd(3)); assertEquals(3, p3.getRawLength(3)); assertEquals(8, p3.getRawStart(4)); assertEquals(9, p3.getRawEnd(4)); assertEquals(1, p3.getRawLength(4)); // Path p4 = p3.subPath(2); assertEquals(0, p4.getRawStart(0)); assertEquals(1, p4.getRawEnd(0)); assertEquals(1, p4.getRawLength(0)); assertEquals(1, p4.getRawStart(1)); assertEquals(4, p4.getRawEnd(1)); assertEquals(3, p4.getRawLength(1)); assertEquals(4, p4.getRawStart(2)); assertEquals(5, p4.getRawEnd(2)); assertEquals(1, p4.getRawLength(2)); } public void testOtherChar() { assertInvalid("é"); } public void testPercent1() { Path path = Path.parse("%5F"); assertEquals("_", path.getValue()); assertEquals(0, path.getRawStart(0)); assertEquals(3, path.getRawEnd(0)); assertEquals(3, path.getRawLength(0)); } public void testPercent2() { Path path = Path.parse("%C2%A2"); assertEquals(1, path.length()); assertEquals('\u00A2', path.charAt(0)); assertEquals(0, path.getRawStart(0)); assertEquals(6, path.getRawEnd(0)); assertEquals(6, path.getRawLength(0)); } public void testPercent3() { Path path = Path.parse("%E2%82%AC"); assertEquals(1, path.length()); assertEquals('\u20AC', path.charAt(0)); assertEquals(0, path.getRawStart(0)); assertEquals(9, path.getRawEnd(0)); assertEquals(9, path.getRawLength(0)); } public void testInvalid() { // Not enough chars assertInvalid("%"); // Third char should be hexadecimal value assertInvalid("%1z"); // '_' should be '%' assertInvalid("%C2_A2"); // Not enough chars assertInvalid("%C2%A"); // Corrupted prefix 0xFF is illegal assertInvalid("%FF"); } private void assertInvalid(String s) { try { Path.parse(s); fail("Was expecting " + s + " to be invalid"); } catch (IllegalArgumentException ignore) { } } }