1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.properties.internal.converter

File ConvertUtilsConverterTest.java

 

Code metrics

0
8
3
1
75
43
4
0.5
2.67
3
1.33

Classes

Class Line # Actions
ConvertUtilsConverterTest 38 8 0% 4 1
0.9090909490.9%
 

Contributing tests

This file is covered by 3 tests. .

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.properties.internal.converter;
21   
22    import org.junit.Assert;
23    import org.junit.Rule;
24    import org.junit.Test;
25    import org.xwiki.component.manager.ComponentLookupException;
26    import org.xwiki.properties.ConverterManager;
27    import org.xwiki.properties.converter.ConversionException;
28    import org.xwiki.properties.internal.DefaultConverterManager;
29    import org.xwiki.test.annotation.AllComponents;
30    import org.xwiki.test.mockito.MockitoComponentMockingRule;
31   
32    /**
33    * Validate {@link ConvertUtilsConverter} component.
34    *
35    * @version $Id: dbc20c15158e39bd6b03fd1c926dfc1ab6a9d265 $
36    */
37    @AllComponents
 
38    public class ConvertUtilsConverterTest
39    {
40    @Rule
41    public MockitoComponentMockingRule<ConverterManager> mocker = new MockitoComponentMockingRule<ConverterManager>(
42    DefaultConverterManager.class);
43   
44    public Integer[] field;
45   
 
46  1 toggle @Test
47    public void testConvert() throws SecurityException, ComponentLookupException
48    {
49  1 Assert.assertEquals(Integer.valueOf(42), this.mocker.getComponentUnderTest().convert(Integer.class, "42"));
50    }
51   
 
52  1 toggle @Test
53    public void testConvertArrays() throws SecurityException, NoSuchFieldException, ComponentLookupException
54    {
55  1 Assert.assertArrayEquals(new int[] { 1, 2, 3 }, this.mocker.getComponentUnderTest().<int[]>convert(int[].class, "1, 2, 3"));
56   
57  1 Assert.assertArrayEquals(new Integer[] { 1, 2, 3 },
58    this.mocker.getComponentUnderTest().<Integer[]>convert(Integer[].class, "1, 2, 3"));
59   
60  1 Assert.assertArrayEquals(new Integer[] { 1, 2, 3 }, this.mocker.getComponentUnderTest().<Integer[]>convert(
61    ConvertUtilsConverterTest.class.getField("field").getGenericType(), "1, 2, 3"));
62    }
63   
 
64  1 toggle @Test
65    public void testConvertWhenNoConverterAvailable() throws ComponentLookupException
66    {
67  1 try {
68  1 this.mocker.getComponentUnderTest().convert(ConvertUtilsConverter.class, "");
69  0 Assert.fail("Should have thrown an exception here");
70    } catch (ConversionException expected) {
71  1 Assert.assertEquals("Failed to find a Converter to convert from [java.lang.String] to " + "["
72    + ConvertUtilsConverter.class.getName() + "]", expected.getMessage());
73    }
74    }
75    }