1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.cache.infinispan

File InfinispanConfigTest.java

 

Code metrics

0
4
2
1
63
30
2
0.5
2
2
1

Classes

Class Line # Actions
InfinispanConfigTest 45 4 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 1 test. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.cache.infinispan;
21   
22    import org.junit.Test;
23    import org.xwiki.cache.infinispan.internal.InfinispanCacheFactory;
24    import org.xwiki.cache.internal.DefaultCacheFactory;
25    import org.xwiki.cache.internal.DefaultCacheManager;
26    import org.xwiki.cache.internal.DefaultCacheManagerConfiguration;
27    import org.xwiki.cache.tests.AbstractTestCache;
28    import org.xwiki.environment.Environment;
29    import org.xwiki.test.annotation.ComponentList;
30   
31    import static org.mockito.Mockito.verify;
32   
33    /**
34    * Verify that defining an Infinispan config file is taken into account.
35    *
36    * @version $Id: 5c818a54825c54b4524795aff0920c4a9c6f37a9 $
37    * @since 3.4M1
38    */
39    @ComponentList({
40    InfinispanCacheFactory.class,
41    DefaultCacheManager.class,
42    DefaultCacheFactory.class,
43    DefaultCacheManagerConfiguration.class
44    })
 
45    public class InfinispanConfigTest extends AbstractTestCache
46    {
 
47  1 toggle public InfinispanConfigTest()
48    {
49  1 super("infinispan");
50    }
51   
 
52  1 toggle @Test
53    public void testConfig() throws Exception
54    {
55    // We register a mock Container to verify that getCacheFactory() below will call
56    // Environment#getResourceAsStream() which will mean that the configuration file is read.
57  1 final Environment environment = this.componentManager.registerMockComponent(Environment.class);
58   
59  1 getCacheFactory();
60   
61  1 verify(environment).getResourceAsStream("/WEB-INF/cache/infinispan/config.xml");
62    }
63    }