blob: 72ab471d9e9852023edca9b13ac4cb67cefbd3b1 [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.session;
import junit.framework.Test;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.*;
import org.eclipse.core.tests.resources.AutomatedTests;
import org.eclipse.core.tests.session.WorkspaceSessionTestSuite;
/**
* This is a test for bug 12507. Immediately after workspace startup, closed projects
* would always specify the default location, even if they were not at the default
* location. After opening the project, the location would be corrected.
*/
public class TestClosedProjectLocation extends WorkspaceSerializationTest {
IPath location = Platform.getLocation().removeLastSegments(1).append("OtherLocation");
/**
* Constructor for TestClosedProjectLocation.
*/
public TestClosedProjectLocation() {
super();
}
/**
* Constructor for TestClosedProjectLocation.
* @param name
*/
public TestClosedProjectLocation(String name) {
super(name);
}
/**
* Create a project at a non-default location, and close it.
*/
public void test1() {
IProject project = workspace.getRoot().getProject(PROJECT);
IFile file = project.getFile(FILE);
try {
IProjectDescription desc = workspace.newProjectDescription(PROJECT);
desc.setLocation(location);
project.create(desc, getMonitor());
project.open(getMonitor());
ensureExistsInWorkspace(file, true);
project.close(getMonitor());
} catch (CoreException e) {
fail("1.0", e);
}
assertEquals("1.1", location, project.getLocation());
try {
workspace.save(true, getMonitor());
} catch (CoreException e) {
fail("1.2", e);
}
}
/**
* Now check the location of the closed project.
*/
public void test2() {
try {
IProject project = workspace.getRoot().getProject(PROJECT);
IFile file = project.getFile(FILE);
assertTrue("1.0", project.exists());
assertTrue("1.1", !project.isOpen());
assertTrue("1.2", !file.exists());
assertEquals("1.3", location, project.getLocation());
} finally {
ensureDoesNotExistInFileSystem(location.toFile());
}
}
public static Test suite() {
return new WorkspaceSessionTestSuite(AutomatedTests.PI_RESOURCES_TESTS, TestClosedProjectLocation.class);
}
}