/*
* Copyright (c) 2002-2010 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gargoylesoftware.htmlunit.libraries;
import org.junit.Test;
import org.junit.runner.RunWith;
import com.gargoylesoftware.htmlunit.BrowserRunner;
import com.gargoylesoftware.htmlunit.WebDriverTestCase;
import com.gargoylesoftware.htmlunit.BrowserRunner.Alerts;
import com.gargoylesoftware.htmlunit.BrowserRunner.Browser;
import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented;
/**
* Tests of the source repository of <a href="http://code.google.com/webtoolkit">Google Web Toolkit</a>,
* which are marked to fail with HtmlUnit.
*
* To generate the JavaScript, copy the test case to "Hello" GWT sample, compile it with "-style PRETTY"
* by modifying "gwtc" target, and run "ant". In generated ".nocache.js", search for "ie6" or "gecko1_8"
* to know which JavaScript file corresponds to IE or FF respectively.
*
* @version $Revision: 5319 $
* @author Ahmed Ashour
*/
@RunWith(BrowserRunner.class)
public class GWTSourceTest extends WebDriverTestCase {
/**
* Original test resides in
* <a href="http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/emultest/java/lang/StringTest.java">StringTest</a>.
*
* Test case to be moved to {@link com.gargoylesoftware.htmlunit.javascript.regexp.HtmlUnitRegExpProxyTest}
*
* @throws Exception if the test fails
*/
@Test
@Alerts({ "foobar", "$0bar", "$1bar", "\\$1bar", "\\1", "cb", "cb", "a$$b", "a$1b", "a$`b", "a$'b" })
public void testReplaceString() throws Exception {
final String html = "<html>\n"
+ "<head>\n"
+ " <script>\n"
+ " function test() {\n"
+ " alert($replace('bazbar', 'baz', 'foo'));\n"
+ " alert($replace('foobar', 'foo', '$0'));\n"
+ " alert($replace('foobar', 'foo', '$1'));\n"
+ " alert($replace('foobar', 'foo', '\\\\$1'));\n"
+ " alert($replace('*[)1', '*[)', '\\\\'));\n"
+ " alert($replace('$ab', '$a', 'c'));\n"
+ " alert($replace('^ab', '^a', 'c'));\n"
+ " alert($replace('a[x]b', '[x]', '$$'));\n"
+ " alert($replace('a[x]b', '[x]', '$1'));\n"
+ " alert($replace('a[x]b', '[x]', '$`'));\n"
+ " alert($replace('a[x]b', '[x]', \"$'\"));\n"
+ " }\n"
+ " function $replace(this$static, from, to){\n"
+ " var regex, replacement;\n"
+ " regex = $replaceAll(from, "
+ "'([/\\\\\\\\\\\\.\\\\*\\\\+\\\\?\\\\|\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}$^])', '\\\\\\\\$1');\n"
+ " replacement = $replaceAll("
+ "$replaceAll(to, '\\\\\\\\', '\\\\\\\\\\\\\\\\'), '\\\\$', '\\\\\\\\$');\n"
+ " return $replaceAll(this$static, regex, replacement);\n"
+ " }\n"
+ " function $replaceAll(this$static, regex, replace){\n"
+ " replace = __translateReplaceString(replace);\n"
+ " return this$static.replace(RegExp(regex, 'g'), replace);\n"
+ " }\n"
+ " function __translateReplaceString(replaceStr){\n"
+ " var pos = 0;\n"
+ " while (0 <= (pos = replaceStr.indexOf('\\\\', pos))) {\n"
+ " if (replaceStr.charCodeAt(pos + 1) == 36) {\n"
+ " replaceStr = replaceStr.substr(0, pos - 0) + '$' + $substring(replaceStr, ++pos);\n"
+ " }\n"
+ " else {\n"
+ " replaceStr = replaceStr.substr(0, pos - 0) + $substring(replaceStr, ++pos);\n"
+ " }\n"
+ " }\n"
+ " return replaceStr;\n"
+ " }\n"
+ " function $substring(this$static, beginIndex){\n"
+ " return this$static.substr(beginIndex, this$static.length - beginIndex);\n"
+ " }\n"
+ " </script>\n"
+ "</head><body onload='test()'>\n"
+ "</body></html>";
loadPageWithAlerts2(html);
}
/**
* Test case for
* <a href="http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/core/client/impl/StackTraceCreatorTest.java">StackTraceCreatorTest</a>.
*
* Test case to be moved to {@link com.gargoylesoftware.htmlunit.javascript.SimpleScriptableTest}
*
* @throws Exception if the test fails
*/
@Test
@Alerts({ "true", "function", "function" })
public void callee() throws Exception {
final String html
= "<html><head><title>foo</title><script>\n"
+ "function test() {\n"
+ " var fun = arguments.callee.toString();\n"
+ " alert(fun.indexOf('test()') != -1);\n"
+ " alert(typeof arguments.callee);\n"
+ " alert(typeof arguments.callee.caller);\n"
+ "}\n"
+ "</script></head><body onload='test()'>\n"
+ "</body></html>";
loadPageWithAlerts2(html);
}
/**
* Test case for
* <a href="http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/core/client/impl/StackTraceCreatorTest.java">StackTraceCreatorTest</a>.
*
* Test case to be moved to {@link com.gargoylesoftware.htmlunit.javascript.SimpleScriptableTest}
*
* @throws Exception if the test fails
*/
@Test
@NotYetImplemented(Browser.FF)
@Alerts(IE = "undefined", FF = "true")
public void stack() throws Exception {
final String html
= "<html><head><title>foo</title><script>\n"
+ "function test() {\n"
+ " try {\n"
+ " null.method();\n"
+ " } catch (e) {\n"
+ " if (e.stack)\n"
+ " alert(e.stack.indexOf('test()@') != -1);\n"
+ " else\n"
+ " alert('undefined');\n"
+ " }\n"
+ "}\n"
+ "</script></head><body onload='test()'>\n"
+ "</body></html>";
loadPageWithAlerts2(html);
}
}
|