blob: 16e5a5f02e2d2d266642dfd100b6dcc228aaec5f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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.resources.regression;
import java.io.ByteArrayInputStream;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.tests.resources.ResourceTest;
public class Bug_006708 extends ResourceTest {
/**
* Constructor for Bug_6708.
*/
public Bug_006708() {
super();
}
/**
* Constructor for Bug_6708.
* @param name
*/
public Bug_006708(String name) {
super(name);
}
public static Test suite() {
return new TestSuite(Bug_006708.class);
}
public void testBug() {
IWorkspace workspace = ResourcesPlugin.getWorkspace();
try {
IProject sourceProj = workspace.getRoot().getProject("P1");
sourceProj.create(null);
sourceProj.open(null);
IFile source = sourceProj.getFile("Source.txt");
source.create(new ByteArrayInputStream("abcdef".getBytes()), false, null);
IProject destProj = workspace.getRoot().getProject("P2");
destProj.create(null);
destProj.open(null);
IFile dest = destProj.getFile("Dest.txt");
source.copy(dest.getFullPath(), false, null);
dest.setContents(new ByteArrayInputStream("ghijkl".getBytes()), false, true, null);
} catch (CoreException e) {
fail("1.0", e);
}
}
}