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

File ObjectPropertyReferenceTest.java

 

Code metrics

0
14
4
1
87
50
7
0.5
3.5
4
1.75

Classes

Class Line # Actions
ObjectPropertyReferenceTest 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 Property reference ({@link ObjectPropertyReference}).
30    *
31    * @version $Id: 9393c23ae861b5b5d2c8364097f1f4a3d098d716 $
32    * @since 2.3M1
33    */
 
34    public class ObjectPropertyReferenceTest
35    {
36    /**
37    * Test equivalence of constructors.
38    */
 
39  1 toggle @Test
40    public void testConstructors()
41    {
42  1 ObjectPropertyReference reference =
43    new ObjectPropertyReference(new EntityReference("property", EntityType.OBJECT_PROPERTY,
44    new EntityReference("Object", EntityType.OBJECT, new EntityReference("Page", EntityType.DOCUMENT,
45    new EntityReference("Space", EntityType.SPACE, new EntityReference("wiki", EntityType.WIKI))))));
46  1 assertEquals(reference, new ObjectPropertyReference("property", new ObjectReference("Object",
47    new DocumentReference("wiki", "Space", "Page"))));
48    }
49   
 
50  1 toggle @Test
51    public void testInvalidType()
52    {
53  1 try {
54  1 new ObjectPropertyReference(new EntityReference("space.page", EntityType.DOCUMENT));
55  0 fail("Should have thrown exception");
56    } catch (IllegalArgumentException expected) {
57  1 assertEquals("Invalid type [DOCUMENT] for an object property reference", expected.getMessage());
58    }
59    }
60   
 
61  1 toggle @Test
62    public void testInvalidNullParent()
63    {
64  1 try {
65  1 new ObjectPropertyReference(new EntityReference("property", EntityType.OBJECT_PROPERTY, null));
66  0 fail("Should have thrown exception");
67    } catch (IllegalArgumentException expected) {
68  1 assertEquals("Invalid parent reference [null] in an object property reference", expected.getMessage());
69    }
70    }
71   
72    /**
73    * Tests that an object reference throws exception if it doesn't have a document as a parent.
74    */
 
75  1 toggle @Test
76    public void testInvalidParentType()
77    {
78  1 try {
79  1 new ObjectPropertyReference(new EntityReference("property", EntityType.OBJECT_PROPERTY,
80    new EntityReference("Space", EntityType.SPACE)));
81  0 fail("Should have thrown exception");
82    } catch (IllegalArgumentException expected) {
83  1 assertEquals("Invalid parent reference [Space Space] in an object property reference",
84    expected.getMessage());
85    }
86    }
87    }