I am using PowerMock to mock static methods on JOptionPane, but the JRE doesn't seem to be very conform with it, because I get a java.lang.VerifyError at initialisation, as it checks the integrity of its own packages and classes.
I have though of a few workarounds, but I'm not very happy with any of them:
Write an object wrapper for
JOptionPaneand provide an interface for the methods I need (showInputDialog, etc.), so I can inject a mock or an stub for testing. This just moves the problem elsewhere, as I would still need to cover my wrapper methods, but at least they will be isolated from the logic.Use an instance ofJOptionPaneinstead the class reference to call the methods upon it (I think I won't have any problems mocking an instance, as the class is not final). The downside is that I will get lots of warnings of the kind "invoking static method on an instance variable", but that's the price to pay.Do not mock
JOptionPaneat all and useRobotto fire the input events to handle it. This can be very cumbersome and not very robust... Besides that, I am using internal dialogs, and that requires extra work to set up theJDesktopPane,JInternalFrames and so on.
Any other ideas or suggestions?
Thanks!
update: by te way, I've tried mocking a JOptionPane instance and it seems that the method dispatcher ignores the instance picks directly the previously existing static method (it makes sense, after all), so the second option is discarded.