Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-11-15 05:22:58 +0000
committerBrian Vosburgh2013-11-15 20:20:32 +0000
commit1ef3069f96f9b2c9b87c4a2ad863c219dcb4da4e (patch)
treeb3eff07c6c428aac3551eab1000299fa04a8efd6
parent4a280d3c36e9df165dd270e519ceab49bbbce229 (diff)
downloadwebtools.dali-1ef3069f96f9b2c9b87c4a2ad863c219dcb4da4e.tar.gz
webtools.dali-1ef3069f96f9b2c9b87c4a2ad863c219dcb4da4e.tar.xz
webtools.dali-1ef3069f96f9b2c9b87c4a2ad863c219dcb4da4e.zip
tweak tests to pass on Mac OS Xv201311210251
-rw-r--r--common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/SystemTools.java7
-rw-r--r--common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/XMLToolsWriteTests.java290
2 files changed, 155 insertions, 142 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/SystemTools.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/SystemTools.java
index 4a5d2e91f1..fb9f4d427b 100644
--- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/SystemTools.java
+++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/SystemTools.java
@@ -23,6 +23,13 @@ public final class SystemTools {
// ********** JVM **********
/**
+ * Return whether the current JVM is Apple's.
+ */
+ public static boolean jvmIsApple() {
+ return jvmIs("Apple");
+ }
+
+ /**
* Return whether the current JVM is IBM's.
*/
public static boolean jvmIsIBM() {
diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/XMLToolsWriteTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/XMLToolsWriteTests.java
index 08d00fa809..93edd70b82 100644
--- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/XMLToolsWriteTests.java
+++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/XMLToolsWriteTests.java
@@ -1,142 +1,148 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2012 Oracle. All rights reserved.
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0, which accompanies this distribution
- * and is available at http://www.eclipse.org/legal/epl-v10.html.
- *
- * Contributors:
- * Oracle - initial API and implementation
- ******************************************************************************/
-package org.eclipse.jpt.common.utility.tests.internal;
-
-import java.io.ByteArrayOutputStream;
-import java.io.OutputStream;
-import junit.framework.TestCase;
-import org.eclipse.jpt.common.utility.internal.StringTools;
-import org.eclipse.jpt.common.utility.internal.SystemTools;
-import org.eclipse.jpt.common.utility.internal.XMLTools;
-import org.w3c.dom.Document;
-import org.w3c.dom.Node;
-
-/**
- * these tests assume the XML will be formatted with appropriate
- * indentation?
- */
-@SuppressWarnings("nls")
-public class XMLToolsWriteTests
- extends TestCase
-{
- private Document testDocument;
- private Node rootNode;
- private static final String CR = System.getProperty("line.separator");
-
-
- public XMLToolsWriteTests(String name) {
- super(name);
- }
-
- @Override
- protected void setUp() throws Exception {
- super.setUp();
- this.testDocument = XMLTools.newDocument();
- this.rootNode = this.testDocument.createElement("root-element");
- this.testDocument.appendChild(this.rootNode);
- XMLTools.addSimpleTextNode(this.rootNode, "element-0", "foo");
- }
-
- @Override
- protected void tearDown() throws Exception {
- TestTools.clear(this);
- super.tearDown();
- }
-
- private void verifyTestDocumentString(String string) throws Exception {
- OutputStream stream = new ByteArrayOutputStream(2000);
- XMLTools.print(this.testDocument, stream);
- stream.close();
- StringBuffer sb = new StringBuffer(2000);
- sb.append("<?xml version=\"1.0\" encoding=\"UTF-8\"");
- if (SystemTools.jvmIsOracle() && SystemTools.javaSpecificationVersionIsGreaterThan("1.5")) {
- sb.append(" standalone=\"no\"");
- }
- sb.append("?>");
- if (SystemTools.jvmIsOracle() || (SystemTools.jvmIsIBM() && SystemTools.javaSpecificationVersionIsLessThanOrEqualTo("1.5"))) {
- sb.append(CR);
- }
- sb.append("<root-element>");
- sb.append(CR);
- sb.append("<element-0>");
- sb.append("foo");
- sb.append("</element-0>");
- sb.append(CR);
- sb.append(string);
- sb.append("</root-element>");
- if (SystemTools.jvmIsOracle() || (SystemTools.jvmIsIBM() && SystemTools.javaSpecificationVersionIsLessThanOrEqualTo("1.5"))) {
- sb.append(CR);
- }
- String expected = sb.toString();
- String actual = stream.toString();
- assertEquals(StringTools.compressWhitespace(expected), StringTools.compressWhitespace(actual));
- }
-
- public void testAddSimpleTextNode() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", "some text");
- this.verifyTestDocumentString("<element-1>some text</element-1>" + CR);
- }
-
- public void testAddSimpleTextNodeDefaultValue1() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", "some text", "some text");
- this.verifyTestDocumentString("");
- }
-
- public void testAddSimpleTextNodeDefaultValue2() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", "some text", "default text");
- this.verifyTestDocumentString("<element-1>some text</element-1>" + CR);
- }
-
- public void testAddSimpleTextNodeInt() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", 42);
- this.verifyTestDocumentString("<element-1>42</element-1>" + CR);
- }
-
- public void testAddSimpleTextNodeIntDefaultValue1() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", 42, 42);
- this.verifyTestDocumentString("");
- }
-
- public void testAddSimpleTextNodeIntDefaultValue2() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", 42, 43);
- this.verifyTestDocumentString("<element-1>42</element-1>" + CR);
- }
-
- public void testAddSimpleTextNodeBoolean() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", true);
- this.verifyTestDocumentString("<element-1>true</element-1>" + CR);
- }
-
- public void testAddSimpleTextNodeBooleanDefaultValue1() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", true, true);
- this.verifyTestDocumentString("");
- }
-
- public void testAddSimpleTextNodeBooleanDefaultValue2() throws Exception {
- XMLTools.addSimpleTextNode(this.rootNode, "element-1", false, true);
- this.verifyTestDocumentString("<element-1>false</element-1>" + CR);
- }
-
- public void testAddSimpleTextNodes() throws Exception {
- XMLTools.addSimpleTextNodes(this.rootNode, "element-1-collection", "element-1", new String[] {"text 1", "text 2", "text 3"});
- StringBuffer sb = new StringBuffer(2000);
- sb.append("<element-1-collection>");
- sb.append(CR);
- sb.append("<element-1>text 1</element-1>");
- sb.append(CR);
- sb.append("<element-1>text 2</element-1>");
- sb.append(CR);
- sb.append("<element-1>text 3</element-1>");
- sb.append(CR);
- sb.append("</element-1-collection>");
- sb.append(CR);
- this.verifyTestDocumentString(sb.toString());
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2005, 2012 Oracle. All rights reserved.
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0, which accompanies this distribution
+ * and is available at http://www.eclipse.org/legal/epl-v10.html.
+ *
+ * Contributors:
+ * Oracle - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.jpt.common.utility.tests.internal;
+
+import java.io.ByteArrayOutputStream;
+import java.io.OutputStream;
+import junit.framework.TestCase;
+import org.eclipse.jpt.common.utility.internal.StringTools;
+import org.eclipse.jpt.common.utility.internal.SystemTools;
+import org.eclipse.jpt.common.utility.internal.XMLTools;
+import org.w3c.dom.Document;
+import org.w3c.dom.Node;
+
+/**
+ * these tests assume the XML will be formatted with appropriate
+ * indentation?
+ */
+@SuppressWarnings("nls")
+public class XMLToolsWriteTests
+ extends TestCase
+{
+ private Document testDocument;
+ private Node rootNode;
+ private static final String CR = System.getProperty("line.separator");
+
+
+ public XMLToolsWriteTests(String name) {
+ super(name);
+ }
+
+ @Override
+ protected void setUp() throws Exception {
+ super.setUp();
+ this.testDocument = XMLTools.newDocument();
+ this.rootNode = this.testDocument.createElement("root-element");
+ this.testDocument.appendChild(this.rootNode);
+ XMLTools.addSimpleTextNode(this.rootNode, "element-0", "foo");
+ }
+
+ @Override
+ protected void tearDown() throws Exception {
+ TestTools.clear(this);
+ super.tearDown();
+ }
+
+ private void verifyTestDocumentString(String string) throws Exception {
+ OutputStream stream = new ByteArrayOutputStream(2000);
+ XMLTools.print(this.testDocument, stream);
+ stream.close();
+ StringBuffer sb = new StringBuffer(2000);
+ sb.append("<?xml version=\"1.0\" encoding=\"UTF-8\"");
+ if ((SystemTools.jvmIsOracle() || SystemTools.jvmIsApple()) && SystemTools.javaSpecificationVersionIsGreaterThan("1.5")) {
+ sb.append(" standalone=\"no\"");
+ }
+ sb.append("?>");
+ if (SystemTools.osIsMac()) {
+ sb.append(' ');
+ }
+ if (SystemTools.jvmIsOracle() || (SystemTools.jvmIsIBM() && SystemTools.javaSpecificationVersionIsLessThanOrEqualTo("1.5"))) {
+ sb.append(CR);
+ }
+ sb.append("<root-element>");
+ sb.append(CR);
+ sb.append("<element-0>");
+ sb.append("foo");
+ sb.append("</element-0>");
+ sb.append(CR);
+ sb.append(string);
+ sb.append("</root-element>");
+ if (SystemTools.osIsMac()) {
+ sb.append(' ');
+ }
+ if (SystemTools.jvmIsOracle() || (SystemTools.jvmIsIBM() && SystemTools.javaSpecificationVersionIsLessThanOrEqualTo("1.5"))) {
+ sb.append(CR);
+ }
+ String expected = sb.toString();
+ String actual = stream.toString();
+ assertEquals(StringTools.compressWhitespace(expected), StringTools.compressWhitespace(actual));
+ }
+
+ public void testAddSimpleTextNode() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", "some text");
+ this.verifyTestDocumentString("<element-1>some text</element-1>" + CR);
+ }
+
+ public void testAddSimpleTextNodeDefaultValue1() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", "some text", "some text");
+ this.verifyTestDocumentString("");
+ }
+
+ public void testAddSimpleTextNodeDefaultValue2() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", "some text", "default text");
+ this.verifyTestDocumentString("<element-1>some text</element-1>" + CR);
+ }
+
+ public void testAddSimpleTextNodeInt() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", 42);
+ this.verifyTestDocumentString("<element-1>42</element-1>" + CR);
+ }
+
+ public void testAddSimpleTextNodeIntDefaultValue1() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", 42, 42);
+ this.verifyTestDocumentString("");
+ }
+
+ public void testAddSimpleTextNodeIntDefaultValue2() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", 42, 43);
+ this.verifyTestDocumentString("<element-1>42</element-1>" + CR);
+ }
+
+ public void testAddSimpleTextNodeBoolean() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", true);
+ this.verifyTestDocumentString("<element-1>true</element-1>" + CR);
+ }
+
+ public void testAddSimpleTextNodeBooleanDefaultValue1() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", true, true);
+ this.verifyTestDocumentString("");
+ }
+
+ public void testAddSimpleTextNodeBooleanDefaultValue2() throws Exception {
+ XMLTools.addSimpleTextNode(this.rootNode, "element-1", false, true);
+ this.verifyTestDocumentString("<element-1>false</element-1>" + CR);
+ }
+
+ public void testAddSimpleTextNodes() throws Exception {
+ XMLTools.addSimpleTextNodes(this.rootNode, "element-1-collection", "element-1", new String[] {"text 1", "text 2", "text 3"});
+ StringBuffer sb = new StringBuffer(2000);
+ sb.append("<element-1-collection>");
+ sb.append(CR);
+ sb.append("<element-1>text 1</element-1>");
+ sb.append(CR);
+ sb.append("<element-1>text 2</element-1>");
+ sb.append(CR);
+ sb.append("<element-1>text 3</element-1>");
+ sb.append(CR);
+ sb.append("</element-1-collection>");
+ sb.append(CR);
+ this.verifyTestDocumentString(sb.toString());
+ }
+}

Back to the top