UtilTest.java revision 1024
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* See LICENSE.txt included in this distribution for the specific
* language governing permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at LICENSE.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/**
* Test of the methods in <code>org.opensolaris.opengrok.web.Util</code>.
*/
public class UtilTest {
private static Locale savedLocale;
public static void setUpClass() {
// Some of the methods have different results in different locales.
// Set locale to en_US for these tests.
}
public static void tearDownClass() {
savedLocale = null;
}
@Test
public void htmlize() {
String[][] input_output = {
{"This is a test", "This is a test" },
{"Newline\nshould become <br/>",
"Newline<br/>should become <br/>" },
{"Open & Grok", "Open & Grok" },
{"&<>", "&amp;&lt;&gt;" },
};
// 1 arg
// 2 args
}
}
@Test
public void breadcrumbPath() {
// Are these two correct? Why don't we create links?
assertEquals("<a href=\"/root/xx\">xx</a>",
assertEquals("<a href=\"/r/a\">a</a>/<a href=\"/r/a/b\">b</a>",
assertEquals("<a href=\"/r/a\">a</a>/<a href=\"/r/a/b\">b</a>/",
assertEquals("<a href=\"/r/java\">java</a>." +
assertEquals("<a href=\"/root/xx&project=y\">xx</a>",
assertEquals("<a href=\"/root/xx&project=y\">xx</a>",
assertEquals("<a href=\"/r/\">..</a>/" +
"<a href=\"/r/a\">a</a>/" +
"<a href=\"/r/a/b\">b</a>/" +
"<a href=\"/r/a\">..</a>/" +
"<a href=\"/r/a/c\">c</a>/" +
"/" +
"<a href=\"/r/a/c/d\">d</a>",
}
@Test
public void redableSize() {
assertEquals("<b>8,796,093,022,208M</b>",
}
@Test
public void readableLine() throws Exception {
assertEquals("\n<a class=\"l\" name=\"42\" href=\"#42\"> 42 </a>",
assertEquals("\n<a class=\"hl\" name=\"110\" href=\"#110\"> 110 </a>",
}
@Test
public void uid() {
assertEquals("\u0000etc\u0000passwd\u0000date",
}
@Test
public void uid2url() {
}
@Test
public void URIEncode() {
}
@Test
public void URIEncodePath() {
assertEquals("/a//x/yz/%23%23/%20/%20%3F",
}
@Test
public void formQuoteEscape() {
}
}