Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 file, like this:

// new code
public class NewHandler extends RootHandler {
  Util util = Util.getInstance(); // !!!Problem: throws NPE in unit-testing env

  // defined in the legacy framework, can't change its signature
  @Override
  public void doSth() {

  }
}

// legacy code
public class Util {
    static public synchronized Util getInstance() { 
        if (_instance == null) {
            _instance = new Util();
        }
        return _instance;
    }

    private Util() {
    MyObj obj = LegacyCode.load("myConfig.cfg"); // !!!Problem: throws NPE in unit-testing env
    ...

}
}

Now the problem:
in Util(), it's always loading the config file from a fixed location, therefore it always throws NPE when I run my unit tests, since there's no "myConfig.cfg" on the unit-test classpath.

One workaround is to extract the business logic into a separate method, passing in an Util object, so that I can pass in mock objects during tests:

// new code
public class NewHandler extends RootHandler {
  Util util = null;

  // defined in the legacy framework, can't change its signature
  @Override
  public void handle() {
    Util util = util.getInstance();
    doHandle(util);
  }

  public void doHandle(Util util) {
    ...
  }
}

// legacy code
public class Util {
  ...
}

My question is:
is there any other way to workaround this problem, without adding the doHandle() method? I tried the following code using Mockito:

Util myUtil = mock(Util.class);
when(Util.getInstance()).thenReturn(myUtil);

but it didn't work, Util.getInstance() didn't get replaced with myUtil.

any thoughts?

UPDATE: Things are getting a little bit messy, as I found out that Util.getInstance() is called everywhere in the legacy code base. So even if I have a mocked Util in my new code (as was described by Stas below), things will still break when Util.getInstance() is called elsewhere.
Obviously I couldn't add new Constructors to every single class in the legacy code that calls Util.getInstance().


This is the reason I'm asking "whether it's possible to have something in Mockito like when(Sth.getInstance()).thenReturn(myMock)"
if yes, the all the calls to Util.getInstance() can be mocked and won't cause problem anymore.
Hmm....Any idea?

*****************************************
SOLUTION: I think the solution in my case is PowerMock

share|improve this question

1 Answer

You should try smt like

 public class NewHandler extends RootHandler {
     Util util;
     //Pass instance
     NewHandler(Util util) {this.util = util;}
 }

Than you will able to use it new NewHandler(Util.getInstance()) or new NewHandler(mock(Util.class)) in your tests.

PS for further info you can read about Service locator and DI

share|improve this answer
1  
For added bonus, add a default constructor which calls this(Util.getInstance()); so your normal code work like before. – ZeissS Apr 19 '11 at 10:18
@ZeissS, I would not do this in new code. I think classes should be used in same manner in "normal code" and tests. But as workaround with legacy code it's can be good solution. – Stas Kurilin Apr 19 '11 at 10:30
@Stas Kurilin: I meant it solely for backward-compability. Sure, new-code should either use a factory or some other meanchism do resolve those dependencies. – ZeissS Apr 19 '11 at 10:33
@ZeissS, in this case, I totally agree with you. – Stas Kurilin Apr 19 '11 at 10:52
I guess the new Constructor only works if there's a default Constructor in the legacy RootHandler (which is fortunately the case in the legacy code, it has both a default Constructor and some other). Otherwise it'd be impossible to add another parameterized Constructor in the new code. – Tumer Apr 19 '11 at 15:24
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.