blob: c77121e3efa34f7f31bee0193a7d5bdeafb3dc73 [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.usecase;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.QualifiedName;
import org.eclipse.core.tests.resources.ResourceTest;
public abstract class IResourceTest extends ResourceTest {
public static QualifiedName Q_NAME_SESSION = new QualifiedName("prop", "session");
public static String STRING_VALUE = "value";
public static String PROJECT = "Project";
public static String FOLDER = "Folder";
public static String FILE = "File";
public IResourceTest() {
super();
}
public IResourceTest(String name) {
super(name);
}
/**
* Tests failure on get/set methods invoked on a nonexistent or unopened solution.
* Get methods either throw an exception or return null (abnormally).
* Set methods throw an exception.
*/
protected void commonFailureTestsForResource(IResource resource, boolean created) {
/* Prefix to assertion messages. */
String method = "commonFailureTestsForResource(IResource," + (created ? "CREATED" : "NONEXISTENT") + "): ";
if (!created) {
assertTrue(method + "1", getWorkspace().getRoot().findMember(resource.getFullPath()) == null);
}
/* Session properties */
try {
resource.getSessionProperty(Q_NAME_SESSION);
fail(method + "2.1");
} catch (CoreException e) {
// expected
}
try {
resource.setSessionProperty(Q_NAME_SESSION, STRING_VALUE);
fail(method + "2.2");
} catch (CoreException e) {
// expected
}
}
}