blob: f4e8daf485f9de7f2b92b86ee256af3a9f5b77de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.internal.watson;
import java.io.*;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.internal.watson.*;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
/**
* Unit tests for <code>ElementTreeWriter</code> and
* <code>ElementTreeReader</code>.
*/
public class TreeFlatteningTest extends ElementTreeSerializationTest {
public TreeFlatteningTest() {
super();
}
public TreeFlatteningTest(String name) {
super(name);
}
/**
* Performs the serialization activity for this test
*/
@Override
public Object doRead(ElementTreeReader reader, DataInputStream input) throws IOException {
return reader.readTree(input);
}
/**
* Runs a test for this class at a certain depth and path
*/
@Override
public void doTest(IPath path, int depth) {
/* Get an element tree from somewhere. */
fTree = TestUtil.createTestElementTree();
fSubtreePath = path;
fDepth = depth;
ElementTree newTree = (ElementTree) doPipeTest();
TestUtil.assertEqualTrees(this.getClass().toString() + "test0", fTree, newTree, fSubtreePath, fDepth);
}
/**
* Performs the serialization activity for this test
*/
@Override
public void doWrite(ElementTreeWriter writer, DataOutputStream output) throws IOException {
writer.writeTree(fTree, fSubtreePath, fDepth, output);
}
@Override
protected void setUp() throws Exception {
super.setUp();
fTree = TestUtil.createTestElementTree();
}
public static Test suite() {
TestSuite suite = new TestSuite(TreeFlatteningTest.class);
return suite;
}
public void test0() {
/* Get an element tree from somewhere. */
fTree = TestUtil.createTestElementTree();
ElementTree newTree = (ElementTree) doFileTest();
TestUtil.assertEqualTrees(this.getClass().toString() + "test0", fTree, newTree);
}
/**
* Tests the reading and writing of element deltas
*/
public void testExhaustive() {
doExhaustiveTests();
}
public void testNullData() {
/* Get an element tree from somewhere. */
fTree = TestUtil.createTestElementTree();
fTree = fTree.newEmptyDelta();
/* set some elements to have null data */
fTree.setElementData(solution, null);
fTree.setElementData(folder2, null);
fTree.immutable();
ElementTree newTree = (ElementTree) doPipeTest();
TestUtil.assertEqualTrees(this.getClass().toString() + "test0", fTree, newTree);
}
public void testWriteRoot() {
/* Get an element tree from somewhere. */
fTree = TestUtil.createTestElementTree();
fSubtreePath = Path.ROOT;
ElementTree newTree = (ElementTree) doPipeTest();
TestUtil.assertEqualTrees(this.getClass().toString() + "test0", fTree, newTree, fSubtreePath);
}
}