Package generic.test

Class AbstractGenericTest

    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static void clickMouse​(java.awt.Component comp, int button, int x, int y, int clickCount, int modifiers)
      Simulates click the mouse button.
      static void clickMouse​(java.awt.Component comp, int button, int x, int y, int clickCount, int modifiers, boolean popupTrigger)
      Simulates click the mouse button.
      static void clickTableCell​(javax.swing.JTable table, int row, int col, int clickCount)  
      protected ApplicationConfiguration createApplicationConfiguration()  
      protected ApplicationLayout createApplicationLayout()  
      static java.lang.String createStackTraceForAllThreads()
      Returns a string which is a printout of a stack trace for each thread running in the current JVM
      static java.io.File createTempDirectory​(java.lang.String name)
      Creates a sub-directory with the given name as a child of the Java temp directory.
      java.io.File createTempFile​(java.lang.String name)
      Creates a file in the Java temp directory using the given name as a prefix and the given suffix.
      java.io.File createTempFile​(java.lang.String name, java.lang.String suffix)
      Creates a file in the Java temp directory using the given name as a prefix and the given suffix.
      java.io.File createTempFileForTest()
      Creates a temp file for the current test, using the test name as a prefix for the filename.
      java.io.File createTempFileForTest​(java.lang.String suffix)
      Creates a temp file for the current test, using the test name as a prefix for the filename.
      java.lang.String createTempFilePath​(java.lang.String name)
      Creates a file path with a filename that is under the system temp directory.
      java.lang.String createTempFilePath​(java.lang.String name, java.lang.String extension)
      Creates a file path with a filename that is under the system temp directory.
      static void deleteMatchingTempFiles​(java.lang.String namePattern)
      Delete any files under the this test case's specific temp directory that match the give regex Pattern
      static void deleteSimilarTempFiles​(java.lang.String nameText)
      Delete any files under the Java temp directory that have the given text in their name.
      static void doubleClick​(javax.swing.JComponent comp, int x, int y)  
      static void dragMouse​(java.awt.Component comp, int button, int startX, int startY, int endX, int endY, int modifiers)
      Simulates a mouse drag action
      static javax.swing.table.TableCellEditor editCell​(javax.swing.JTable table, int row, int col)  
      static void executeOnSwingWithoutBlocking​(java.lang.Runnable runnable)
      Launches the runnable on a new thread so as to not block the calling thread.
      static javax.swing.AbstractButton findAbstractButtonByName​(java.awt.Container container, java.lang.String name)
      Searches the sub-components of the given container and returns the AbstractButton that has the specified name.
      static javax.swing.AbstractButton findAbstractButtonByText​(java.awt.Container container, java.lang.String text)
      Searches the sub-components of the given container and returns the AbstractButton that has the specified text.
      static javax.swing.JButton findButtonByIcon​(java.awt.Container container, javax.swing.Icon icon)  
      static javax.swing.JButton findButtonByText​(java.awt.Container container, java.lang.String text)
      Searches the subcomponents of the the given container and returns the JButton that has the specified text.
      static <T extends java.awt.Component>
      T
      findComponent​(java.awt.Container parent, java.lang.Class<T> desiredClass)  
      static <T extends java.awt.Component>
      T
      findComponent​(java.awt.Container parent, java.lang.Class<T> desiredClass, boolean checkOwnedWindows)  
      static java.awt.Component findComponentByName​(java.awt.Container container, java.lang.String componentName)
      Searches the subcomponents of the indicated container and returns the component with the specified name.
      static java.awt.Component findComponentByName​(java.awt.Container container, java.lang.String componentName, boolean checkOwnedWindows)  
      static java.util.List<java.awt.Component> findComponentsByName​(java.awt.Container container, java.lang.String componentName, boolean checkOwnedWindows)  
      static void findOwnedWindows​(java.awt.Window win, java.util.Set<java.awt.Window> winList)  
      protected static javax.swing.tree.TreePath findPathToText​(javax.swing.JTree tree, javax.swing.tree.TreePath startTreePath, java.lang.String text)
      Performs a depth first search for the named tree node.
      static java.io.File findTestDataFile​(java.lang.String path)
      Returns the file within the data directory of the TestResources module that matches the given relative path.
      static javax.swing.tree.TreePath findTreePathToText​(javax.swing.JTree tree, java.lang.String text)
      Finds the path of a tree node in the indicated tree with the specified text.
      static void fixupGUI()
      Invoke fixupGUI at the beginning of your JUnit test or in its setup() method to make your GUI for the JUnit test appear using the system Look & Feel.
      static java.util.Set<java.awt.Window> getAllWindows()
      Gets all windows in the system (including Frames).
      static java.io.File getDebugFileDirectory()
      Returns the directory into which tests can write debug files, such as files containing print statements or image files.
      static java.lang.Object getInstanceField​(java.lang.String fieldName, java.lang.Object ownerInstance)
      Gets the instance field by the given name on the given object instance.
      static <T> T getInstanceFieldByClassType​(java.lang.Class<T> classType, java.lang.Object ownerInstance)
      Get the first field object contained within object ownerInstance which has the type classType.
      java.io.File getLocalResourceFile​(java.lang.String relativePath)  
      static java.io.File getTestDataDir​(java.lang.String relativePath)
      Returns a file that points to the location on disk of the given relative path name.
      static java.io.File getTestDataDirectory()
      Returns the data directory containing test programs and data
      static java.io.File getTestDataFile​(java.lang.String path)
      Returns the file within the data directory of the TestResources module that matches the given relative path
      static java.lang.String getText​(javax.swing.text.JTextComponent field)  
      protected boolean hasTestFailed()
      Determine if test failure occur (for use within tear down methods)
      protected void initializeLayout​(ApplicationLayout layout)
      A method to update any ApplicationLayout values
      protected void initializeSystemProperties()
      A place to initialize and needed static properties
      static java.lang.Object invokeConstructor​(java.lang.Class<?> containingClass, java.lang.Class<?>[] parameterTypes, java.lang.Object[] args)
      Uses reflection to execute the constructor for the given class with the given parameters.
      static java.lang.Object invokeInstanceMethod​(java.lang.String methodName, java.lang.Object ownerInstance)
      This method is just a "pass through" method for invokeInstanceMethod(String, Object, Class[], Object[]) so that callers do not need to pass null to that method when the underlying instance method does not have any parameters.
      static java.lang.Object invokeInstanceMethod​(java.lang.String methodName, java.lang.Object ownerInstance, java.lang.Class<?>[] parameterTypes, java.lang.Object[] args)
      Uses reflection to execute the method denoted by the given method name.
      static void leftClick​(javax.swing.JComponent comp, int x, int y)  
      static java.util.List<java.lang.String> loadTextResource​(java.lang.Class<?> cls, java.lang.String name)
      Load a text resource file into an ArrayList.
      static java.util.ArrayList<java.lang.String> loadTextResource​(java.lang.String name)  
      static void middleClick​(javax.swing.JComponent comp, int x, int y)  
      static void moveMouse​(java.awt.Component comp, int x, int y)
      Fire a mouse moved event for the given component.
      static void postEvent​(java.awt.AWTEvent ev)  
      static void pressButton​(javax.swing.AbstractButton button)
      Programmatically presses the indicated button.
      static void pressButton​(javax.swing.AbstractButton button, boolean waitForCompletion)
      Programmatically presses the indicated button.
      static void pressButtonByName​(java.awt.Container container, java.lang.String buttonName)
      Finds the button with the indicated NAME that is a subcomponent of the indicated container, and then programmatically presses the button.
      static void pressButtonByName​(java.awt.Container container, java.lang.String buttonName, boolean waitForCompletion)
      Finds the button with the indicated NAME that is a subcomponent of the indicated container, and then programmatically presses the button.
      static void pressButtonByText​(java.awt.Container container, java.lang.String buttonText)
      Finds the button with the indicated TEXT that is a sub-component of the indicated container, and then programmatically presses the button.
      static void pressButtonByText​(java.awt.Container container, java.lang.String buttonText, boolean waitForCompletion)
      Finds the button with the indicated TEXT that is a sub-component of the indicated container, and then programmatically presses the button.
      static void printMemory()  
      static void privateWaitForPostedSwingRunnables_SwingSafe()
      Deprecated.
      This is not a test writer's method, but instead an infrastructure method.
      static void rightClick​(javax.swing.JComponent comp, int x, int y)  
      static void runSwing​(java.lang.Runnable runnable)  
      static void runSwing​(java.lang.Runnable runnable, boolean wait)  
      static <T> T runSwing​(java.util.function.Supplier<T> s)
      Returns the value from the given Supplier, invoking the call in the Swing thread.
      static void runSwingWithExceptions​(java.lang.Runnable runnable, boolean wait)
      Call this version of runSwing(Runnable) when you expect your runnable to throw an exception
      static <T> void setComboBoxSelection​(javax.swing.JComboBox<T> comboField, T selection)  
      static void setInstanceField​(java.lang.String fieldName, java.lang.Object ownerInstance, java.lang.Object value)
      Sets the instance field by the given name on the given object instance.
      static void setText​(javax.swing.text.JTextComponent field, java.lang.String text)  
      protected void testFailed​(java.lang.Throwable e)
      A callback for subclasses when a test has failed.
      static java.lang.String toString​(java.util.Collection<?> collection)
      Prints the contents of the given collection by way of the Object.toString() method.
      static void waitForPostedSwingRunnables()  
      static boolean waitForSwing()
      Waits for the Swing thread to process any pending events.
      static void waitForTasks()
      Waits for all system tasks to complete.
      static java.awt.Window windowForComponent​(java.awt.Component c)
      Returns the window parent of c.
      protected static void yieldToSwing()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • TESTDATA_DIRECTORY_NAME

        public static final java.lang.String TESTDATA_DIRECTORY_NAME
        See Also:
        Constant Field Values
      • DEFAULT_TOOL_NAME

        public static final java.lang.String DEFAULT_TOOL_NAME
        See Also:
        Constant Field Values
      • DEFAULT_TEST_TOOL_NAME

        public static final java.lang.String DEFAULT_TEST_TOOL_NAME
        See Also:
        Constant Field Values
      • watchman

        public org.junit.rules.TestWatcher watchman
      • concurrentTestExceptionRule

        public org.junit.rules.TestRule concurrentTestExceptionRule
      • ruleChain

        public org.junit.rules.RuleChain ruleChain
    • Constructor Detail

      • AbstractGenericTest

        public AbstractGenericTest()
    • Method Detail

      • initializeSystemProperties

        protected void initializeSystemProperties()
        A place to initialize and needed static properties
      • initializeLayout

        protected void initializeLayout​(ApplicationLayout layout)
        A method to update any ApplicationLayout values
        Parameters:
        layout - the layout to initialize
      • hasTestFailed

        protected boolean hasTestFailed()
        Determine if test failure occur (for use within tear down methods)
        Returns:
        true if test failure detected
      • testFailed

        protected void testFailed​(java.lang.Throwable e)
        A callback for subclasses when a test has failed. This will be called before tearDown()
        Parameters:
        e - the exception that happened when the test failed
      • windowForComponent

        public static java.awt.Window windowForComponent​(java.awt.Component c)
        Returns the window parent of c. If c is a window, then c is returned.

        Warning: this differs from SwingUtilities.windowForComponent(Component) in that the latter method will not return the given component if it is a window.

        Parameters:
        c - the component
        Returns:
        the window
      • getAllWindows

        public static java.util.Set<java.awt.Window> getAllWindows()
        Gets all windows in the system (including Frames).
        Returns:
        all windows
      • getLocalResourceFile

        public java.io.File getLocalResourceFile​(java.lang.String relativePath)
      • loadTextResource

        public static java.util.List<java.lang.String> loadTextResource​(java.lang.Class<?> cls,
                                                                        java.lang.String name)
                                                                 throws java.io.IOException
        Load a text resource file into an ArrayList. Each line of the file is stored as an item in the list.
        Parameters:
        cls - class where resource exists
        name - resource filename
        Returns:
        list of lines contained in file
        Throws:
        java.io.IOException
      • loadTextResource

        public static java.util.ArrayList<java.lang.String> loadTextResource​(java.lang.String name)
                                                                      throws java.io.IOException
        Throws:
        java.io.IOException
      • getTestDataFile

        public static java.io.File getTestDataFile​(java.lang.String path)
                                            throws java.io.FileNotFoundException
        Returns the file within the data directory of the TestResources module that matches the given relative path

        A FileNotFoundException is throw if the file does not exist.

        Parameters:
        path - path relative to the data directory of the TestResources module.
        Returns:
        the file within the data directory of the TestResources module that matches the given relative path
        Throws:
        java.io.FileNotFoundException - if the given file does not exist
      • getTestDataDir

        public static java.io.File getTestDataDir​(java.lang.String relativePath)
                                           throws java.io.FileNotFoundException,
                                                  java.io.IOException
        Returns a file that points to the location on disk of the given relative path name. The path is relative to the test resources directory.
        Parameters:
        relativePath -
        Returns:
        a file that points to the location on disk of the relative path.
        Throws:
        java.io.FileNotFoundException - If the directory does not exist
        java.io.IOException - if the given path does not represent a directory
      • findTestDataFile

        public static java.io.File findTestDataFile​(java.lang.String path)
        Returns the file within the data directory of the TestResources module that matches the given relative path.

        Null is returned if the file could not be found.

        Parameters:
        path - path relative to the data directory of the TestResources module.
        Returns:
        the file within the data directory of the TestResources module that matches the given relative path
      • getTestDataDirectory

        public static java.io.File getTestDataDirectory()
        Returns the data directory containing test programs and data
        Returns:
        the data directory containing test programs and data
      • printMemory

        public static void printMemory()
      • waitForTasks

        public static void waitForTasks()
        Waits for all system tasks to complete. These tasks are tracked by the SystemUtilities during testing only.
        Throws:
        junit.framework.AssertionFailedError - if the timeout period expires while waiting for tasks
      • waitForPostedSwingRunnables

        public static void waitForPostedSwingRunnables()
      • findComponent

        public static <T extends java.awt.Component> T findComponent​(java.awt.Container parent,
                                                                     java.lang.Class<T> desiredClass)
      • findComponent

        public static <T extends java.awt.Component> T findComponent​(java.awt.Container parent,
                                                                     java.lang.Class<T> desiredClass,
                                                                     boolean checkOwnedWindows)
      • getInstanceFieldByClassType

        public static <T> T getInstanceFieldByClassType​(java.lang.Class<T> classType,
                                                        java.lang.Object ownerInstance)
        Get the first field object contained within object ownerInstance which has the type classType. This method is only really useful if it is known that only a single field of classType exists within the ownerInstance.
        Type Parameters:
        T -
        Parameters:
        classType -
        ownerInstance -
        Returns:
        field object of type classType or null
      • setInstanceField

        public static void setInstanceField​(java.lang.String fieldName,
                                            java.lang.Object ownerInstance,
                                            java.lang.Object value)
                                     throws java.lang.RuntimeException
        Sets the instance field by the given name on the given object instance.

        Note: if the field is static, then the ownerInstance field can be the class of the object that contains the variable.

        Parameters:
        fieldName - The name of the field to retrieve.
        ownerInstance - The object instance from which to get the variable instance.
        value - The value to use when setting the given field
        Throws:
        java.lang.RuntimeException - if there is a problem accessing the field using reflection. A RuntimeException is used so that calling tests can avoid using a try/catch block, but will still fail when an error is encountered.
        See Also:
        Field.set(Object, Object)
      • getInstanceField

        public static java.lang.Object getInstanceField​(java.lang.String fieldName,
                                                        java.lang.Object ownerInstance)
                                                 throws java.lang.RuntimeException
        Gets the instance field by the given name on the given object instance. The value is a primitive wrapper if it is a primitive type.

        Note: if the field is static, then the ownerInstance field can be the class of the object that contains the variable.

        Parameters:
        fieldName - The name of the field to retrieve.
        ownerInstance - The object instance from which to get the variable instance.
        Returns:
        The field instance.
        Throws:
        java.lang.RuntimeException - if there is a problem accessing the field using reflection. A RuntimeException is used so that calling tests can avoid using a try/catch block, but will still fail when an error is encountered.
        Since:
        Tracker Id 267
        See Also:
        Field.get(java.lang.Object)
      • invokeConstructor

        public static java.lang.Object invokeConstructor​(java.lang.Class<?> containingClass,
                                                         java.lang.Class<?>[] parameterTypes,
                                                         java.lang.Object[] args)
                                                  throws java.lang.RuntimeException
        Uses reflection to execute the constructor for the given class with the given parameters. The new instance of the given class will be returned.

        Parameters:
        containingClass - The class that contains the desired constructor.
        parameterTypes - The parameter types that the constructor takes. This value can be null or zero length if there are no parameters to pass
        args - The parameter values that should be passed to the constructor. This value can be null or zero length if there are no parameters to pass
        Returns:
        The new class instance
        Throws:
        java.lang.RuntimeException - if there is a problem accessing the constructor using reflection. A RuntimeException is used so that calling tests can avoid using a try/catch block, but will still fail when an error is encountered.
      • invokeInstanceMethod

        public static java.lang.Object invokeInstanceMethod​(java.lang.String methodName,
                                                            java.lang.Object ownerInstance,
                                                            java.lang.Class<?>[] parameterTypes,
                                                            java.lang.Object[] args)
                                                     throws java.lang.RuntimeException
        Uses reflection to execute the method denoted by the given method name. If any value is returned from the method execution, then it will be returned from this method. Otherwise, null is returned.

        Note: if the method is static, then the ownerInstance field can be the class of the object that contains the method.

        Parameters:
        methodName - The name of the method to execute.
        ownerInstance - The object instance of which the method will be executed.
        parameterTypes - The parameter types that the method takes.
        args - The parameter values that should be passed to the method. This value can be null or zero length if there are no parameters to pass
        Returns:
        The return value as returned from executing the method.
        Throws:
        java.lang.RuntimeException - if there is a problem accessing the field using reflection. A RuntimeException is used so that calling tests can avoid using a try/catch block, but will still fail when an error is encountered.
        Since:
        Tracker Id 267
        See Also:
        Method.invoke(java.lang.Object, java.lang.Object[])
      • invokeInstanceMethod

        public static java.lang.Object invokeInstanceMethod​(java.lang.String methodName,
                                                            java.lang.Object ownerInstance)
                                                     throws java.lang.RuntimeException
        This method is just a "pass through" method for invokeInstanceMethod(String, Object, Class[], Object[]) so that callers do not need to pass null to that method when the underlying instance method does not have any parameters.
        Parameters:
        methodName - The name of the method to execute.
        ownerInstance - The object instance of which the method will be executed.
        Returns:
        The return value as returned from executing the method.
        Throws:
        java.lang.RuntimeException - if there is a problem accessing the field using reflection. A RuntimeException is used so that calling tests can avoid using a try/catch block, but will still fail when an error is encountered.
        See Also:
        Method.invoke(java.lang.Object, java.lang.Object[]), invokeInstanceMethod(String, Object, Class[], Object[])
      • findOwnedWindows

        public static void findOwnedWindows​(java.awt.Window win,
                                            java.util.Set<java.awt.Window> winList)
      • pressButtonByText

        public static void pressButtonByText​(java.awt.Container container,
                                             java.lang.String buttonText)
        Finds the button with the indicated TEXT that is a sub-component of the indicated container, and then programmatically presses the button.
        The following is a sample JUnit test use:
         env.showTool();
         OptionDialog dialog = (OptionDialog) env.waitForDialog(OptionDialog.class, 1000);
         assertNotNull(dialog);
         pressButtonByText(dialog, "OK");
         
        Parameters:
        container - the container to search. (Typically a dialog.)
        buttonText - the text on the desired JButton.
        Throws:
        java.lang.AssertionError - if the button isn't found, isn't showing or isn't enabled
      • pressButtonByText

        public static void pressButtonByText​(java.awt.Container container,
                                             java.lang.String buttonText,
                                             boolean waitForCompletion)
        Finds the button with the indicated TEXT that is a sub-component of the indicated container, and then programmatically presses the button.
        Parameters:
        container - the container to search. (Typically a dialog.)
        buttonText - the text on the desired JButton.
        waitForCompletion - if true wait for action to complete before returning, otherwise schedule action to be performed and return immediately.
        Throws:
        java.lang.AssertionError - if the button isn't found, isn't showing or isn't enabled
      • pressButtonByName

        public static void pressButtonByName​(java.awt.Container container,
                                             java.lang.String buttonName)
        Finds the button with the indicated NAME that is a subcomponent of the indicated container, and then programmatically presses the button.
        Parameters:
        container - the container to search. (Typically a dialog)
        buttonName - the name on the desired AbstractButton (see Component.setName())
      • pressButtonByName

        public static void pressButtonByName​(java.awt.Container container,
                                             java.lang.String buttonName,
                                             boolean waitForCompletion)
        Finds the button with the indicated NAME that is a subcomponent of the indicated container, and then programmatically presses the button.
        Parameters:
        container - the container to search. (Typically a dialog.)
        buttonName - the name on the desired AbstractButton (see Component.setName()).
        waitForCompletion - if true wait for action to complete before returning, otherwise schedule action to be performed and return immediately
      • pressButton

        public static void pressButton​(javax.swing.AbstractButton button)
        Programmatically presses the indicated button.
        Parameters:
        button - the button
      • pressButton

        public static void pressButton​(javax.swing.AbstractButton button,
                                       boolean waitForCompletion)
        Programmatically presses the indicated button.
        Parameters:
        button - the button
        waitForCompletion - if true wait for action to complete before returning, otherwise schedule action to be performed and return immediately.
      • findComponentByName

        public static java.awt.Component findComponentByName​(java.awt.Container container,
                                                             java.lang.String componentName)
        Searches the subcomponents of the indicated container and returns the component with the specified name.
        Parameters:
        container - the container to search
        componentName - the name of the desired component
        Returns:
        the component, or null if not found
      • findComponentByName

        public static java.awt.Component findComponentByName​(java.awt.Container container,
                                                             java.lang.String componentName,
                                                             boolean checkOwnedWindows)
      • findComponentsByName

        public static java.util.List<java.awt.Component> findComponentsByName​(java.awt.Container container,
                                                                              java.lang.String componentName,
                                                                              boolean checkOwnedWindows)
      • findButtonByIcon

        public static javax.swing.JButton findButtonByIcon​(java.awt.Container container,
                                                           javax.swing.Icon icon)
      • findButtonByText

        public static javax.swing.JButton findButtonByText​(java.awt.Container container,
                                                           java.lang.String text)
        Searches the subcomponents of the the given container and returns the JButton that has the specified text.
        Parameters:
        container - the container to search
        text - the button text
        Returns:
        the JButton, or null the button was not found
      • findAbstractButtonByText

        public static javax.swing.AbstractButton findAbstractButtonByText​(java.awt.Container container,
                                                                          java.lang.String text)
        Searches the sub-components of the given container and returns the AbstractButton that has the specified text.

        This differs from findButtonByText(Container, String) in that this method will find buttons that do not extend from JButton. That method is convenient when you do not wish to cast the result from AbstractButton to JButton. Other than that, this method can handle all cases the other method cannot.

        Parameters:
        container - container to search
        text - button text
        Returns:
        null if the button was not found
      • findAbstractButtonByName

        public static javax.swing.AbstractButton findAbstractButtonByName​(java.awt.Container container,
                                                                          java.lang.String name)
        Searches the sub-components of the given container and returns the AbstractButton that has the specified name.
        Parameters:
        container - container to search
        name - the button name (you must set this manually).
        Returns:
        null if the button was not found
      • leftClick

        public static void leftClick​(javax.swing.JComponent comp,
                                     int x,
                                     int y)
      • middleClick

        public static void middleClick​(javax.swing.JComponent comp,
                                       int x,
                                       int y)
      • rightClick

        public static void rightClick​(javax.swing.JComponent comp,
                                      int x,
                                      int y)
      • doubleClick

        public static void doubleClick​(javax.swing.JComponent comp,
                                       int x,
                                       int y)
      • clickMouse

        public static void clickMouse​(java.awt.Component comp,
                                      int button,
                                      int x,
                                      int y,
                                      int clickCount,
                                      int modifiers,
                                      boolean popupTrigger)
        Simulates click the mouse button.
        Parameters:
        comp - the component to click on.
        button - the mouse button (1, 2, or 3)
        x - the x coordinate of the click location
        y - the y coordinate of the click location
        clickCount - the number of clicks (2 = double click)
        modifiers - additional modifiers (e.g. MouseEvent.SHIFT_MASK)
        popupTrigger - a boolean, true if this event is a trigger for a popup menu
      • clickMouse

        public static void clickMouse​(java.awt.Component comp,
                                      int button,
                                      int x,
                                      int y,
                                      int clickCount,
                                      int modifiers)
        Simulates click the mouse button.
        Parameters:
        comp - the component to click on.
        button - the mouse button (1, 2, or 3)
        x - the x coordinate of the click location
        y - the y coordinate of the click location
        clickCount - the number of clicks (2 = double click)
        modifiers - additional modifiers (e.g. MouseEvent.SHIFT_MASK)
      • dragMouse

        public static void dragMouse​(java.awt.Component comp,
                                     int button,
                                     int startX,
                                     int startY,
                                     int endX,
                                     int endY,
                                     int modifiers)
        Simulates a mouse drag action
        Parameters:
        comp - the component to drag on.
        button - the mouse button (1, 2, or 3)
        startX - the x coordinate of the start drag location
        startY - the y coordinate of the start drag location
        endX - the x coordinate of the end drag location
        endY - the y coordinate of the end drag location
        modifiers - additional modifiers (e.g. MouseEvent.SHIFT_MASK)
      • moveMouse

        public static void moveMouse​(java.awt.Component comp,
                                     int x,
                                     int y)
        Fire a mouse moved event for the given component.
        Parameters:
        comp - source of the event.
        x - x position relative to the component
        y - y position relative to the component
      • postEvent

        public static void postEvent​(java.awt.AWTEvent ev)
      • runSwing

        public static <T> T runSwing​(java.util.function.Supplier<T> s)
        Returns the value from the given Supplier, invoking the call in the Swing thread. This is useful when you may have values that are being changed on the Swing thread and you need the test thread to see the changes.
        Parameters:
        s - the supplier
        Returns:
        the value returned by the supplier
      • runSwing

        public static void runSwing​(java.lang.Runnable runnable)
      • runSwingWithExceptions

        public static void runSwingWithExceptions​(java.lang.Runnable runnable,
                                                  boolean wait)
                                           throws java.lang.Throwable
        Call this version of runSwing(Runnable) when you expect your runnable to throw an exception
        Parameters:
        runnable - the runnable
        wait - true signals to wait for the Swing operation to finish
        Throws:
        java.lang.Throwable - any excption that is thrown on the Swing thread
      • runSwing

        public static void runSwing​(java.lang.Runnable runnable,
                                    boolean wait)
      • executeOnSwingWithoutBlocking

        public static void executeOnSwingWithoutBlocking​(java.lang.Runnable runnable)
        Launches the runnable on a new thread so as to not block the calling thread. This is very useful for performing actions on the Swing thread that show modal dialogs, which would otherwise block the calling thread, such as a testing thread.
        Parameters:
        runnable - The runnable that will be executed in a new Thread that will place the runnable on the Swing thread.
      • clickTableCell

        public static void clickTableCell​(javax.swing.JTable table,
                                          int row,
                                          int col,
                                          int clickCount)
                                   throws java.lang.Exception
        Throws:
        java.lang.Exception
      • editCell

        public static javax.swing.table.TableCellEditor editCell​(javax.swing.JTable table,
                                                                 int row,
                                                                 int col)
      • setComboBoxSelection

        public static <T> void setComboBoxSelection​(javax.swing.JComboBox<T> comboField,
                                                    T selection)
      • setText

        public static void setText​(javax.swing.text.JTextComponent field,
                                   java.lang.String text)
      • getText

        public static java.lang.String getText​(javax.swing.text.JTextComponent field)
      • findTreePathToText

        public static javax.swing.tree.TreePath findTreePathToText​(javax.swing.JTree tree,
                                                                   java.lang.String text)
        Finds the path of a tree node in the indicated tree with the specified text. The matching tree node is determined by comparing the specified text with the string returned by the tree node's toString() method.
        Note: This method affects the expansion state of the tree. It will expand nodes starting at the root until a match is found or all of the tree is checked.
        Parameters:
        tree - the tree
        text - the tree node's text
        Returns:
        the tree path
      • findPathToText

        protected static javax.swing.tree.TreePath findPathToText​(javax.swing.JTree tree,
                                                                  javax.swing.tree.TreePath startTreePath,
                                                                  java.lang.String text)
        Performs a depth first search for the named tree node.
        Parameters:
        tree - the tree to search
        startTreePath - path indicating node to begin searching from in the tree
        text - the name of the node to find
        Returns:
        the path to the named node or null if it can't be found.
      • createStackTraceForAllThreads

        public static java.lang.String createStackTraceForAllThreads()
        Returns a string which is a printout of a stack trace for each thread running in the current JVM
        Returns:
        the stack trace string
      • toString

        public static java.lang.String toString​(java.util.Collection<?> collection)
        Prints the contents of the given collection by way of the Object.toString() method.
        Parameters:
        collection - The contents of which to print
        Returns:
        A string representation of the given collection
      • fixupGUI

        public static void fixupGUI()
                             throws java.lang.InterruptedException,
                                    java.lang.reflect.InvocationTargetException
        Invoke fixupGUI at the beginning of your JUnit test or in its setup() method to make your GUI for the JUnit test appear using the system Look & Feel. The system look and feel is the default that Ghidra uses. This will also change the default fonts for the JUnit test to be the same as those in Ghidra.
        Throws:
        java.lang.InterruptedException - if we're interrupted while waiting for the event dispatching thread to finish excecuting doRun.run()
        java.lang.reflect.InvocationTargetException - if an exception is thrown while running doRun
      • waitForSwing

        public static boolean waitForSwing()
        Waits for the Swing thread to process any pending events. This method also waits for any SwingUpdateManagers that have pending events to be flushed.
        Returns:
        true if the any SwingUpdateManagers were busy.
      • privateWaitForPostedSwingRunnables_SwingSafe

        @Deprecated
        public static void privateWaitForPostedSwingRunnables_SwingSafe()
        Deprecated.
        This is not a test writer's method, but instead an infrastructure method.
        This is only for internal use. If you need to wait for the Swing thread from your test, then use waitForSwing().
      • yieldToSwing

        protected static void yieldToSwing()
      • getDebugFileDirectory

        public static java.io.File getDebugFileDirectory()
        Returns the directory into which tests can write debug files, such as files containing print statements or image files.

        This is not a temporary directory that will be deleted between tests, which is useful in that the debug files will persist after a test run.

        Examples of this directory:

        • server: {share dir}/junits.new/JunitTest_version/reports
        • local gradle: {user home}/git/{repo}/ghidra/build/JUnit/reports
        • eclipse: {module}/bin/
        Returns:
        the directory
      • createTempDirectory

        public static java.io.File createTempDirectory​(java.lang.String name)
                                                throws java.io.IOException
        Creates a sub-directory with the given name as a child of the Java temp directory. The given name will be the prefix of the new directory name, with any additional text as created by Files.createTempDirectory(Path, String, java.nio.file.attribute.FileAttribute...). Any left-over test directories will be cleaned-up before creating the new directory.

        Note: you should not call this method multiple times, as each call will cleanup the previously created directories.

        Parameters:
        name - the name of the directory to create
        Returns:
        the newly created directory
        Throws:
        java.io.IOException - of there is a problem creating the new directory
      • createTempFilePath

        public java.lang.String createTempFilePath​(java.lang.String name)
                                            throws java.io.IOException
        Creates a file path with a filename that is under the system temp directory. The path returned will not point to an existing file. The suffix of the file will be .tmp.
        Parameters:
        name - the filename
        Returns:
        a new file path
        Throws:
        java.io.IOException - if there is any problem ensuring that the created path is non-existent
        See Also:
        createTempFilePath(String, String)
      • createTempFilePath

        public java.lang.String createTempFilePath​(java.lang.String name,
                                                   java.lang.String extension)
                                            throws java.io.IOException
        Creates a file path with a filename that is under the system temp directory. The path returned will not point to an existing file. This method is the same as createTempFilePath(String), except that you must provide the extension.
        Parameters:
        name - the filename
        extension - the file extension
        Returns:
        a new file path
        Throws:
        java.io.IOException - if there is any problem ensuring that the created path is non-existent
        See Also:
        createTempFile(String, String)
      • createTempFileForTest

        public java.io.File createTempFileForTest()
                                           throws java.io.IOException
        Creates a temp file for the current test, using the test name as a prefix for the filename. This method calls createTempFile(String), which will cleanup any pre-existing temp files whose name pattern matches this test name. This helps to avoid old temp files from accumulating.
        Returns:
        the new temp file
        Throws:
        java.io.IOException - if there is a problem creating the new file
      • createTempFileForTest

        public java.io.File createTempFileForTest​(java.lang.String suffix)
                                           throws java.io.IOException
        Creates a temp file for the current test, using the test name as a prefix for the filename. This method calls createTempFile(String), which will cleanup any pre-existing temp files whose name pattern matches this test name. This helps to avoid old temp files from accumulating.
        Parameters:
        suffix - the suffix to provide for the temp file
        Returns:
        the new temp file
        Throws:
        java.io.IOException - if there is a problem creating the new file
      • createTempFile

        public java.io.File createTempFile​(java.lang.String name)
                                    throws java.io.IOException
        Creates a file in the Java temp directory using the given name as a prefix and the given suffix. The final filename will also include the current test name, as well as any data added by File.createTempFile(String, String). The file suffix will be .tmp

        The file will be marked to delete on JVM exit. This will not work if the JVM is taken down the hard way, as when pressing the stop button in Eclipse.

        Parameters:
        name - the prefix to put on the file, before the test name
        Returns:
        the newly created file
        Throws:
        java.io.IOException - if there is a problem creating the new file
        See Also:
        createTempFile(String, String)
      • createTempFile

        public java.io.File createTempFile​(java.lang.String name,
                                           java.lang.String suffix)
                                    throws java.io.IOException
        Creates a file in the Java temp directory using the given name as a prefix and the given suffix. The final filename will also include the current test name, as well as any data added by File.createTempFile(String, String).

        The file will be marked to delete on JVM exit. This will not work if the JVM is taken down the hard way, as when pressing the stop button in Eclipse.

        Note: This method will create the file on disk! If you need the file to not exist, then you must delete the file yourself. Alternatively, you could instead call createTempFilePath(String, String), which will ensure that the created temp file is deleted.

        Finally, this method will delete any files that match the given name and suffix values before creating the given temp file. This is important, as it will delete any files already created by the test that match this info.

        Parameters:
        name - the prefix to put on the file, before the test name
        suffix - the file suffix
        Returns:
        the newly created file
        Throws:
        java.io.IOException - if there is a problem creating the new file
        See Also:
        createTempFile(String)
      • deleteSimilarTempFiles

        public static void deleteSimilarTempFiles​(java.lang.String nameText)
        Delete any files under the Java temp directory that have the given text in their name.
        Parameters:
        nameText - the partial name text to match against the files
        See Also:
        deleteMatchingTempFiles(String)
      • deleteMatchingTempFiles

        public static void deleteMatchingTempFiles​(java.lang.String namePattern)
        Delete any files under the this test case's specific temp directory that match the give regex Pattern
        Parameters:
        namePattern - the pattern to match against the files
        See Also:
        deleteSimilarTempFiles(String)