-
Notifications
You must be signed in to change notification settings - Fork 2
/
SubjectsTest.java
183 lines (152 loc) · 6.18 KB
/
SubjectsTest.java
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
72
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
* Copyright 2011-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.appng.application.manager.business;
import java.io.IOException;
import org.appng.api.FieldProcessor;
import org.appng.api.ProcessingException;
import org.appng.api.model.UserType;
import org.appng.api.support.CallableAction;
import org.appng.api.support.CallableDataSource;
import org.appng.application.manager.form.SubjectForm;
import org.appng.core.domain.GroupImpl;
import org.appng.core.domain.SubjectImpl;
import org.appng.testsupport.validation.DifferenceHandler;
import org.custommonkey.xmlunit.Difference;
import org.custommonkey.xmlunit.DifferenceListener;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class SubjectsTest extends AbstractTest {
private static final String SUBJECT_EVENT = "subjectEvent";
private DifferenceListener differenceListener;
public SubjectsTest() {
// since different JVMs may return a different amount of Timezones, ignore content
// of /data[1]/selection[4]/optionGroup
differenceListener = new DifferenceHandler() {
@Override
public int differenceFound(Difference difference) {
String xpathLocation = difference.getControlNodeDetail().getXpathLocation();
if (null == xpathLocation) {
xpathLocation = difference.getTestNodeDetail().getXpathLocation();
}
if (xpathLocation.contains("/data[1]/selection[5]/optionGroup")) {
return RETURN_IGNORE_DIFFERENCE_NODES_IDENTICAL;
}
return RETURN_ACCEPT_DIFFERENCE;
}
};
}
@Test
public void testCreate() throws Exception {
GroupImpl group1 = new GroupImpl();
group1.setName("admins");
groupRepository.save(group1);
GroupImpl group2 = new GroupImpl();
group2.setName("users");
groupRepository.save(group2);
SubjectImpl newSubject = getSubject();
SubjectForm subjectForm = new SubjectForm(newSubject);
subjectForm.setPassword("secret");
subjectForm.setPasswordConfirmation("secret");
subjectForm.getGroupIds().add(1);
subjectForm.getGroupIds().add(2);
CallableAction callableAction = getAction(SUBJECT_EVENT, "create").withParam(FORM_ACTION, "create")
.getCallableAction(subjectForm);
FieldProcessor fieldProcessor = callableAction.perform();
validate(callableAction.getAction(), "-action", differenceListener);
validate(fieldProcessor.getMessages(), "-messages");
SubjectImpl anotherSubject = getSubject();
anotherSubject.setName("user");
SubjectForm anotherForm = new SubjectForm(anotherSubject);
anotherForm.setPassword("foobar");
anotherForm.setPasswordConfirmation("foobar");
anotherForm.getGroupIds().add(1);
callableAction = getAction(SUBJECT_EVENT, "create").withParam(FORM_ACTION, "create").getCallableAction(
anotherForm);
callableAction.perform();
}
@Test
public void testCreateValidationFail() throws Exception {
SubjectForm form = new SubjectForm();
form.getSubject().setUserType(UserType.LOCAL_USER);
CallableAction callableAction = getAction(SUBJECT_EVENT, "create").withParam(FORM_ACTION, "create")
.getCallableAction(form);
callableAction.perform();
validate(callableAction.getAction(), differenceListener);
}
@Test
public void testCreateNameExists() throws Exception {
SubjectForm form = new SubjectForm(getSubject());
form.setPassword("foobar");
form.setPasswordConfirmation("foobar");
CallableAction callableAction = getAction(SUBJECT_EVENT, "create").withParam(FORM_ACTION, "create")
.getCallableAction(form);
callableAction.perform();
validate(callableAction.getAction(), differenceListener);
}
@Test
public void testDelete() throws ProcessingException, IOException {
CallableAction callableAction = getAction(SUBJECT_EVENT, "delete").withParam("userId", "2")
.withParam(FORM_ACTION, "delete").getCallableAction(null);
FieldProcessor fieldProcessor = callableAction.perform();
validate(fieldProcessor.getMessages(), differenceListener);
}
@Test
public void testShowOne() throws Exception {
CallableDataSource siteDatasource = getDataSource("user").withParam("userId", "1").getCallableDataSource();
siteDatasource.perform("test");
validate(siteDatasource.getDatasource(), differenceListener);
}
@Test
public void testShowAll() throws Exception {
addParameter("sortSubjects", "name:desc");
initParameters();
CallableDataSource siteDatasource = getDataSource("users").getCallableDataSource();
siteDatasource.perform("test");
validate(siteDatasource.getDatasource());
}
@Test
public void testShowAllFilterGroup() throws Exception {
CallableDataSource siteDatasource = getDataSource("users").withParam("groupId", "1").getCallableDataSource();
siteDatasource.perform("test");
validate(siteDatasource.getDatasource());
}
@Test
public void testUpdate() throws Exception {
SubjectImpl s = getSubject();
s.setRealname("Jane Doe");
s.setTimeZone("Europe/Zurich");
SubjectForm form = new SubjectForm(s);
form.setPassword("newpassword");
form.setPasswordConfirmation("newpassword");
CallableAction callableAction = getAction(SUBJECT_EVENT, "update").withParam("userId", "1")
.withParam(FORM_ACTION, "update").getCallableAction(form);
FieldProcessor fieldProcessor = callableAction.perform();
validate(callableAction.getAction(), "-action", differenceListener);
validate(fieldProcessor.getMessages(), "-messages");
}
private SubjectImpl getSubject() {
SubjectImpl newSubject = new SubjectImpl();
newSubject.setName("admin");
newSubject.setEmail("foo@example.com");
newSubject.setRealname("John Doe");
newSubject.setUserType(UserType.LOCAL_USER);
newSubject.setLanguage("en");
newSubject.setTimeZone("Europe/Berlin");
return newSubject;
}
}