blob: 2a54185d4a85da1f96ef23dd6a6786749d020c4d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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
* Sian January - initial version
*******************************************************************************/
package org.eclipse.ajdt.ui.tests;
import org.eclipse.core.resources.IProject;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.internal.Workbench;
import org.eclipse.ui.internal.views.log.AbstractEntry;
import org.eclipse.ui.internal.views.log.LogEntry;
import org.eclipse.ui.internal.views.log.LogView;
public class Bug106813Test extends UITestCase {
public void testBug106813() throws Exception {
IViewPart view = Workbench.getInstance().getActiveWorkbenchWindow().getActivePage().getActivePart().getSite().getPage().showView("org.eclipse.pde.runtime.LogView"); //$NON-NLS-1$
if(view instanceof LogView) {
LogView logView = (LogView)view;
AbstractEntry[] logs = logView.getElements();
int originalNumberOfLogEntries = logs.length;
IProject project = createPredefinedProject("Bean Example"); //$NON-NLS-1$
assertTrue("The Bean Example project should have been created", project != null); //$NON-NLS-1$
project.close(null);
// This test occasionally fails on the build server...why?
waitForJobsToComplete();
waitForJobsToComplete();
assertFalse("The Bean Example project should be closed", project.isOpen()); //$NON-NLS-1$
// Check that no more errors have appeared in the error log
logs = logView.getElements();
String newLogStr = printNewLogs(logs, originalNumberOfLogEntries);
assertTrue("The error log should not have had any errors added to it:\n" + newLogStr, //$NON-NLS-1$
newLogStr.length() == 0);
}
}
String printNewLogs(AbstractEntry[] logs, int startFrom) {
StringBuffer sb = new StringBuffer();
for (int i = startFrom; i < logs.length; i++) {
if (((LogEntry) logs[i]).getMessage().indexOf("sleep interrupted") == -1) {
sb.append("ENTRY " + (i-startFrom) + "\n");
sb.append(((LogEntry) logs[i]).getMessage() + "\n");
sb.append(((LogEntry) logs[i]).getStack());
}
}
return sb.toString();
}
}