blob: 357b7e11145c5253bee700a5637c6a70cf931264 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Martin Kloesch and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Martin Kloesch - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.lang.python.py4j;
import java.io.IOException;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.model.LineBreakpoint;
import org.eclipse.ease.lang.python.py4j.internal.Py4jDebuggerEngine;
import org.eclipse.ease.testhelper.AbstractDebugTest;
import org.junit.Ignore;
import org.junit.Test;
public class Py4jDebugTest extends AbstractDebugTest {
@Override
protected String getEngineId() {
return Py4jDebuggerEngine.ENGINE_ID;
}
@Override
protected String getScriptSource() throws IOException {
return readResource("org.eclipse.ease.testhelper", "/resources/DebugTest/main.py");
}
@Override
protected LineBreakpoint setBreakpoint(IFile file, int lineNumber) throws CoreException {
final IMarker marker = file.createMarker("org.python.pydev.debug.pyStopBreakpointMarker");
marker.setAttribute("org.eclipse.debug.core.enabled", true);
marker.setAttribute("org.eclipse.debug.core.id", "org.python.pydev.debug");
marker.setAttribute(IMarker.LINE_NUMBER, lineNumber);
final LineBreakpoint breakpoint = new LineBreakpoint() {
@Override
public String getModelIdentifier() {
return "org.python.pydev.debug";
}
};
breakpoint.setMarker(marker);
DebugPlugin.getDefault().getBreakpointManager().addBreakpoint(breakpoint);
return breakpoint;
}
@Override
protected IBreakpoint[] getBreakpoints() throws CoreException {
return DebugPlugin.getDefault().getBreakpointManager().getBreakpoints("org.python.pydev.debug");
}
@Override
@Test
@Ignore
public void nativeObjectVariable() throws CoreException, IOException {
// TODO: Currently not possible to access native Python variables
}
@Override
@Test
@Ignore
public void nativeArrayVariable() throws CoreException, IOException {
// TODO: Currently not possible to access native Python variables
}
}