Removed trim in ValueBoxBase, forcing parsers to handle trim()ing.
Added test for ValueBoxBase, specifically (instead of a test of TextBox as before.) The tests include a test for exceptions and a test to make sure strings with spaces are correctly passed through.
Review at http://gwt-code-reviews.appspot.com/738801
Review by: knorton@google.com
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8489 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/client/ui/ValueBoxBase.java b/user/src/com/google/gwt/user/client/ui/ValueBoxBase.java
index a40b96d..f081c32 100644
--- a/user/src/com/google/gwt/user/client/ui/ValueBoxBase.java
+++ b/user/src/com/google/gwt/user/client/ui/ValueBoxBase.java
@@ -196,13 +196,15 @@
* @throws ParseException if the value cannot be parsed
*/
public T getValueOrThrow() throws ParseException {
- String text = getText().trim();
+ String text = getText();
+
+ T parseResult = parser.parse(text);
if ("".equals(text)) {
return null;
}
- return parser.parse(text);
+ return parseResult;
}
/**
diff --git a/user/test/com/google/gwt/user/client/ui/MockParser.java b/user/test/com/google/gwt/user/client/ui/MockParser.java
new file mode 100644
index 0000000..3fd7477
--- /dev/null
+++ b/user/test/com/google/gwt/user/client/ui/MockParser.java
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2010 Google 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.google.gwt.user.client.ui;
+
+import com.google.gwt.text.shared.Parser;
+
+import java.text.ParseException;
+
+class MockParser implements Parser<String> {
+ public boolean throwException;
+ public boolean parseCalled;
+
+ public String parse(CharSequence text) throws ParseException {
+ parseCalled = true;
+
+ if (throwException) {
+ throw new ParseException("mock exception", 0);
+ } else {
+ return text.toString();
+ }
+ }
+}
\ No newline at end of file
diff --git a/user/test/com/google/gwt/user/client/ui/ValueBoxBaseTest.java b/user/test/com/google/gwt/user/client/ui/ValueBoxBaseTest.java
new file mode 100644
index 0000000..0face04
--- /dev/null
+++ b/user/test/com/google/gwt/user/client/ui/ValueBoxBaseTest.java
@@ -0,0 +1,99 @@
+/*
+ * Copyright 2010 Google 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.google.gwt.user.client.ui;
+
+import com.google.gwt.dom.client.Document;
+import com.google.gwt.dom.client.Element;
+import com.google.gwt.junit.client.GWTTestCase;
+import com.google.gwt.text.shared.PassthroughRenderer;
+import com.google.gwt.text.shared.Renderer;
+
+import java.text.ParseException;
+
+/**
+ * Testing ValueBoxBase.
+ */
+public class ValueBoxBaseTest extends GWTTestCase {
+
+ // Test that parser exceptions are correctly thrown with an empty string
+ public void testParserExceptionWithEmptyString() {
+ Element elm = Document.get().createTextInputElement();
+ Renderer<String> renderer = PassthroughRenderer.instance();
+ MockParser parser = new MockParser();
+
+ ValueBoxBase<String> valueBoxBase =
+ new ValueBoxBase<String>(elm, renderer, parser);
+
+ parser.throwException = true;
+ valueBoxBase.setText("");
+ try {
+ String string = valueBoxBase.getValueOrThrow();
+ fail("Should have thrown ParseException");
+ } catch (ParseException e) {
+ // exception was correctly thrown
+ }
+ if (!parser.parseCalled) {
+ fail("Parser was not run");
+ }
+ }
+
+ // Test that parser exceptions are correctly thrown with a simple string
+ public void testParserExceptionWithString() {
+ Element elm = Document.get().createTextInputElement();
+ Renderer<String> renderer = PassthroughRenderer.instance();
+ MockParser parser = new MockParser();
+
+ ValueBoxBase<String> valueBoxBase =
+ new ValueBoxBase<String>(elm, renderer, parser);
+
+ parser.throwException = true;
+ valueBoxBase.setText("simple string");
+ try {
+ String string = valueBoxBase.getValueOrThrow();
+ fail("Should have thrown ParseException");
+ } catch (ParseException e) {
+ // exception was correctly thrown
+ }
+ if (!parser.parseCalled) {
+ fail("Parser was not run");
+ }
+ }
+
+ // Test that a string with padding spaces correctly passes through
+ public void testSpaces() {
+ Element elm = Document.get().createTextInputElement();
+ Renderer<String> renderer = PassthroughRenderer.instance();
+ MockParser parser = new MockParser();
+
+ ValueBoxBase<String> valueBoxBase =
+ new ValueBoxBase<String>(elm, renderer, parser);
+
+ valueBoxBase.setText(" two space padding test ");
+ try {
+ assertEquals(" two space padding ", valueBoxBase.getValueOrThrow());
+ } catch (ParseException e) {
+ fail("Should not have thrown ParseException");
+ }
+ if (!parser.parseCalled) {
+ fail("Parser was not run");
+ }
+ }
+
+ @Override
+ public String getModuleName() {
+ return "com.google.gwt.user.User";
+ }
+}
\ No newline at end of file