blob: 3c3fc73f566d8ce5a9ccc26acdb49e1ee52b01f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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.*;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.QualifiedName;
import org.eclipse.core.tests.resources.ResourceTest;
import org.eclipse.core.tests.resources.ResourceVisitorVerifier;
/**
* Resource#accept doesn't obey member flags for the traversal entry point.
*/
public class Bug_028981 extends ResourceTest {
public Bug_028981(String name) {
super(name);
}
@Override
protected void setUp() throws Exception {
super.setUp();
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
}
public void testBug() {
final QualifiedName partner = new QualifiedName("org.eclipse.core.tests.resources", "myTarget");
final IWorkspace workspace = getWorkspace();
final ISynchronizer synchronizer = workspace.getSynchronizer();
synchronizer.add(partner);
IProject project = workspace.getRoot().getProject("MyProject");
IFile teamPrivateFile = project.getFile("teamPrivate.txt");
IFile phantomFile = project.getFile("phantom.txt");
IFile regularFile = project.getFile("regular.txt");
IFile projectDescriptionFile = project.getFile(".project");
ensureExistsInWorkspace(new IResource[] {teamPrivateFile, regularFile}, true);
try {
synchronizer.setSyncInfo(partner, phantomFile, getRandomString().getBytes());
} catch (CoreException e) {
e.printStackTrace();
fail("0.5");
}
try {
teamPrivateFile.setTeamPrivateMember(true);
} catch (CoreException e) {
e.printStackTrace();
fail("0.6");
}
assertTrue("0.7", !regularFile.isPhantom() && !regularFile.isTeamPrivateMember());
assertTrue("0.8", teamPrivateFile.isTeamPrivateMember());
assertTrue("0.8b", teamPrivateFile.exists());
assertTrue("0.9", phantomFile.isPhantom());
assertTrue("0.9b", !phantomFile.exists());
ResourceVisitorVerifier verifier = new ResourceVisitorVerifier();
verifier.addExpected(project);
verifier.addExpected(projectDescriptionFile);
verifier.addExpected(regularFile);
try {
project.accept(verifier);
} catch (CoreException e) {
fail("1.0", e);
}
assertTrue("1.1 - " + verifier.getMessage(), verifier.isValid());
verifier.reset();
try {
phantomFile.accept(verifier);
fail("2.0 - should fail");
} catch (CoreException e) {
//success
}
verifier.reset();
verifier.addExpected(phantomFile);
try {
phantomFile.accept(verifier, IResource.DEPTH_INFINITE, IContainer.INCLUDE_PHANTOMS);
} catch (CoreException e) {
fail("3.0", e);
}
assertTrue("3.1 - " + verifier.getMessage(), verifier.isValid());
verifier.reset();
// no resources should be visited
try {
teamPrivateFile.accept(verifier);
} catch (CoreException e) {
fail("4.0", e);
}
assertTrue("4.1 - " + verifier.getMessage(), verifier.isValid());
verifier.reset();
verifier.addExpected(teamPrivateFile);
try {
teamPrivateFile.accept(verifier, IResource.DEPTH_INFINITE, IContainer.INCLUDE_TEAM_PRIVATE_MEMBERS);
} catch (CoreException e) {
fail("5.0", e);
}
assertTrue("5.1 - " + verifier.getMessage(), verifier.isValid());
}
public static Test suite() {
return new TestSuite(Bug_028981.class);
}
}