override java final methods via reflection or other means? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T13:12:34Zhttp://stackoverflow.com/feeds/question/748362http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means0override java final methods via reflection or other means?zeroin232009-04-14T16:25:23Z2009-04-15T11:30:34Z
<p>This question arise while trying to write test cases. Foo is a class within the framework library which I dont have source access to.</p>
<pre><code>public class Foo{
public final Object getX(){
...
}
}
</code></pre>
<p>my applications will </p>
<pre><code>public class Bar extends Foo{
public int process(){
Object value = getX();
...
}
}
</code></pre>
<p>The unit test case is unable to initalize as I can't create a Foo object due to other dependencies. The BarTest throws a null pointer as value is null. </p>
<pre><code>public class BarTest extends TestCase{
public testProcess(){
Bar bar = new Bar();
int result = bar.process();
...
}
}
</code></pre>
<p>Is there a way i can use reflection api to set the getX() to non-final? or how should I go about testing? </p>
http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748380#7483803Answer by Seb for override java final methods via reflection or other means?Seb2009-04-14T16:31:36Z2009-04-14T16:31:36Z<p>If your unit test case can't create Foo due to other dependencies, that might be a sign that you're not making your unit test right in the first place.</p>
<p>Unit tests are meant to test under the same circumstances a production code would run, so I'd suggest recreating the same production environment inside your tests. Otherwise, your tests wouldn't be complete.</p>
http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748413#7484132Answer by TofuBeer for override java final methods via reflection or other means?TofuBeer2009-04-14T16:38:47Z2009-04-14T16:38:47Z<p>Seb is correct, and just to ensure that you get an answer to your question, short of doing something in native code (and I am pretty sure that would not work) or modifying the bytecode of the class at runtime, and creating the class that overrides the method at runtime, I cannot see a way to alter the "finalness" of a method. Reflection will not help you here.</p>
http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748471#7484714Answer by james for override java final methods via reflection or other means?james2009-04-14T16:56:08Z2009-04-14T16:56:08Z<p>you could create another method which you could override in your test:</p>
<pre><code>public class Bar extends Foo {
protected Object doGetX() {
return getX();
}
public int process(){
Object value = doGetX();
...
}
}
</code></pre>
<p>then, you could override doGetX in BarTest.</p>
http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748768#7487680Answer by Cem Catikkas for override java final methods via reflection or other means?Cem Catikkas2009-04-14T18:18:44Z2009-04-14T18:18:44Z<p>If the variable returned by <code>getX()</code> is not <code>final</code> you can use the technique explained in <a href="http://stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods/34658#34658">What’s the best way of unit testing private methods?</a> for changing the value of the <code>private</code> variable through <code>Reflection</code>.</p>
http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/751273#7512730Answer by zeroin23 for override java final methods via reflection or other means?zeroin232009-04-15T11:30:34Z2009-04-15T11:30:34Z<pre><code>public class Bar extends Foo{
public int process(){
Object value = getX();
return process2(value);
}
public int process2(Object value){
...
}
}
public class BarTest extends TestCase{
public testProcess(){
Bar bar = new Bar();
Mockobj mo = new Mockobj();
int result = bar.process2(mo);
...
}
}
</code></pre>
<p>what i did eventually was the above. it is a bit ugly... James solution is definitely much better than this... </p>