1

Rhino を使用して XHTML を生成していますが、URL は次のようにエンコードされています。

- http://www.example.com/test.html?a=b&c=d

になる

- http://www.example.com/test.html?a=b&c=d

次のような失敗したテスト ケース:

public class E4XUrlTest extends TestCase {
    public void testJavascript() throws Exception {
        final Context context = new ContextFactory().enterContext();
        context.setLanguageVersion(Context.VERSION_1_7);
        try {
            final ScriptableObject scope = new Global(context);
            final Script compiledScript  = context.compileReader(
                    new StringReader("<html><body><a href={'blah.html?id=2345&name=345'}></a></body></html>"), "test", 1, null);
            HashMap<String, Object> variables = new HashMap<String, Object>();
            Set<Entry<String, Object>> entrySet = variables.entrySet();
            for (Entry<String, Object> entry : entrySet) {
                ScriptableObject.putProperty(scope, entry.getKey(), Context.javaToJS(entry.getValue(), scope));
            }
            Object exec = compiledScript.exec(context, scope);
            String html = exec.toString();
            System.out.println(html);
            assertTrue(html.indexOf("id=2345&name") > 0);
        } finally {
            Context.exit();
        }

    }
}

何か案は?

4

1 に答える 1

0

&name; は有効な xHTML エンティティではありません。すべてのブラウザは URL を正しく認識します。したがって、正しい xHTML を壊そうとするのではなく、テストを修正する必要があります。:-) stw

于 2011-04-06T12:48:49.377 に答える