I have a setup like this:
class PriceAwareSpec extends Specification {
sequential
running(FakeApplication()) {
val price = "CHF 50.00"
val priceAsHtml: Html = Html(price)
val context: Context = ContextAccessUtil.getContext
val stateAccess = ServiceFactoryUtil.getService(context, classOf[StateAccess])
"price aware template" should {
"per default" in {
stateAccess.store(StateKeys.HIDE_NETTO_KEY, java.lang.Boolean.FALSE)
"show netto" in {
val html = views.html.price.priceAware(priceAsHtml, true)(request)
contentAsString(html) must contain(price)
}
"show brutto" in {
val html = views.html.price.priceAware(priceAsHtml, false)(request)
contentAsString(html) must contain(price)
}
}
}
}
With the call to
ContextAccessUtil.getContext
There is an access to the play Cache with a
play.cache.Cache.get("foo")
which does try to get the information from the current application (=FakeApplication() ?)
This results in a NullPointerException:
[error] NullPointerException: null (Cache.scala:-1)
[error] play.api.cache.Cache$.get(Cache.scala:57)
[error] play.api.cache.Cache.get(Cache.scala)
[error] play.cache.Cache.get(Cache.java:16)
This is indicating that there is no Application present....?!
Is there something wrong with my setup?