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

File ObjectReferenceTest.java

 

Code metrics

0
14
4
1
85
48
7
0.5
3.5
4
1.75

Classes

Class Line # Actions
ObjectReferenceTest 34 14 0% 7 3
0.833333383.3%
 

Contributing tests

This file is covered by 4 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.model.reference;
21   
22    import org.junit.Test;
23    import org.xwiki.model.EntityType;
24   
25    import static org.junit.Assert.assertEquals;
26    import static org.junit.Assert.fail;
27   
28    /**
29    * Unit test for the Object reference ({@link ObjectReference}).
30    *
31    * @version $Id: 0ece3d691906aec0470d1e90cf12dd06388756a5 $
32    * @since 2.3M1
33    */
 
34    public class ObjectReferenceTest
35    {
36    /**
37    * Ensures the equivalence of constructors.
38    */
 
39  1 toggle @Test
40    public void testConstructors()
41    {
42  1 ObjectReference reference =
43    new ObjectReference(new EntityReference("Object", EntityType.OBJECT, new EntityReference("Page",
44    EntityType.DOCUMENT, new EntityReference("Space", EntityType.SPACE, new EntityReference("wiki",
45    EntityType.WIKI)))));
46  1 assertEquals(reference, new ObjectReference("Object", new DocumentReference("wiki", "Space", "Page")));
47    }
48   
 
49  1 toggle @Test
50    public void testInvalidType()
51    {
52  1 try {
53  1 new ObjectReference(new EntityReference("className", EntityType.DOCUMENT));
54  0 fail("Should have thrown exception");
55    } catch (IllegalArgumentException expected) {
56  1 assertEquals("Invalid type [DOCUMENT] for an object reference", expected.getMessage());
57    }
58    }
59   
 
60  1 toggle @Test
61    public void testInvalidNullParent()
62    {
63  1 try {
64  1 new ObjectReference(new EntityReference("className", EntityType.OBJECT, null));
65  0 fail("Should have thrown exception");
66    } catch (IllegalArgumentException expected) {
67  1 assertEquals("Invalid parent reference [null] in an object reference", expected.getMessage());
68    }
69    }
70   
71    /**
72    * Tests that an object reference throws exception if it doesn't have a document as a parent.
73    */
 
74  1 toggle @Test
75    public void testInvalidParentType()
76    {
77  1 try {
78  1 new ObjectReference(new EntityReference("className", EntityType.OBJECT, new EntityReference("Space",
79    EntityType.SPACE)));
80  0 fail("Should have thrown exception");
81    } catch (IllegalArgumentException expected) {
82  1 assertEquals("Invalid parent reference [Space Space] in an object reference", expected.getMessage());
83    }
84    }
85    }