blob: 57952895419f32810a80fdf4dc90b3a3a957e698 [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.resources.regression;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.runtime.*;
import org.eclipse.core.tests.resources.ResourceTest;
public class PR_1GH2B0N_Test extends ResourceTest {
/**
* Constructor for PR_1GH2B0N_Test
*/
public PR_1GH2B0N_Test() {
super();
}
/**
* Constructor for PR_1GH2B0N_Test
*/
public PR_1GH2B0N_Test(String name) {
super(name);
}
public static Test suite() {
return new TestSuite(PR_1GH2B0N_Test.class);
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
ensureDoesNotExistInWorkspace(getWorkspace().getRoot());
}
public void test_1GH2B0N() {
IPath path = getTempDir().append("1GH2B0N");
IProject project = getWorkspace().getRoot().getProject("MyProject");
IProjectDescription description = getWorkspace().newProjectDescription("MyProject");
IPath projectLocation = path.append(project.getName());
description.setLocation(projectLocation);
try {
try {
project.create(description, getMonitor());
} catch (CoreException e) {
fail("1.0", e);
}
try {
project.open(getMonitor());
} catch (CoreException e) {
fail("1.1", e);
}
IProject project2 = getWorkspace().getRoot().getProject("MyProject2");
IStatus status = getWorkspace().validateProjectLocation(project2, project.getLocation().append(project2.getName()));
//Note this is not the original error case -
//since Eclipse 3.2 a project is allowed to be nested in another project
assertTrue("2.0", status.isOK());
} finally {
ensureDoesNotExistInWorkspace(project);
ensureDoesNotExistInFileSystem(projectLocation.toFile());
}
}
}