alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.api.debugger.jpda;

import org.netbeans.spi.viewmodel.NoInformationException;

/**
 * Tests method breakpoints.
 *
 * @author Maros Sandor
 */
public class MethodBreakpointTest extends DebuggerJPDAApiTestBase {

    private JPDASupport     support;
    private JPDADebugger    debugger;

    private static final String CLASS_NAME = "basic.MethodBreakpointApp";

    public MethodBreakpointTest(String s) {
        super(s);
    }

    protected void setUp() throws Exception {
        super.setUp();
    }

    public void testMethodBreakpoints() throws Exception {
        try {
            MethodBreakpoint mb1 = MethodBreakpoint.create(CLASS_NAME, "a");
            TestBreakpointListener tbl = new TestBreakpointListener("a", 40, 1);
            mb1.addJPDABreakpointListener(tbl);
            dm.addBreakpoint(mb1);

            MethodBreakpoint mb2 = MethodBreakpoint.create(CLASS_NAME, "b");
            TestBreakpointListener tb2 = new TestBreakpointListener("b", 45, 2);
            mb2.addJPDABreakpointListener(tb2);
            dm.addBreakpoint(mb2);

            MethodBreakpoint mb3 = MethodBreakpoint.create(CLASS_NAME, "c");
            TestBreakpointListener tb3 = new TestBreakpointListener("c", 49, 4);
            mb3.addJPDABreakpointListener(tb3);
            dm.addBreakpoint(mb3);

            MethodBreakpoint mb4 = MethodBreakpoint.create(CLASS_NAME, "");
            TestBreakpointListener tb4 = new TestBreakpointListener("", 35, 1);
            mb4.addJPDABreakpointListener(tb4);
            dm.addBreakpoint(mb4);

            MethodBreakpoint mb5 = MethodBreakpoint.create(CLASS_NAME, "");
            TestBreakpointListener tb5 = new TestBreakpointListener("", 32, 1);
            mb5.addJPDABreakpointListener(tb5);
            dm.addBreakpoint(mb5);

            MethodBreakpoint mb6 = MethodBreakpoint.create(CLASS_NAME + "$InnerStatic", "");
            TestBreakpointListener tb6 = new TestBreakpointListener("InnerStatic.", 54, 1);
            mb6.addJPDABreakpointListener(tb6);
            dm.addBreakpoint(mb6);

            MethodBreakpoint mb7 = MethodBreakpoint.create(CLASS_NAME + "$InnerStatic", "getW");
            TestBreakpointListener tb7 = new TestBreakpointListener("InnerStatic.getW", 75, 1);
            mb7.addJPDABreakpointListener(tb7);
            dm.addBreakpoint(mb7);

            MethodBreakpoint mb8 = MethodBreakpoint.create(CLASS_NAME + "$Inner", "");
            TestBreakpointListener tb8 = new TestBreakpointListener("Inner.", 87, 4);
            mb8.addJPDABreakpointListener(tb8);
            dm.addBreakpoint(mb8);

            MethodBreakpoint mb9 = MethodBreakpoint.create(CLASS_NAME + "$Inner", "getW");
            TestBreakpointListener tb9 = new TestBreakpointListener("Inner.getW", 92, 8);
            mb9.addJPDABreakpointListener(tb9);
            dm.addBreakpoint(mb9);

            support = JPDASupport.listen(CLASS_NAME, false);
            debugger = support.getDebugger();

            for (;;) {
                support.waitStates(DebuggerConstants.STATE_STOPPED, DebuggerConstants.STATE_DISCONNECTED, 10000);
                if (debugger.getState() == DebuggerConstants.STATE_DISCONNECTED) break;
                support.doContinue();
            }
            tbl.assertFailure();
            tb2.assertFailure();
            tb3.assertFailure();
            tb4.assertFailure();
            tb5.assertFailure();
            tb6.assertFailure();
            tb7.assertFailure();
            tb8.assertFailure();
            tb9.assertFailure();

            dm.removeBreakpoint(mb1);
            dm.removeBreakpoint(mb2);
            dm.removeBreakpoint(mb3);
            dm.removeBreakpoint(mb4);
            dm.removeBreakpoint(mb5);
            dm.removeBreakpoint(mb6);
            dm.removeBreakpoint(mb7);
            dm.removeBreakpoint(mb8);
            dm.removeBreakpoint(mb9);
        } finally {
            support.doFinish();
        }
    }

    private class TestBreakpointListener implements JPDABreakpointListener {

        private int                 hitCount;
        private AssertionError      failure;
        private String methodName;
        private int hitLine;
        private int expectedHitCount;

        public TestBreakpointListener(String methodName, int hitLine, int expectedHitCount) {
            this.methodName = methodName;
            this.hitLine = hitLine;
            this.expectedHitCount = expectedHitCount;
        }

        public void breakpointReached(JPDABreakpointEvent event) {
            try {
                checkEvent(event);
            } catch (AssertionError e) {
                failure = e;
            } catch (Throwable e) {
                failure = new AssertionError(e);
            }
        }

        private void checkEvent(JPDABreakpointEvent event) throws NoInformationException {
            MethodBreakpoint mb = (MethodBreakpoint) event.getSource();

            assertEquals("Breakpoint event: Condition evaluation failed", DebuggerConstants.CONDITION_NONE, event.getConditionResult());
            assertNotNull("Breakpoint event: Context thread is null", event.getThread());
            assertEquals("Breakpoint event: Hit at wrong place", hitLine, getLine(event));
            assertEquals("Breakpoint event: Hit at wrong method", mb.getMethodName(), getMethod(event));

            hitCount++;
        }

        public void assertFailure() {
            if (failure != null) throw failure;
            assertEquals("Breakpoint hit count mismatch for: " + methodName, expectedHitCount, hitCount);
        }
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.