Hi!
We have a small Confluence plugin that includes a macro that is inserted repeatedly into pages, so I decided to cache the values. I am following this tutorial how-do-i-cache-data-in-a-plugin and it worked as expected.
The project already had unit tests, which now no longer run. Usually we use Mockito to mock up the missing objects that are provided by the Confluence instance (PageManager, EntityManager, etc) and we write Mockito.when().thenReturn() for them.
But now after adding the CacheManager to the implementation, I can't see how to mock these objects up, and I can't simply ignore them from the test...
public BlablaImpl(CacheManager cacheManager) { this.cacheManager=cacheManager; cache = cacheManager.getCache( Blabla.class.getName() + ".cache", new BlablaCacheLoader(), new CacheSettingsBuilder().expireAfterAccess(24, TimeUnit.HOURS).build()); } private class BlaBlaCacheLoader implements CacheLoader<String, String>{ @Override public String load(@NotNull String thingToBeCached) { return getUncachedBlabla(thingToBeCached); } } //... calls elsewhere... return cache.get("bla");
I need to mock cacheManager so the test can call getCache(). CacheManager's constructor depends on an inner CacheLoader class that I cannot even reach from the test (nor turn into an outer class). And I need to mock the cache object so I can call cache.get(), but Cache is a whole interface, that'll take a while.
MockitoAnnotations.initMocks(cacheManager); cache = new Cache(...); // ?? Mockito.when(cacheManager.getCache( Blabla.class.getName() + ".cache", new BlablaImpl().new BlablaCacheLoader(), // ??? new CacheSettingsBuilder().build()) ).thenReturn(cache);
Am I missing something obvious here how to write these tests?
Maybe the answer is... if I depend on so many objects in a unit test, then it's no longer a unit test, but an integration test. And I should not be using JUnit/Mockito for it...
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.