Tagged Questions
PowerMock is a Java library for creating mock objects for classes and methods that other similar libraries refuse to handle.
7
votes
1answer
170 views
java.lang.LinkageError: ClassCastException
I do experience a really annoying problem with TestNG and RESTeasy.
I do have a class that runs several tests against an API class which uses the RESTeasy framework to expose itself.
However if I ...
7
votes
4answers
1k views
Attempt to stub android Activity class using PowerMockito throws RuntimeException “Stub!”
I found this example where they used PowerMock and EasyMock to stub/mock the Menu and MenuItem classes for android. I have been trying to do something similar with PowerMock and Mockito with the ...
4
votes
1answer
105 views
mocking protected method
I want to mock an inherited protected method. I can't call this method directly from java code as it is inherited from class that in another package. I can't find a way to specify this method to stub ...
4
votes
3answers
174 views
Mockito spy returns different result than actual method call
I have the following code:
public Object parse(){
....
VTDGen vg = new VTDGen();
boolean parsed = vg.parseFile(myFile.getAbsolutePath(), false);
}
I am writing a unit test for ...
4
votes
1answer
176 views
Mocking Static Methods
As i did some research i have found out that PowerMock is able to mock static java methods.
Can someone explain (technically) what is PowerMock doing different than JUnit and others which can not ...
4
votes
3answers
387 views
Testing code which calls native methods
I have a class like this:
public final class Foo
{
public native int getBar();
public String toString()
{
return "Bar: " + getBar();
}
}
Please note that getBar() is ...
3
votes
3answers
115 views
suppress a singleton constructor in java with powermock
I'm trying to unit-test some classes that make use of a Singleton class whose constructor does some things I can't (and shouldn't) do from the unit-test environment. My ideal scenario would be to end ...
3
votes
1answer
112 views
createPartialMock with MocksControl
I have a StrictPartialMock (created with createStrictPartialMock(class, "method1")). and a normal mockedObject.
I want to test if method1() calls StrictPartialMock.method2(), mockedObject.method1(), ...
3
votes
2answers
548 views
PowerMock: java.lang.IllegalAccessError: java.lang.Class when mocking java.util.ServiceLoader
I am trying to mock the java ServicesLoader (which is final) in my tests with PowerMock, and it seems to fail...
The simplest test case that reproduces the error is this:
import ...
3
votes
4answers
482 views
NoClassDefFoundError when using Powermock
I'm running a junit test case using the PowerMock test runner.
I'm using the following command line to execute it:
java -cp .:junit-4.9b2.jar:easymock-3.0.jar:powermock-easymock-1.4.8-full.jar ...
2
votes
1answer
30 views
Profiling JUnit tests with PowerMock?
We have a couple of very very slow JUnit tests that make heavy use of mocking, including Mocking of static functions. Single Tests take 20-30 secs, the whole "mvn test" takes 25 minutes.
I want to ...
2
votes
1answer
105 views
How to test with PowerMock a method which calls another private void method from the same class?
I have a class which have some methods like in the example.
public class TestClass {
public boolean aMethod()
{
voidMethod();
return true;
}
private void ...
2
votes
1answer
836 views
Mockito/PowerMock: how to reset a mocked static variable in SUT?
I hate to introduce Unit-tests into a legacy code base, but I have to.
Up untill now I successfully introduced unit-testing into the legacy code base using Mockito and PowerMock. Worked perfectly ...
2
votes
2answers
624 views
PowerMock testing - set static field of class
I'm having difficulty finding a way to set a static field of a class. It's basically like this:
public class Foo
{
// ....
static B b = null;
}
where B is another class.
Is there any way ...
2
votes
0answers
968 views
PowerMock, mockito, verify static method
I'm trying to get PowerMock to work with mockito, and I'm following the documentation here: http://code.google.com/p/powermock/wiki/MockitoUsage13.
To simplify a bit, lets say that I have a static ...
2
votes
1answer
1k views
PowerMock Mockito: how to mock all static methods?
Do we need to mock all static methods of a class when using PowerMock (with Mockito)? I mean, suppose we have:
class MockMe {
public static MockMe getInstance(){
//return new ...
1
vote
0answers
16 views
Has anyone ever PowerMocked a JsonpRequestBuilder?
I need to PowerMock a JsonpRequestBuilder. How should I handle the chain of callbacks?
Thank you in advance.
1
vote
2answers
77 views
Mocking Logger and LoggerFactory with PowerMock and Mockito
I have the following Logger I want to mock out, but to validate log entries are getting called, not for the content.
private static Logger logger = ...
1
vote
1answer
60 views
Can PowerMock be used without annotations?
I'm trying to use PowerMock as a library in another application. Is there a way to use it to mock a static method call without using annotations (I'm in Clojure which doesn't really do annotations)
1
vote
2answers
118 views
mocking abstract classes [closed]
Possible Duplicate:
Using Mockito to test abstract classes
I have an abstract class with functionality I need to test. I could create simple derivative of that class with no op ...
1
vote
4answers
245 views
When mocking private method with PowerMock, but underlying method still gets called
I am trying to mocking to mock out a private method that makes a JNDI call. When that method gets called from a unit test, it throws an exception^. I would like to mock-out that method for testing ...
1
vote
2answers
222 views
How to mock private method for testing using PowerMock?
I have a class which I would like to test with a public method that calls private one. I'd like to assume that private method works correctly. For example, I'd like something like doReturn....when.... ...
1
vote
0answers
133 views
How to reset PowerMockito.whenNew() behavior?
This is what I'm doing:
PowerMockito.mockStatic(Foo.class);
PowerMockito.whenNew(Foo.class).withNoArguments().thenReturn(null);
Foo foo1 = new Foo();
assert foo1 == null; // works fine
//...
// now I ...
1
vote
1answer
157 views
Got ExceptionInInitializerError when mocking constructor of a class with Powermock. How to fix it?
Here is my case. I have a AbstractController class. It has a sub class Controller. In one of AbstractController's methods a new ApplicationLock is instantiated. I'd like to mock ApplicationLock when ...
1
vote
2answers
234 views
How to mock a void static method to throw exception with Powermock?
I am trying to use Powermock and Mockito to mock a void static method to throw exception as below. But I met a problem. Unless I make the two invocations of Adder.add() with the same argument, the ...
1
vote
1answer
267 views
Testing private method using power mock which return list of Integers
I have a private method which take a list of integer value returns me a list of integer value. How can i use power mock to test it. I am new to powermock.Can i do the test with easy mock..? how..
1
vote
1answer
487 views
PowerMock + Mockito VS Mockito alone
Can anyone please summarize, what exactly features gives you adding PowerMock on top of the Mockito?
So far I've found these:
mock static, final and private methods
remove static initializers
allow ...
1
vote
2answers
197 views
JUnit setUp gets invoked TWO times with one test and messing up Powermock expectNew
Very strange behaviour in my test.
public class MyTestclass {
@Before
void setUp(){
//do some setup, but hu i get called twice
//here i do some try catch thing to get the ...
1
vote
1answer
396 views
Is this possible in Mockito: when(SomeClass.getIntance()).thenReturn(myMock)?
I'm working with some legacy code, where I have to implement a new Handler. And in this handler, there's an object which is unfortunately initialized by the framework using some hard-coded property ...
1
vote
3answers
172 views
Is there any way to replace dynamic methods?
Let's say we have an interface which has two methods:
public interface MyInterface {
public SomeType first();
public SomeType second();
}
This interface is implemented by MyInterfaceImpl. ...
1
vote
1answer
120 views
java.lang.VerifyError when mocking Swing static methods
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 ...
1
vote
2answers
1k views
How to mock object with constructor that takes a Class?
This is the test:
import static junit.framework.Assert.assertTrue;
import static org.powermock.api.mockito.PowerMockito.mock;
import static org.powermock.api.mockito.PowerMockito.whenNew;
import ...
1
vote
1answer
1k views
Mocking both static and dynamic methods with PowerMock
Let's say we have
public class Foo {
public static Foo getInstance() {...}
public Bar bar(Baz baz) {...}
}
What I want to do is to mock it in my unit tests. I need to mock both static and ...
1
vote
1answer
63 views
testing the class that returns the service using powermock?
I want to test certain underlying services using powermock. but it is complicated.
i would like to get your suggestion
public interface service{
public void some_method(){
}
}
public ...
1
vote
1answer
386 views
powermock : ProcessBuilder redirectErrorStream giving nullPointerException
I am using powermock to mock some native command invocation using process builder. the strange thing is these test pass sometimes and fail sometimes giving a NPE. Is this a powermock issue or some ...
1
vote
2answers
773 views
Junit Parameterized tests together with Powermock - how?
I've been trying to figure out how to run parameterized tests in Junit4 together with PowerMock. The problem is that to use PowerMock you need to decorate your test class with
...
0
votes
1answer
36 views
PowerMock EasyMock Fundamentals
This one is probably a PowerMock/EasyMock 101 question which I cannot figure out why.
I have a class C with methods
public static boolean testInner(String s) {
return false;
}
public static ...
0
votes
1answer
17 views
PowerMokito issue with extended methods
Issue: Cannot stub a method on a return object from an extended class.I just get null pointers on the method I am trying to stub. Do I need to perform a spy first on the objects? I tried that as well ...
0
votes
1answer
32 views
TestNG DataProvider with PowerMock
I am using Mockito and TestNG for my unit testing. I have static method to be mocked for which I tried PowerMock. Unfortunately I am not able to use DataProvider in TestNG along with PowerMock.
...
0
votes
1answer
26 views
PowerMokito doNothing() on private setter NullPointer
Issue: Nullpointer exception thrown when attempting to execute PowerMockito.doNothing().
I need to create a partialMockObject class that will return a private method value and do nothing for another ...
0
votes
1answer
26 views
How to mock non static methods using PowerMock
I am trying to mock an inner method call of my test method
My class looks like this
public class App {
public Student getStudent() {
MyDAO dao = new MyDAO();
return ...
0
votes
1answer
20 views
Mocking a static final method using powermockito
I have class with all the methods static and final. How do I mock a method which is both static and final in the class.
public class UtilityClass{
public static final void utilityMethod(){
}
...
0
votes
1answer
46 views
ClassNotFound Error when using mockito to mock a class
I am trying to mock a class using Mockito and also using PowerMock.
This is the test
@RunWith(PowerMockRunner.class)
@PrepareForTest(value = Util.class)
public final class FSNS_MLFTUnitTests
{
...
0
votes
1answer
76 views
powermock dependencies for playframework app
I try to configure dependencies for my playframework application to use powemock.
In my dependencies.yml:
require:
- play
...
- org.powermock -> powermock-mockito-release-full 1.4.9
- ...
0
votes
1answer
61 views
junit reload classes
I use powermock to mock Logger.getInstance() method. This causes a problem as junit seems not to reload classes and after the first test test class has wrong logger instance.
public class LoggedClass ...
0
votes
1answer
31 views
powermock inorder
I use PowerMock to mock static methods. I need to verify order of static and non static method calls. Is it possible to do using PowerMock?
UPD
I use powermockito extension to mock static methods, ...
0
votes
2answers
195 views
Android + Powermock + Mockito + Maven build error with ClassNotFoundException
I´m facing a strange build problem with powermock and mockito using maven. I can perfectly run the tests wihtin ecplise (wihtout using maven). But when i try to run the test with maven from cli or on ...
0
votes
0answers
102 views
Android PowerMock
Can anyone give me a working code of Android Unit Testing with PowerMock? I've tried this example but its not working for me.
0
votes
1answer
43 views
How to obtain a reference to a Runnable instance passed to a Thread constructor using PowerMock(ito)?
There's a black box class which creates a Thread using its constructor accepting an instance of Runnable as the argument:
public class Service {
public static Task implements Runnable {
...
0
votes
1answer
120 views
Getting Mockito and Powermock to throw error correctly
I have the following code
@PrepareForTest({Mongo.class, XYMongo.class, DB.class})
public class XYMongoTest extends UnitTest{
String host = Play.configuration.getProperty("mongo.host");
int port = ...