I have a REST-Service based on the spark-framework. Looks like this(simplyfied):
public void init() {
get(new Route("spark/favorites") {
@Override
public Object handle(Request request, Response response) {
ExternalService exS= new ExternalService();
ArrayList<String> favs= exS.getFavorites();
Gson gson = getGson();
return gson.toJson(favs);
}
});
}
Now I want to write some tests for my service to see if my get/post/put/delete does what I want. Therefor I deploy it on an embedded Jetty during my tests.
The problem I a facing now is that my service depends on external REST-Services. I would like to mock all calls to those (to have a fast unit test). But I have no idea how to mock inside the running service.
Is that even possible? Should I switch to another REST-Framework? Suggestions?