blob: 3a2a09cc4d0fa172b9d307b214d053092be00c90 [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.CoreException;
import org.eclipse.core.tests.internal.builders.DeltaVerifierBuilder;
import org.eclipse.core.tests.resources.AutomatedTests;
import org.eclipse.core.tests.resources.WorkspaceSessionTest;
import org.eclipse.core.tests.session.SessionTestSuite;
import org.eclipse.core.tests.session.WorkspaceSessionTestSuite;
public class Test1GALH44 extends WorkspaceSessionTest {
public Test1GALH44(String name) {
super(name);
}
/**
* Prepares the environment. Create some resources and save the workspace.
*/
public void test1() {
IProject project = getWorkspace().getRoot().getProject("MyProject");
IProjectDescription description = getWorkspace().newProjectDescription("MyProject");
ICommand command = description.newCommand();
command.setBuilderName(DeltaVerifierBuilder.BUILDER_NAME);
description.setBuildSpec(new ICommand[] {command});
try {
project.create(getMonitor());
project.open(getMonitor());
project.setDescription(description, getMonitor());
} catch (CoreException e) {
fail("1.0", e);
}
IFile file = project.getFile("foo.txt");
try {
file.create(getRandomContents(), true, getMonitor());
} catch (CoreException e) {
fail("2.0", e);
}
try {
getWorkspace().save(true, getMonitor());
} catch (CoreException e) {
fail("3.0", e);
}
}
/**
* Step 2, edit a file then immediately crash.
*/
public void test2() {
IProject project = getWorkspace().getRoot().getProject("MyProject");
IFile file = project.getFile("foo.txt");
try {
file.setContents(getRandomContents(), true, true, getMonitor());
} catch (CoreException e) {
fail("1.0", e);
}
// crash
System.exit(-1);
}
/**
* Now immediately try to save after recovering from crash.
*/
public void test3() {
try {
getWorkspace().save(true, getMonitor());
} catch (CoreException e) {
fail("3.0", e);
}
//cleanup
ensureDoesNotExistInWorkspace(getWorkspace().getRoot());
try {
getWorkspace().save(true, null);
} catch (CoreException e) {
fail("99.99", e);
}
}
public static Test suite() {
SessionTestSuite suite = new WorkspaceSessionTestSuite(AutomatedTests.PI_RESOURCES_TESTS, Test1GALH44.class.getName());
suite.addTest(new Test1GALH44("test1"));
suite.addCrashTest(new Test1GALH44("test2"));
suite.addTest(new Test1GALH44("test3"));
return suite;
}
}