/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.wiki.internal.manager; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.xwiki.cache.Cache; import org.xwiki.cache.CacheManager; import org.xwiki.cache.config.CacheConfiguration; import org.xwiki.test.mockito.MockitoComponentMockingRule; import org.xwiki.wiki.descriptor.WikiDescriptor; import org.xwiki.wiki.internal.descriptor.DefaultWikiDescriptor; /** * Unit tests for {@link org.xwiki.wiki.internal.manager.DefaultWikiDescriptorCache}. * * @version $Id: 64b718485068b1aa07b09c89eaead555b7524320 $ */ public class WikiDescriptorCacheTest { @Rule public MockitoComponentMockingRule<WikiDescriptorCache> mocker = new MockitoComponentMockingRule<WikiDescriptorCache>(WikiDescriptorCache.class); private Cache<WikiDescriptor> wikiAliasCache; private Cache<WikiDescriptor> wikiIdCache; private CacheManager cacheManager; @Before public void setUp() throws Exception { wikiAliasCache = mock(Cache.class); wikiIdCache = mock(Cache.class); cacheManager = this.mocker.getInstance(CacheManager.class); when(cacheManager.<WikiDescriptor> createNewCache(any(CacheConfiguration.class))).thenReturn(wikiAliasCache, wikiIdCache); } @Test public void add() throws Exception { DefaultWikiDescriptor descriptor = new DefaultWikiDescriptor("wikiid", "wikialias"); descriptor.addAlias("alias2"); this.mocker.getComponentUnderTest().add(descriptor); verify(wikiIdCache).set("wikiid", descriptor); verify(wikiAliasCache).set("wikialias", descriptor); verify(wikiAliasCache).set("alias2", descriptor); } @Test public void remove() throws Exception { DefaultWikiDescriptor descriptor = new DefaultWikiDescriptor("wikiid", "wikialias"); descriptor.addAlias("alias2"); this.mocker.getComponentUnderTest().remove(descriptor); verify(wikiIdCache).remove("wikiid"); verify(wikiAliasCache).remove("wikialias"); verify(wikiAliasCache).remove("alias2"); } }