Search in sources :

Example 1 with BreakpointChangeType

use of nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType in project watchdog by TestRoots.

the class BreakpointChangeClassifierTest method testClassifyThreeChanges.

@Test
public void testClassifyThreeChanges() {
    Breakpoint old = createBreakpoint();
    Breakpoint bp = createBreakpoint();
    old.setEnabled(true);
    bp.setEnabled(false);
    old.setHitCount(1);
    bp.setHitCount(-1);
    old.setSuspendPolicy(0);
    bp.setSuspendPolicy(1);
    List<BreakpointChangeType> results = BreakpointChangeClassifier.classify(old, bp);
    assertEquals(3, results.size());
    assertTrue(results.contains(BreakpointChangeType.DISABLED));
    assertTrue(results.contains(BreakpointChangeType.HC_REMOVED));
    assertTrue(results.contains(BreakpointChangeType.SP_CHANGED));
}
Also used : Breakpoint(nl.tudelft.watchdog.core.logic.breakpoint.Breakpoint) BreakpointChangeType(nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType) Test(org.junit.Test)

Example 2 with BreakpointChangeType

use of nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType in project watchdog by TestRoots.

the class BreakpointChangeClassifierTest method testClassifyNewBPIsNull.

@Test
public void testClassifyNewBPIsNull() {
    Breakpoint bp = createBreakpoint();
    List<BreakpointChangeType> result = BreakpointChangeClassifier.classify(bp, null);
    assertEquals(1, result.size());
    assertEquals(BreakpointChangeType.UNKNOWN, result.get(0));
}
Also used : Breakpoint(nl.tudelft.watchdog.core.logic.breakpoint.Breakpoint) BreakpointChangeType(nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType) Test(org.junit.Test)

Example 3 with BreakpointChangeType

use of nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType in project watchdog by TestRoots.

the class BreakpointChangeClassifierTest method testClassifyHCChanged.

@Test
public void testClassifyHCChanged() {
    Breakpoint old = createBreakpoint();
    Breakpoint bp = createBreakpoint();
    old.setHitCount(1);
    bp.setHitCount(2);
    List<BreakpointChangeType> result = BreakpointChangeClassifier.classify(old, bp);
    assertEquals(1, result.size());
    assertEquals(BreakpointChangeType.HC_CHANGED, result.get(0));
}
Also used : Breakpoint(nl.tudelft.watchdog.core.logic.breakpoint.Breakpoint) BreakpointChangeType(nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType) Test(org.junit.Test)

Example 4 with BreakpointChangeType

use of nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType in project watchdog by TestRoots.

the class BreakpointChangeClassifierTest method testClassifyConditionAdded.

@Test
public void testClassifyConditionAdded() {
    Breakpoint old = createBreakpoint();
    Breakpoint bp = createBreakpoint();
    old.setCondition(null);
    bp.setCondition("cond");
    List<BreakpointChangeType> result = BreakpointChangeClassifier.classify(old, bp);
    assertEquals(1, result.size());
    assertEquals(BreakpointChangeType.UNKNOWN, result.get(0));
}
Also used : Breakpoint(nl.tudelft.watchdog.core.logic.breakpoint.Breakpoint) BreakpointChangeType(nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType) Test(org.junit.Test)

Example 5 with BreakpointChangeType

use of nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType in project watchdog by TestRoots.

the class BreakpointChangeClassifierTest method testClassifyTwoChanges.

@Test
public void testClassifyTwoChanges() {
    Breakpoint old = createBreakpoint();
    Breakpoint bp = createBreakpoint();
    old.setEnabled(false);
    bp.setEnabled(true);
    old.setHitCount(-1);
    bp.setHitCount(1);
    List<BreakpointChangeType> results = BreakpointChangeClassifier.classify(old, bp);
    assertEquals(2, results.size());
    assertTrue(results.contains(BreakpointChangeType.ENABLED));
    assertTrue(results.contains(BreakpointChangeType.HC_ADDED));
}
Also used : Breakpoint(nl.tudelft.watchdog.core.logic.breakpoint.Breakpoint) BreakpointChangeType(nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType) Test(org.junit.Test)

Aggregations

BreakpointChangeType (nl.tudelft.watchdog.core.logic.breakpoint.BreakpointChangeType)24 Test (org.junit.Test)22 Breakpoint (nl.tudelft.watchdog.core.logic.breakpoint.Breakpoint)20 Date (java.util.Date)6 BreakpointChangeEvent (nl.tudelft.watchdog.core.logic.event.eventtypes.debugging.BreakpointChangeEvent)6 ArrayList (java.util.ArrayList)4 WatchDogItem (nl.tudelft.watchdog.core.logic.storage.WatchDogItem)4 XBreakpoint (com.intellij.xdebugger.breakpoints.XBreakpoint)1 IBreakpoint (org.eclipse.debug.core.model.IBreakpoint)1