Blame view

src/test/java/fr/plil/sio/persistence/jpa/GroupServiceTest.java 4.58 KB
fd5e74ca   jcartign   First student ver...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  package fr.plil.sio.persistence.jpa;
  
  import fr.plil.sio.persistence.api.*;
  import org.junit.Before;
  import org.junit.Test;
  import org.junit.runner.RunWith;
  import org.springframework.beans.factory.annotation.Autowired;
  import org.springframework.boot.test.context.SpringBootTest;
  import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
  
  import static org.junit.Assert.*;
  
  @RunWith(SpringJUnit4ClassRunner.class)
  @SpringBootTest
  public class GroupServiceTest {
  
      @Autowired
      private GroupService groupService;
  
      @Autowired
      private UserService userService;
  
      @Autowired
      private RightService rightService;
  
      private Right parent;
  
      @Before
      public void before() {
          parent = rightService.create("parent");
          rightService.create("sibling", parent);
          groupService.create("group");
      }
  
      @Test
      public void testCreateGroupAndFindByName() {
          Group group = groupService.findByName("group");
          assertEquals("group", group.getName());
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testCreateGroupFailsWhenNameNull() {
          groupService.create(null);
      }
  
      @Test(expected = IllegalStateException.class)
      public void testCreateFailsWhenSameGroupUserAlreadyPresent() {
          groupService.create("group");
      }
  
      @Test
      public void testDeleteGroup() {
          assertTrue(groupService.delete("group"));
          assertNull(groupService.findByName("group"));
          assertFalse(groupService.delete("group"));
      }
  
      @Test
      public void testDeleteNotExistingGroup() {
          assertFalse(groupService.delete("not-a-group"));
      }
  
  
      @Test(expected = IllegalArgumentException.class)
      public void testDeleteGroupFailsIfNameNull() {
          groupService.delete(null);
      }
  
      @Test
      public void deleteGroupDoesDeleteUsers() {
          userService.create("user1", "group");
d41edfbc   jcartign   Migrate modificat...
72
          userService.create("user2", "group");
fd5e74ca   jcartign   First student ver...
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
          assertNotNull(userService.findByName("user1"));
          assertNotNull(userService.findByName("user2"));
          groupService.delete("group");
          assertNull(userService.findByName("user1"));
          assertNull(userService.findByName("user2"));
      }
  
      public void testFindByNameIfGroupNotFound() {
          assertNull(groupService.findByName("unknown"));
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testFindByNameFailsIfNameNull() {
          groupService.findByName(null);
      }
  
      @Test
      public void testAddRight() {
          assertTrue(groupService.addRight("group", parent));
          Group group = groupService.findByName("group");
          assertEquals(1, group.getRights().size());
          assertEquals("parent", group.getRights().get(0).getName());
          assertEquals(1, group.getRights().get(0).getSiblings().size());
          assertEquals("sibling", group.getRights().get(0).getSiblings().iterator().next().getName());
      }
  
      @Test
      public void testAddRightIfAlreadyPresent() {
          assertTrue(groupService.addRight("group", parent));
          assertFalse(groupService.addRight("group", parent));
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testAddRightFailsIfGroupNameNull() {
          groupService.addRight(null, parent);
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testAddRightFailsIfRightNull() {
          groupService.addRight("group", null);
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testAddRightFailsIfGroupNotInDatabase() {
          groupService.addRight("not-a-group", null);
      }
  
      @Test
      public void testRemoveRight() {
          assertTrue(groupService.addRight("group", parent));
          Group group = groupService.findByName("group");
          assertEquals(1, group.getRights().size());
          assertTrue(groupService.removeRight("group", parent));
          group = groupService.findByName("group");
          assertEquals(0, group.getRights().size());
      }
  
      @Test
      public void testRemoveRightIfNotPresent() {
          Right right = new Right();
          right.setName("not-a-right");
          assertFalse(groupService.removeRight("group", right));
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testRemoveRightFailsIfGroupNameNull() {
          groupService.removeRight(null, parent);
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testRemoveRightFailsIfRightNull() {
          groupService.removeRight("group", null);
      }
  
      @Test(expected = IllegalArgumentException.class)
      public void testRemoveRightFailsIfGroupNotInDatabase() {
          groupService.removeRight("not-a-group", null);
      }
  }