| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
package com.xpn.xwiki.user.impl.xwiki; |
| 21 |
|
|
| 22 |
|
import java.util.Collections; |
| 23 |
|
import java.util.HashMap; |
| 24 |
|
import java.util.Map; |
| 25 |
|
|
| 26 |
|
import org.jmock.Mock; |
| 27 |
|
import org.jmock.core.Invocation; |
| 28 |
|
import org.jmock.core.stub.CustomStub; |
| 29 |
|
import org.xwiki.model.EntityType; |
| 30 |
|
import org.xwiki.model.reference.DocumentReference; |
| 31 |
|
import org.xwiki.model.reference.EntityReference; |
| 32 |
|
|
| 33 |
|
import com.xpn.xwiki.XWiki; |
| 34 |
|
import com.xpn.xwiki.XWikiContext; |
| 35 |
|
import com.xpn.xwiki.XWikiException; |
| 36 |
|
import com.xpn.xwiki.api.Document; |
| 37 |
|
import com.xpn.xwiki.doc.XWikiDocument; |
| 38 |
|
import com.xpn.xwiki.objects.BaseObject; |
| 39 |
|
import com.xpn.xwiki.test.AbstractBridgedXWikiComponentTestCase; |
| 40 |
|
import com.xpn.xwiki.user.api.XWikiGroupService; |
| 41 |
|
import com.xpn.xwiki.user.api.XWikiRightNotFoundException; |
| 42 |
|
import com.xpn.xwiki.user.api.XWikiRightService; |
| 43 |
|
import com.xpn.xwiki.user.api.XWikiUser; |
| 44 |
|
|
| 45 |
|
|
| 46 |
|
@link |
| 47 |
|
|
| 48 |
|
@version |
| 49 |
|
|
| |
|
| 98.9% |
Uncovered Elements: 4 (364) |
Complexity: 30 |
Complexity Density: 0.09 |
|
| 50 |
|
public class XWikiRightServiceImplTest extends AbstractBridgedXWikiComponentTestCase |
| 51 |
|
{ |
| 52 |
|
private static final EntityReference XWIKIPREFERENCES_REFERENCE = new EntityReference("XWikiPreferences", |
| 53 |
|
EntityType.DOCUMENT, new EntityReference("XWiki", EntityType.SPACE)); |
| 54 |
|
|
| 55 |
|
private XWikiRightServiceImpl rightService; |
| 56 |
|
|
| 57 |
|
private Mock mockGroupService; |
| 58 |
|
|
| 59 |
|
private Mock mockXWiki; |
| 60 |
|
|
| 61 |
|
private XWikiDocument user; |
| 62 |
|
|
| 63 |
|
private XWikiDocument group; |
| 64 |
|
|
| 65 |
|
private XWikiDocument group2; |
| 66 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (37) |
Complexity: 1 |
Complexity Density: 0.03 |
|
| 67 |
13 |
@Override... |
| 68 |
|
protected void setUp() throws Exception |
| 69 |
|
{ |
| 70 |
13 |
super.setUp(); |
| 71 |
13 |
this.rightService = new XWikiRightServiceImpl(); |
| 72 |
|
|
| 73 |
13 |
this.mockGroupService = mock(XWikiGroupService.class, new Class[] {}, new Object[] {}); |
| 74 |
|
|
| 75 |
13 |
this.mockXWiki = mock(XWiki.class); |
| 76 |
13 |
this.mockXWiki.stubs().method("getGroupService").will(returnValue(this.mockGroupService.proxy())); |
| 77 |
13 |
this.mockXWiki.stubs().method("isReadOnly").will(returnValue(false)); |
| 78 |
13 |
this.mockXWiki.stubs().method("getWikiOwner").will(returnValue(null)); |
| 79 |
13 |
this.mockXWiki.stubs().method("getMaxRecursiveSpaceChecks").will(returnValue(0)); |
| 80 |
13 |
this.mockXWiki.stubs().method("getDocument").with(ANYTHING, eq("WebPreferences"), ANYTHING).will( |
| 81 |
|
new CustomStub("Implements XWiki.getDocument") |
| 82 |
|
{ |
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 83 |
64 |
@Override... |
| 84 |
|
public Object invoke(Invocation invocation) throws Throwable |
| 85 |
|
{ |
| 86 |
64 |
return new XWikiDocument(new DocumentReference(getContext().getWikiId(), |
| 87 |
|
(String) invocation.parameterValues.get(0), "WebPreferences")); |
| 88 |
|
} |
| 89 |
|
}); |
| 90 |
|
|
| 91 |
13 |
this.mockXWiki.stubs().method("prepareResources"); |
| 92 |
|
|
| 93 |
13 |
getContext().setWiki((XWiki) this.mockXWiki.proxy()); |
| 94 |
|
|
| 95 |
13 |
this.user = new XWikiDocument(new DocumentReference("wiki", "XWiki", "user")); |
| 96 |
13 |
this.user.setNew(false); |
| 97 |
13 |
getContext().setWikiId(this.user.getWikiName()); |
| 98 |
13 |
BaseObject userObject = new BaseObject(); |
| 99 |
13 |
userObject.setClassName("XWiki.XWikiUser"); |
| 100 |
13 |
this.user.addXObject(userObject); |
| 101 |
13 |
this.mockXWiki.stubs().method("getDocument").with(eq(this.user.getPrefixedFullName()), ANYTHING).will( |
| 102 |
|
returnValue(this.user)); |
| 103 |
|
|
| 104 |
13 |
this.group = new XWikiDocument(new DocumentReference("wiki", "XWiki", "group")); |
| 105 |
13 |
this.group.setNew(false); |
| 106 |
13 |
getContext().setWikiId(this.group.getWikiName()); |
| 107 |
13 |
BaseObject groupObject = new BaseObject(); |
| 108 |
13 |
groupObject.setClassName("XWiki.XWikiGroups"); |
| 109 |
13 |
groupObject.setStringValue("member", this.user.getFullName()); |
| 110 |
13 |
this.group.addXObject(groupObject); |
| 111 |
13 |
this.mockXWiki.stubs().method("getDocument").with(eq(this.group.getPrefixedFullName()), ANYTHING).will( |
| 112 |
|
returnValue(this.group)); |
| 113 |
|
|
| 114 |
13 |
this.group2 = new XWikiDocument(new DocumentReference("wiki2", "XWiki", "group2")); |
| 115 |
13 |
this.group2.setNew(false); |
| 116 |
13 |
getContext().setWikiId(this.group2.getWikiName()); |
| 117 |
13 |
BaseObject group2Object = new BaseObject(); |
| 118 |
13 |
group2Object.setClassName("XWiki.XWikiGroups"); |
| 119 |
13 |
group2Object.setStringValue("member", this.user.getPrefixedFullName()); |
| 120 |
13 |
this.group2.addXObject(groupObject); |
| 121 |
13 |
this.mockXWiki.stubs().method("getDocument").with(eq(this.group2.getPrefixedFullName()), ANYTHING).will( |
| 122 |
|
returnValue(this.group2)); |
| 123 |
|
|
| 124 |
13 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember").with( |
| 125 |
|
eq(this.user.getDocumentReference()), ANYTHING, ANYTHING, ANYTHING).will( |
| 126 |
|
new CustomStub("Implements XWikiGroupService.getAllGroupsReferencesForMember") |
| 127 |
|
{ |
| |
|
| 80% |
Uncovered Elements: 2 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
| 128 |
8 |
@Override... |
| 129 |
|
public Object invoke(Invocation invocation) throws Throwable |
| 130 |
|
{ |
| 131 |
8 |
XWikiContext context = (XWikiContext) invocation.parameterValues.get(3); |
| 132 |
|
|
| 133 |
8 |
if (context.getWikiId().equals(group.getWikiName())) { |
| 134 |
5 |
return Collections.singleton(group.getDocumentReference()); |
| 135 |
3 |
} else if (context.getWikiId().equals(group2.getWikiName())) { |
| 136 |
3 |
return Collections.singleton(group2.getDocumentReference()); |
| 137 |
|
} else { |
| 138 |
0 |
return Collections.emptyList(); |
| 139 |
|
} |
| 140 |
|
} |
| 141 |
|
}); |
| 142 |
|
|
| 143 |
13 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember").with( |
| 144 |
|
eq(this.group.getDocumentReference()), ANYTHING, ANYTHING, ANYTHING).will( |
| 145 |
|
returnValue(Collections.emptyList())); |
| 146 |
13 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember").with( |
| 147 |
|
eq(this.group2.getDocumentReference()), ANYTHING, ANYTHING, ANYTHING).will( |
| 148 |
|
returnValue(Collections.emptyList())); |
| 149 |
|
} |
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (13) |
Complexity: 1 |
Complexity Density: 0.08 |
1PASS
|
|
| 154 |
1 |
public void testCheckRight() throws XWikiRightNotFoundException, XWikiException... |
| 155 |
|
{ |
| 156 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference("wiki2", "Space", "Page")); |
| 157 |
|
|
| 158 |
1 |
Mock mockGlobalRightObj = mock(BaseObject.class, new Class[] {}, new Object[] {}); |
| 159 |
1 |
mockGlobalRightObj.stubs().method("getStringValue").with(eq("levels")).will(returnValue("view")); |
| 160 |
1 |
mockGlobalRightObj.stubs().method("getStringValue").with(eq("groups")).will( |
| 161 |
|
returnValue(this.group.getPrefixedFullName())); |
| 162 |
1 |
mockGlobalRightObj.stubs().method("getStringValue").with(eq("users")).will(returnValue("")); |
| 163 |
1 |
mockGlobalRightObj.stubs().method("getIntValue").with(eq("allow")).will(returnValue(1)); |
| 164 |
1 |
mockGlobalRightObj.stubs().method("setNumber"); |
| 165 |
1 |
mockGlobalRightObj.stubs().method("setDocumentReference"); |
| 166 |
1 |
mockGlobalRightObj.stubs().method("setOwnerDocument"); |
| 167 |
|
|
| 168 |
1 |
doc.addObject("XWiki.XWikiGlobalRights", (BaseObject) mockGlobalRightObj.proxy()); |
| 169 |
|
|
| 170 |
1 |
getContext().setWikiId("wiki2"); |
| 171 |
|
|
| 172 |
1 |
boolean result = |
| 173 |
|
this.rightService.checkRight(this.user.getPrefixedFullName(), doc, "view", true, true, true, getContext()); |
| 174 |
|
|
| 175 |
1 |
assertTrue(this.user.getPrefixedFullName() + " does not have global view right on wiki2", result); |
| 176 |
|
} |
| 177 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (20) |
Complexity: 1 |
Complexity Density: 0.05 |
1PASS
|
|
| 178 |
1 |
public void testHasAccessLevelAdminOnDocument() throws Exception... |
| 179 |
|
{ |
| 180 |
1 |
final String wikiName = this.user.getWikiName(); |
| 181 |
|
|
| 182 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference(wikiName, |
| 183 |
|
"Space", "Page")); |
| 184 |
|
|
| 185 |
1 |
final XWikiDocument preferences = new XWikiDocument(new DocumentReference(wikiName, |
| 186 |
|
"XWiki", "XWikiPreference")); |
| 187 |
|
|
| 188 |
1 |
BaseObject rightsObject = new BaseObject(); |
| 189 |
1 |
rightsObject.setClassName("XWiki.XWikiRights"); |
| 190 |
1 |
rightsObject.setStringValue("levels", "admin"); |
| 191 |
1 |
rightsObject.setStringValue("users", this.user.getPrefixedFullName()); |
| 192 |
1 |
rightsObject.setIntValue("allow", 1); |
| 193 |
1 |
doc.addXObject(rightsObject); |
| 194 |
|
|
| 195 |
1 |
BaseObject preferencesObject = new BaseObject(); |
| 196 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 197 |
1 |
preferencesObject.setStringValue("levels", "admin"); |
| 198 |
1 |
preferencesObject.setIntValue("allow", 0); |
| 199 |
1 |
preferencesObject.setStringValue("users", this.user.getPrefixedFullName()); |
| 200 |
1 |
preferences.addXObject(preferencesObject); |
| 201 |
1 |
preferences.setNew(false); |
| 202 |
|
|
| 203 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 204 |
|
new CustomStub("Implements XWiki.getDocument") |
| 205 |
|
{ |
| |
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 206 |
2 |
@Override... |
| 207 |
|
public Object invoke(Invocation invocation) throws Throwable |
| 208 |
|
{ |
| 209 |
2 |
if (!getContext().getWikiId().equals(wikiName)) { |
| 210 |
1 |
new XWikiDocument(new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreference")); |
| 211 |
|
} |
| 212 |
|
|
| 213 |
2 |
return preferences; |
| 214 |
|
} |
| 215 |
|
}); |
| 216 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 217 |
|
returnValue(doc)); |
| 218 |
|
|
| 219 |
1 |
getContext().setWikiId(wikiName); |
| 220 |
|
|
| 221 |
1 |
assertFalse("Admin rights must not be considered when set on document level.", |
| 222 |
|
this.rightService.hasAccessLevel("admin", this.user.getPrefixedFullName(), |
| 223 |
|
doc.getPrefixedFullName(), true, |
| 224 |
|
getContext())); |
| 225 |
|
} |
| 226 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (42) |
Complexity: 1 |
Complexity Density: 0.02 |
1PASS
|
|
| 227 |
1 |
public void testHasAccessLevelWhithUserFromAnotherWiki() throws XWikiException... |
| 228 |
|
{ |
| 229 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference(this.group2.getWikiName(), "Space", "Page")); |
| 230 |
|
|
| 231 |
1 |
final XWikiDocument preferences = new XWikiDocument(new DocumentReference("wiki2", "XWiki", "XWikiPreference")); |
| 232 |
1 |
BaseObject preferencesObject = new BaseObject(); |
| 233 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 234 |
1 |
preferencesObject.setStringValue("levels", "view"); |
| 235 |
1 |
preferencesObject.setIntValue("allow", 1); |
| 236 |
1 |
preferences.addXObject(preferencesObject); |
| 237 |
1 |
preferences.setNew(false); |
| 238 |
|
|
| 239 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 240 |
|
new CustomStub("Implements XWiki.getDocument") |
| 241 |
|
{ |
| |
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 242 |
30 |
@Override... |
| 243 |
|
public Object invoke(Invocation invocation) throws Throwable |
| 244 |
|
{ |
| 245 |
30 |
if (!getContext().getWikiId().equals("wiki2")) { |
| 246 |
17 |
new XWikiDocument(new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreference")); |
| 247 |
|
} |
| 248 |
|
|
| 249 |
30 |
return preferences; |
| 250 |
|
} |
| 251 |
|
}); |
| 252 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 253 |
|
returnValue(doc)); |
| 254 |
|
|
| 255 |
1 |
getContext().setWikiId("wiki"); |
| 256 |
|
|
| 257 |
1 |
assertFalse("User from another wiki has right on a local wiki", this.rightService.hasAccessLevel("view", |
| 258 |
|
this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, getContext())); |
| 259 |
|
|
| 260 |
|
|
| 261 |
|
|
| 262 |
1 |
preferencesObject.setStringValue("users", this.user.getPrefixedFullName()); |
| 263 |
|
|
| 264 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 265 |
|
|
| 266 |
1 |
assertTrue("User from another wiki does not have right on a local wiki when tested from user wiki", |
| 267 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 268 |
|
getContext())); |
| 269 |
1 |
assertTrue("User from another wiki does not have right on a local wiki when tested from user wiki", |
| 270 |
|
this.rightService.hasAccessLevel("view", this.user.getFullName(), doc.getPrefixedFullName(), true, |
| 271 |
|
getContext())); |
| 272 |
|
|
| 273 |
1 |
getContext().setWikiId(doc.getWikiName()); |
| 274 |
|
|
| 275 |
1 |
assertTrue("User from another wiki does not have right on a local wiki when tested from local wiki", |
| 276 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 277 |
|
getContext())); |
| 278 |
1 |
assertTrue("User from another wiki does not have right on a local wiki when tested from local wiki", |
| 279 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getFullName(), true, |
| 280 |
|
getContext())); |
| 281 |
|
|
| 282 |
|
|
| 283 |
|
|
| 284 |
1 |
preferencesObject.removeField("users"); |
| 285 |
|
|
| 286 |
|
|
| 287 |
|
|
| 288 |
1 |
preferencesObject.setStringValue("groups", this.group.getPrefixedFullName()); |
| 289 |
|
|
| 290 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 291 |
|
|
| 292 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from user wiki", |
| 293 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 294 |
|
getContext())); |
| 295 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from user wiki", |
| 296 |
|
this.rightService.hasAccessLevel("view", this.user.getFullName(), doc.getPrefixedFullName(), true, |
| 297 |
|
getContext())); |
| 298 |
|
|
| 299 |
1 |
getContext().setWikiId(doc.getWikiName()); |
| 300 |
|
|
| 301 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from local wiki", |
| 302 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 303 |
|
getContext())); |
| 304 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from local wiki", |
| 305 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getFullName(), true, |
| 306 |
|
getContext())); |
| 307 |
|
|
| 308 |
|
|
| 309 |
|
|
| 310 |
1 |
preferencesObject.setStringValue("groups", this.group2.getFullName()); |
| 311 |
|
|
| 312 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 313 |
|
|
| 314 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from user wiki", |
| 315 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 316 |
|
getContext())); |
| 317 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from user wiki", |
| 318 |
|
this.rightService.hasAccessLevel("view", this.user.getFullName(), doc.getPrefixedFullName(), true, |
| 319 |
|
getContext())); |
| 320 |
|
|
| 321 |
1 |
getContext().setWikiId(doc.getWikiName()); |
| 322 |
|
|
| 323 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from local wiki", |
| 324 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 325 |
|
getContext())); |
| 326 |
1 |
assertTrue("User group from another wiki does not have right on a local wiki when tested from local wiki", |
| 327 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getFullName(), true, |
| 328 |
|
getContext())); |
| 329 |
|
|
| 330 |
|
|
| 331 |
|
|
| 332 |
1 |
preferencesObject.removeField("groups"); |
| 333 |
1 |
this.mockXWiki.stubs().method("getWikiOwner").with(eq(doc.getWikiName()), ANYTHING).will( |
| 334 |
|
returnValue(this.user.getPrefixedFullName())); |
| 335 |
|
|
| 336 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 337 |
|
|
| 338 |
1 |
assertTrue("Wiki owner from another wiki does not have right on a local wiki when tested from user wiki", |
| 339 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 340 |
|
getContext())); |
| 341 |
1 |
assertTrue("Wiki owner group from another wiki does not have right on a local wiki when tested from user wiki", |
| 342 |
|
this.rightService.hasAccessLevel("view", this.user.getFullName(), doc.getPrefixedFullName(), true, |
| 343 |
|
getContext())); |
| 344 |
|
|
| 345 |
1 |
getContext().setWikiId(doc.getWikiName()); |
| 346 |
|
|
| 347 |
1 |
assertTrue( |
| 348 |
|
"Wiki owner group from another wiki does not have right on a local wiki when tested from local wiki", |
| 349 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getPrefixedFullName(), true, |
| 350 |
|
getContext())); |
| 351 |
1 |
assertTrue( |
| 352 |
|
"Wiki owner group from another wiki does not have right on a local wiki when tested from local wiki", |
| 353 |
|
this.rightService.hasAccessLevel("view", this.user.getPrefixedFullName(), doc.getFullName(), true, |
| 354 |
|
getContext())); |
| 355 |
|
} |
| 356 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (14) |
Complexity: 1 |
Complexity Density: 0.07 |
1PASS
|
|
| 357 |
1 |
public void testHasAccessLevelWhithOnlyPageAsReference() throws XWikiException... |
| 358 |
|
{ |
| 359 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference("wiki", "Space", "Page")); |
| 360 |
|
|
| 361 |
1 |
final XWikiDocument preferences = |
| 362 |
|
new XWikiDocument(new DocumentReference(doc.getWikiName(), doc.getSpaceName(), "WebPreferences")); |
| 363 |
1 |
BaseObject preferencesObject = new BaseObject(); |
| 364 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 365 |
1 |
preferencesObject.setStringValue("levels", "view"); |
| 366 |
1 |
preferencesObject.setIntValue("allow", 1); |
| 367 |
1 |
preferences.addXObject(preferencesObject); |
| 368 |
1 |
preferences.setNew(false); |
| 369 |
|
|
| 370 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(preferences.getSpaceName()), |
| 371 |
|
eq(preferences.getPageName()), ANYTHING).will(returnValue(preferences)); |
| 372 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 373 |
|
returnValue(new XWikiDocument( |
| 374 |
|
new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreferences")))); |
| 375 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 376 |
|
returnValue(doc)); |
| 377 |
|
|
| 378 |
1 |
getContext().setWikiId("wiki"); |
| 379 |
1 |
getContext().setDoc(doc); |
| 380 |
|
|
| 381 |
1 |
assertFalse("Failed to check right with only page name", this.rightService.hasAccessLevel("view", this.user |
| 382 |
|
.getPageName(), doc.getPageName(), true, getContext())); |
| 383 |
|
} |
| 384 |
|
|
| 385 |
|
|
| 386 |
|
|
| 387 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (22) |
Complexity: 1 |
Complexity Density: 0.05 |
1PASS
|
|
| 388 |
1 |
public void testProgrammingRightsWhenNoContextDocumentIsSet()... |
| 389 |
|
{ |
| 390 |
|
|
| 391 |
1 |
XWikiDocument prefs = new XWikiDocument(new DocumentReference(getContext().getMainXWiki(), "XWiki", "XWikiPreferences")); |
| 392 |
1 |
Mock mockGlobalRightObj = mock(BaseObject.class, new Class[] {}, new Object[] {}); |
| 393 |
1 |
mockGlobalRightObj.stubs().method("getStringValue").with(eq("levels")).will(returnValue("programming")); |
| 394 |
1 |
mockGlobalRightObj.stubs().method("getStringValue").with(eq("users")).will(returnValue("XWiki.Programmer")); |
| 395 |
1 |
mockGlobalRightObj.stubs().method("getIntValue").with(eq("allow")).will(returnValue(1)); |
| 396 |
1 |
mockGlobalRightObj.stubs().method("setNumber"); |
| 397 |
1 |
mockGlobalRightObj.stubs().method("setDocumentReference"); |
| 398 |
1 |
mockGlobalRightObj.stubs().method("setOwnerDocument"); |
| 399 |
1 |
prefs.addObject("XWiki.XWikiGlobalRights", (BaseObject) mockGlobalRightObj.proxy()); |
| 400 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), eq(getContext())) |
| 401 |
|
.will(returnValue(prefs)); |
| 402 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember") |
| 403 |
|
.with(eq(new DocumentReference(getContext().getMainXWiki(), "XWiki", "Programmer")), eq(0), eq(0), same(getContext())) |
| 404 |
|
.will(returnValue(Collections.EMPTY_LIST)); |
| 405 |
|
|
| 406 |
|
|
| 407 |
1 |
this.mockXWiki.stubs().method("getDatabase").will(returnValue("xwiki")); |
| 408 |
1 |
getContext().remove("doc"); |
| 409 |
1 |
getContext().remove("sdoc"); |
| 410 |
|
|
| 411 |
1 |
getContext().setWikiId(getContext().getMainXWiki()); |
| 412 |
|
|
| 413 |
|
|
| 414 |
1 |
getContext().setUser("XWiki.Programmer"); |
| 415 |
1 |
assertTrue(this.rightService.hasProgrammingRights(getContext())); |
| 416 |
|
|
| 417 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember").with( |
| 418 |
|
eq(new DocumentReference("xwiki", "XWiki", XWikiRightService.GUEST_USER)), ANYTHING, ANYTHING, ANYTHING) |
| 419 |
|
.will(returnValue(Collections.emptyList())); |
| 420 |
|
|
| 421 |
|
|
| 422 |
1 |
getContext().setUser(XWikiRightService.GUEST_USER_FULLNAME); |
| 423 |
1 |
assertFalse(this.rightService.hasProgrammingRights(getContext())); |
| 424 |
|
|
| 425 |
|
|
| 426 |
1 |
getContext().setUser(XWikiRightService.SUPERADMIN_USER_FULLNAME); |
| 427 |
1 |
assertTrue(this.rightService.hasProgrammingRights(getContext())); |
| 428 |
|
} |
| 429 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (22) |
Complexity: 1 |
Complexity Density: 0.05 |
1PASS
|
|
| 430 |
1 |
public void testHasAccessLevelWhithGuestUser() throws XWikiException... |
| 431 |
|
{ |
| 432 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference("wiki2", "Space", "Page")); |
| 433 |
|
|
| 434 |
1 |
final XWikiDocument preferences = new XWikiDocument(new DocumentReference("wiki2", "XWiki", "XWikiPreference")); |
| 435 |
1 |
BaseObject preferencesObject = new BaseObject(); |
| 436 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 437 |
1 |
preferencesObject.setStringValue("levels", "view"); |
| 438 |
1 |
preferencesObject.setIntValue("allow", 1); |
| 439 |
1 |
preferences.addXObject(preferencesObject); |
| 440 |
|
|
| 441 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 442 |
|
new CustomStub("Implements XWiki.getDocument") |
| 443 |
|
{ |
| |
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 444 |
6 |
@Override... |
| 445 |
|
public Object invoke(Invocation invocation) throws Throwable |
| 446 |
|
{ |
| 447 |
6 |
if (!getContext().getWikiId().equals("wiki2")) { |
| 448 |
3 |
new XWikiDocument(new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreference")); |
| 449 |
|
} |
| 450 |
|
|
| 451 |
6 |
return preferences; |
| 452 |
|
} |
| 453 |
|
}); |
| 454 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 455 |
|
returnValue(doc)); |
| 456 |
1 |
this.mockXWiki.stubs().method("getXWikiPreference").with(eq("authenticate_view"), ANYTHING, ANYTHING).will( |
| 457 |
|
returnValue("false")); |
| 458 |
1 |
this.mockXWiki.stubs().method("getXWikiPreferenceAsInt").with(eq("authenticate_view"), ANYTHING, ANYTHING) |
| 459 |
|
.will(returnValue(0)); |
| 460 |
1 |
this.mockXWiki.stubs().method("getSpacePreference").with(eq("authenticate_view"), ANYTHING, ANYTHING).will( |
| 461 |
|
returnValue("false")); |
| 462 |
1 |
this.mockXWiki.stubs().method("getSpacePreferenceAsInt").with(eq("authenticate_view"), ANYTHING, ANYTHING) |
| 463 |
|
.will(returnValue(0)); |
| 464 |
|
|
| 465 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember").with( |
| 466 |
|
eq(new DocumentReference("xwiki", "XWiki", XWikiRightService.GUEST_USER)), ANYTHING, ANYTHING, ANYTHING) |
| 467 |
|
.will(returnValue(Collections.emptyList())); |
| 468 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember").with( |
| 469 |
|
eq(new DocumentReference("wiki2", "XWiki", XWikiRightService.GUEST_USER)), ANYTHING, ANYTHING, ANYTHING) |
| 470 |
|
.will(returnValue(Collections.emptyList())); |
| 471 |
|
|
| 472 |
1 |
getContext().setWikiId("wiki"); |
| 473 |
|
|
| 474 |
1 |
assertFalse("Guest has wiew right on the document", this.rightService.hasAccessLevel("view", |
| 475 |
|
XWikiRightService.GUEST_USER_FULLNAME, doc.getPrefixedFullName(), true, getContext())); |
| 476 |
|
|
| 477 |
|
|
| 478 |
|
|
| 479 |
1 |
preferencesObject.setStringValue("users", XWikiRightService.GUEST_USER_FULLNAME); |
| 480 |
|
|
| 481 |
1 |
getContext().setWikiId("wiki"); |
| 482 |
|
|
| 483 |
1 |
assertTrue("Guest does not have right on the document when tested from another wiki", this.rightService |
| 484 |
|
.hasAccessLevel("view", XWikiRightService.GUEST_USER_FULLNAME, doc.getPrefixedFullName(), true, |
| 485 |
|
getContext())); |
| 486 |
|
|
| 487 |
1 |
getContext().setWikiId(doc.getDatabase()); |
| 488 |
|
|
| 489 |
1 |
assertTrue("Guest does not have right on the document when tested from the document wiki", this.rightService |
| 490 |
|
.hasAccessLevel("view", XWikiRightService.GUEST_USER_FULLNAME, doc.getPrefixedFullName(), true, |
| 491 |
|
getContext())); |
| 492 |
|
} |
| 493 |
|
|
| 494 |
|
|
| 495 |
|
|
| 496 |
|
|
| 497 |
|
|
| 498 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
1PASS
|
|
| 499 |
1 |
public void testProgrammingRightsAfterDropPermissions()... |
| 500 |
|
{ |
| 501 |
|
|
| 502 |
1 |
this.getContext().setUser(XWikiRightService.SUPERADMIN_USER_FULLNAME); |
| 503 |
|
|
| 504 |
1 |
assertTrue("User does not have programming right prior to calling dropPermissions()", |
| 505 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 506 |
1 |
this.getContext().dropPermissions(); |
| 507 |
1 |
assertFalse("Author retains programming right after calling dropPermissions()", |
| 508 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 509 |
|
} |
| 510 |
|
|
| 511 |
|
|
| 512 |
|
|
| 513 |
|
|
| 514 |
|
|
| 515 |
|
|
| 516 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (14) |
Complexity: 1 |
Complexity Density: 0.07 |
1PASS
|
|
| 517 |
1 |
public void testProgrammingRightsAfterDropPermissionsForRenderingCycle()... |
| 518 |
|
{ |
| 519 |
1 |
final Document doc = |
| 520 |
|
new Document(new XWikiDocument(new DocumentReference("XWiki", "Test", "Permissions")), this.getContext()); |
| 521 |
|
|
| 522 |
|
|
| 523 |
|
|
| 524 |
|
|
| 525 |
1 |
this.getContext().setUser(XWikiRightService.SUPERADMIN_USER_FULLNAME); |
| 526 |
|
|
| 527 |
1 |
assertTrue("User does not have programming right prior to calling " |
| 528 |
|
+ "doc.dropPermissions()", |
| 529 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 530 |
|
|
| 531 |
1 |
final Map<String, Object> backup = new HashMap<String, Object>(); |
| 532 |
1 |
XWikiDocument.backupContext(backup, this.getContext()); |
| 533 |
|
|
| 534 |
1 |
doc.dropPermissions(); |
| 535 |
|
|
| 536 |
1 |
assertFalse("Author retains programming right after calling doc.dropPermissions()", |
| 537 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 538 |
|
|
| 539 |
1 |
final Map<String, Object> backup2 = new HashMap<String, Object>(); |
| 540 |
1 |
XWikiDocument.backupContext(backup2, this.getContext()); |
| 541 |
|
|
| 542 |
1 |
assertTrue("User does not have programming right after switching contexts.", |
| 543 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 544 |
|
|
| 545 |
1 |
XWikiDocument.restoreContext(backup2, this.getContext()); |
| 546 |
|
|
| 547 |
1 |
assertFalse("Author did not lose programming right after switching contexts back.", |
| 548 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 549 |
|
|
| 550 |
1 |
XWikiDocument.restoreContext(backup, this.getContext()); |
| 551 |
|
|
| 552 |
1 |
assertTrue("Author did not regain programming right after switching contexts back.", |
| 553 |
|
this.rightService.hasProgrammingRights(this.getContext())); |
| 554 |
|
} |
| 555 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
1PASS
|
|
| 556 |
1 |
public void testHasAccessLevelForDeleteRightWhenUserIsDocumentCreator() throws Exception... |
| 557 |
|
{ |
| 558 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 559 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference(this.user.getWikiName(), "Space", "Page")); |
| 560 |
|
|
| 561 |
|
|
| 562 |
1 |
doc.setCreatorReference(this.user.getDocumentReference()); |
| 563 |
|
|
| 564 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 565 |
|
returnValue(doc)); |
| 566 |
1 |
final XWikiDocument xwikiPreferences = new XWikiDocument( |
| 567 |
|
new DocumentReference(this.user.getWikiName(), "XWiki", "XWikiPreferences")); |
| 568 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq("XWiki.XWikiPreferences"), ANYTHING).will( |
| 569 |
|
returnValue(xwikiPreferences)); |
| 570 |
|
|
| 571 |
1 |
assertTrue("Should allow delete rights for page creator", |
| 572 |
|
this.rightService.hasAccessLevel("delete", this.user.getFullName(), doc.getFullName(), true, getContext())); |
| 573 |
|
} |
| 574 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 575 |
7 |
private void assertAccessLevelForGuestUser(String level, XWikiDocument doc, boolean shouldAllow) throws Exception... |
| 576 |
|
{ |
| 577 |
|
|
| 578 |
7 |
if (shouldAllow) { |
| 579 |
6 |
assertTrue("Empty wiki should allow " + level + " for guest.", |
| 580 |
|
this.rightService.hasAccessLevel(level, XWikiRightService.GUEST_USER_FULLNAME, |
| 581 |
|
doc.getFullName(), getContext())); |
| 582 |
|
} else { |
| 583 |
1 |
assertFalse("Empty wiki should deny " + level + " for guest.", |
| 584 |
|
this.rightService.hasAccessLevel(level, XWikiRightService.GUEST_USER_FULLNAME, |
| 585 |
|
doc.getFullName(), getContext())); |
| 586 |
|
} |
| 587 |
|
} |
| 588 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (17) |
Complexity: 1 |
Complexity Density: 0.06 |
1PASS
|
|
| 589 |
1 |
public void testHasAccessLevelOnEmptyWiki() throws Exception... |
| 590 |
|
{ |
| 591 |
1 |
getContext().setWikiId("xwiki"); |
| 592 |
|
|
| 593 |
1 |
final XWikiDocument doc |
| 594 |
|
= new XWikiDocument(new DocumentReference(getContext().getWikiId(), "Space", "Page")); |
| 595 |
|
|
| 596 |
1 |
final XWikiDocument xwikiPreferences |
| 597 |
|
= new XWikiDocument(new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreference")); |
| 598 |
|
|
| 599 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember") |
| 600 |
|
.with(ANYTHING, ANYTHING, ANYTHING, ANYTHING).will( |
| 601 |
|
returnValue(Collections.emptyList())); |
| 602 |
|
|
| 603 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getFullName()), ANYTHING) |
| 604 |
|
.will(returnValue(doc)); |
| 605 |
|
|
| 606 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 607 |
|
returnValue(xwikiPreferences)); |
| 608 |
|
|
| 609 |
1 |
this.mockXWiki.stubs().method("getXWikiPreference").with(ANYTHING, ANYTHING, ANYTHING).will( |
| 610 |
|
returnValue("false")); |
| 611 |
1 |
this.mockXWiki.stubs().method("getXWikiPreferenceAsInt").with(ANYTHING, ANYTHING, ANYTHING) |
| 612 |
|
.will(returnValue(0)); |
| 613 |
1 |
this.mockXWiki.stubs().method("getSpacePreference").with(ANYTHING, ANYTHING, ANYTHING).will( |
| 614 |
|
returnValue("false")); |
| 615 |
1 |
this.mockXWiki.stubs().method("getSpacePreferenceAsInt").with(ANYTHING, ANYTHING, ANYTHING) |
| 616 |
|
.will(returnValue(0)); |
| 617 |
|
|
| 618 |
1 |
assertAccessLevelForGuestUser("login" , doc, true); |
| 619 |
1 |
assertAccessLevelForGuestUser("register" , doc, true); |
| 620 |
1 |
assertAccessLevelForGuestUser("view" , doc, true); |
| 621 |
1 |
assertAccessLevelForGuestUser("edit" , doc, true); |
| 622 |
1 |
assertAccessLevelForGuestUser("delete" , doc, true); |
| 623 |
1 |
assertAccessLevelForGuestUser("admin" , doc, true); |
| 624 |
1 |
assertAccessLevelForGuestUser("programming", doc, false); |
| 625 |
|
} |
| 626 |
|
|
| |
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 627 |
7 |
private void assertAccessLevelForAdminUser(String level, XWikiDocument doc, boolean shouldAllow) throws Exception... |
| 628 |
|
{ |
| 629 |
|
|
| 630 |
7 |
if (shouldAllow) { |
| 631 |
7 |
assertTrue(level + " for admin should be allowed.", |
| 632 |
|
this.rightService.hasAccessLevel(level, getContext().getWikiId() + ":XWiki.Admin", |
| 633 |
|
doc.getFullName(), getContext())); |
| 634 |
|
} else { |
| 635 |
0 |
assertFalse(level + " for admin should be denied.", |
| 636 |
|
this.rightService.hasAccessLevel(level, getContext().getWikiId() + ":XWiki.Admin", |
| 637 |
|
doc.getFullName(), getContext())); |
| 638 |
|
} |
| 639 |
|
} |
| 640 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (24) |
Complexity: 1 |
Complexity Density: 0.04 |
1PASS
|
|
| 641 |
1 |
public void testAdminAccessLevels() throws Exception... |
| 642 |
|
{ |
| 643 |
1 |
getContext().setWikiId("xwiki"); |
| 644 |
|
|
| 645 |
1 |
final XWikiDocument doc |
| 646 |
|
= new XWikiDocument(new DocumentReference(getContext().getWikiId(), "Space", "Page")); |
| 647 |
|
|
| 648 |
1 |
final XWikiDocument xwikiPreferences |
| 649 |
|
= new XWikiDocument(new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreference")); |
| 650 |
|
|
| 651 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember") |
| 652 |
|
.with(ANYTHING, ANYTHING, ANYTHING, ANYTHING).will( |
| 653 |
|
returnValue(Collections.emptyList())); |
| 654 |
|
|
| 655 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getFullName()), ANYTHING) |
| 656 |
|
.will(returnValue(doc)); |
| 657 |
|
|
| 658 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING) |
| 659 |
|
.will(returnValue(doc)); |
| 660 |
|
|
| 661 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 662 |
|
returnValue(xwikiPreferences)); |
| 663 |
|
|
| 664 |
1 |
this.mockXWiki.stubs().method("getXWikiPreference").with(ANYTHING, ANYTHING, ANYTHING).will( |
| 665 |
|
returnValue("false")); |
| 666 |
1 |
this.mockXWiki.stubs().method("getXWikiPreferenceAsInt").with(ANYTHING, ANYTHING, ANYTHING) |
| 667 |
|
.will(returnValue(0)); |
| 668 |
1 |
this.mockXWiki.stubs().method("getSpacePreference").with(ANYTHING, ANYTHING, ANYTHING).will( |
| 669 |
|
returnValue("false")); |
| 670 |
1 |
this.mockXWiki.stubs().method("getSpacePreferenceAsInt").with(ANYTHING, ANYTHING, ANYTHING) |
| 671 |
|
.will(returnValue(0)); |
| 672 |
|
|
| 673 |
1 |
BaseObject preferencesObject = new BaseObject(); |
| 674 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 675 |
1 |
preferencesObject.setStringValue("levels", "admin"); |
| 676 |
1 |
preferencesObject.setIntValue("allow", 1); |
| 677 |
1 |
preferencesObject.setStringValue("users", getContext().getWikiId() + ":XWiki.Admin"); |
| 678 |
1 |
xwikiPreferences.addXObject(preferencesObject); |
| 679 |
|
|
| 680 |
1 |
assertAccessLevelForAdminUser("login" , doc, true); |
| 681 |
1 |
assertAccessLevelForAdminUser("register" , doc, true); |
| 682 |
1 |
assertAccessLevelForAdminUser("view" , doc, true); |
| 683 |
1 |
assertAccessLevelForAdminUser("edit" , doc, true); |
| 684 |
1 |
assertAccessLevelForAdminUser("delete" , doc, true); |
| 685 |
1 |
assertAccessLevelForAdminUser("admin" , doc, true); |
| 686 |
1 |
assertAccessLevelForAdminUser("programming", doc, true); |
| 687 |
|
|
| 688 |
|
} |
| 689 |
|
|
| 690 |
|
|
| 691 |
|
|
| 692 |
|
|
| 693 |
|
|
| 694 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (46) |
Complexity: 1 |
Complexity Density: 0.02 |
1PASS
|
|
| 695 |
1 |
public void testEditRightsOnWebPreferencesDocuments() throws Exception... |
| 696 |
|
{ |
| 697 |
|
|
| 698 |
1 |
this.mockGroupService.stubs().method("getAllGroupsReferencesForMember") |
| 699 |
|
.with(ANYTHING, ANYTHING, ANYTHING, ANYTHING).will( |
| 700 |
|
returnValue(Collections.emptyList())); |
| 701 |
|
|
| 702 |
1 |
this.user = new XWikiDocument(new DocumentReference("wiki", "XWiki", "user")); |
| 703 |
1 |
this.user.setNew(false); |
| 704 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 705 |
1 |
BaseObject userObject = new BaseObject(); |
| 706 |
1 |
userObject.setClassName("XWiki.XWikiUser"); |
| 707 |
1 |
this.user.addXObject(userObject); |
| 708 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(this.user.getPrefixedFullName()), ANYTHING).will( |
| 709 |
|
returnValue(this.user)); |
| 710 |
|
|
| 711 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 712 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference("wiki", "Space", "Document")); |
| 713 |
|
|
| 714 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 715 |
|
returnValue(doc)); |
| 716 |
|
|
| 717 |
1 |
final XWikiDocument preferences = new XWikiDocument(new DocumentReference("wiki", "XWiki", "XWikiPreference")); |
| 718 |
|
|
| 719 |
1 |
BaseObject preferencesObject = new BaseObject(); |
| 720 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 721 |
1 |
preferencesObject.setStringValue("levels", "admin"); |
| 722 |
1 |
preferencesObject.setIntValue("allow", 0); |
| 723 |
1 |
preferencesObject.setStringValue("users", "xwiki:XWiki.UserA"); |
| 724 |
1 |
preferences.addXObject(preferencesObject); |
| 725 |
|
|
| 726 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq("wiki:Space.WebPreferences"), ANYTHING) |
| 727 |
|
.will(returnValue( |
| 728 |
|
new XWikiDocument(new DocumentReference("wiki", |
| 729 |
|
"Space", "WebPreferences")))); |
| 730 |
|
|
| 731 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq("wiki:XWiki.XWikiPreferences"), ANYTHING) |
| 732 |
|
.will(returnValue( |
| 733 |
|
new XWikiDocument(new DocumentReference("wiki", |
| 734 |
|
"XWiki", "XWikiPreferences")))); |
| 735 |
|
|
| 736 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq("wiki:Space.XWikiPreferences"), ANYTHING) |
| 737 |
|
.will(returnValue( |
| 738 |
|
new XWikiDocument(new DocumentReference("wiki", |
| 739 |
|
"Space", "XWikiPreferences")))); |
| 740 |
|
|
| 741 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(XWIKIPREFERENCES_REFERENCE), ANYTHING).will( |
| 742 |
|
new CustomStub("Implements XWiki.getDocument") |
| 743 |
|
{ |
| |
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 744 |
20 |
@Override... |
| 745 |
|
public Object invoke(Invocation invocation) throws Throwable |
| 746 |
|
{ |
| 747 |
20 |
if (!getContext().getWikiId().equals("wiki")) { |
| 748 |
12 |
new XWikiDocument(new DocumentReference(getContext().getWikiId(), "XWiki", "XWikiPreference")); |
| 749 |
|
} |
| 750 |
|
|
| 751 |
20 |
return preferences; |
| 752 |
|
} |
| 753 |
|
}); |
| 754 |
|
|
| 755 |
1 |
assertFalse( "Programming rights have not been configured.", |
| 756 |
|
rightService.hasAccessLevel("programming", "xwiki:XWiki.UserA", "wiki:Space.WebPreferences", getContext())); |
| 757 |
|
|
| 758 |
1 |
assertFalse( "Admin rights have not been configured.", |
| 759 |
|
rightService.hasAccessLevel("admin", "xwiki:XWiki.UserA", "wiki:Space.WebPreferences", getContext())); |
| 760 |
|
|
| 761 |
1 |
assertFalse( "Shouldn't allow edit rights by default on WebPreferences documents.", |
| 762 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:Space.WebPreferences", getContext())); |
| 763 |
|
|
| 764 |
1 |
assertFalse( "Edit rights should be denied by default on XWiki.XWikiPreferences", |
| 765 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:XWiki.XWikiPreferences", getContext())); |
| 766 |
|
|
| 767 |
1 |
assertTrue( "Other documents named XWikiPreferences should be unaffected.", |
| 768 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:Space.XWikiPreferences", getContext())); |
| 769 |
|
|
| 770 |
1 |
preferencesObject = new BaseObject(); |
| 771 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 772 |
1 |
preferencesObject.setStringValue("levels", "edit"); |
| 773 |
1 |
preferencesObject.setIntValue("allow", 1); |
| 774 |
1 |
preferencesObject.setStringValue("users", "xwiki:XWiki.UserA"); |
| 775 |
1 |
preferences.addXObject(preferencesObject); |
| 776 |
|
|
| 777 |
1 |
assertTrue( "Edit rights have been configured.", |
| 778 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:Space.Document", getContext())); |
| 779 |
|
|
| 780 |
1 |
assertFalse( "No admin rights have been configured.", |
| 781 |
|
rightService.hasAccessLevel("admin", "xwiki:XWiki.UserA", "wiki:Space.Document", getContext())); |
| 782 |
|
|
| 783 |
1 |
assertFalse( "Edit rights should be denied WebPreferences document for non-admin users.", |
| 784 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:Space.WebPreferences", getContext())); |
| 785 |
|
|
| 786 |
1 |
assertFalse( "Edit rights should be denied XWiki.XWikiPreferences document for non-admin users.", |
| 787 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:XWiki.XWikiPreferences", getContext())); |
| 788 |
|
|
| 789 |
1 |
preferencesObject = new BaseObject(); |
| 790 |
1 |
preferencesObject.setClassName("XWiki.XWikiGlobalRights"); |
| 791 |
1 |
preferencesObject.setStringValue("levels", "admin"); |
| 792 |
1 |
preferencesObject.setIntValue("allow", 1); |
| 793 |
1 |
preferencesObject.setStringValue("users", "xwiki:XWiki.UserA"); |
| 794 |
1 |
preferences.addXObject(preferencesObject); |
| 795 |
|
|
| 796 |
1 |
assertTrue( "Admin rights have been configured.", |
| 797 |
|
rightService.hasAccessLevel("admin", "xwiki:XWiki.UserA", "wiki:Space.Document", getContext())); |
| 798 |
|
|
| 799 |
1 |
assertTrue( "Edit rights should be granted on WebPreferences document for admin users.", |
| 800 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:Space.WebPreferences", getContext())); |
| 801 |
|
|
| 802 |
1 |
assertTrue( "Edit rights should be granted on XWiki.XWikiPreferences document for non-admin users.", |
| 803 |
|
rightService.hasAccessLevel("edit", "xwiki:XWiki.UserA", "wiki:XWiki.XWikiPreferences", getContext())); |
| 804 |
|
|
| 805 |
|
|
| 806 |
|
} |
| 807 |
|
|
| 808 |
|
|
| 809 |
|
|
| 810 |
|
|
| 811 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (19) |
Complexity: 1 |
Complexity Density: 0.05 |
1PASS
|
|
| 812 |
1 |
public void testDeniesAccessLevelForCreateIfDocumentDeniesEdit() throws Exception... |
| 813 |
|
{ |
| 814 |
1 |
getContext().setWikiId(this.user.getWikiName()); |
| 815 |
1 |
final XWikiDocument doc = new XWikiDocument(new DocumentReference(this.user.getWikiName(), "Space", "Page")); |
| 816 |
|
|
| 817 |
|
|
| 818 |
1 |
BaseObject xo = new BaseObject(); |
| 819 |
1 |
xo.setClassName("XWiki.XWikiRights"); |
| 820 |
1 |
xo.setStringValue("levels", "edit"); |
| 821 |
1 |
xo.setStringValue("users", user.getFullName()); |
| 822 |
1 |
xo.setIntValue("allow", 0); |
| 823 |
1 |
doc.addXObject(xo); |
| 824 |
|
|
| 825 |
1 |
DocumentReference dr = new DocumentReference(this.user.getWikiName(), "XWiki", "XWikiPreferences"); |
| 826 |
1 |
this.mockXWiki.stubs().method("getDocument").with(isA(EntityReference.class), ANYTHING) |
| 827 |
|
.will(returnValue(new XWikiDocument(new DocumentReference(dr)))); |
| 828 |
|
|
| 829 |
1 |
this.mockXWiki.stubs().method("getDocument").with(eq(doc.getPrefixedFullName()), ANYTHING).will( |
| 830 |
|
returnValue(doc)); |
| 831 |
1 |
this.mockXWiki.stubs().method("getXWikiPreference").with(eq("authenticate_edit"), ANYTHING, ANYTHING).will( |
| 832 |
|
returnValue("")); |
| 833 |
1 |
this.mockXWiki.stubs().method("getXWikiPreferenceAsInt").with(eq("authenticate_edit"), ANYTHING, ANYTHING).will( |
| 834 |
|
returnValue(0)); |
| 835 |
1 |
this.mockXWiki.stubs().method("getSpacePreference").with(eq("authenticate_edit"), ANYTHING, ANYTHING).will( |
| 836 |
|
returnValue("")); |
| 837 |
1 |
this.mockXWiki.stubs().method("getSpacePreferenceAsInt").with(eq("authenticate_edit"), ANYTHING, ANYTHING).will( |
| 838 |
|
returnValue(0)); |
| 839 |
1 |
this.mockXWiki.stubs().method("checkAuth").with(ANYTHING).will( |
| 840 |
|
returnValue(new XWikiUser(this.user.getFullName()))); |
| 841 |
1 |
this.mockXWiki.stubs().method("getRightService").will(returnValue(this.rightService)); |
| 842 |
|
|
| 843 |
1 |
assertFalse("Should not have edit permission on document if it is denied at a document level", |
| 844 |
|
this.rightService.checkAccess("edit", doc, getContext())); |
| 845 |
1 |
assertFalse("Should not have create permission on document if it is denied at a document level", |
| 846 |
|
this.rightService.checkAccess("create", doc, getContext())); |
| 847 |
|
} |
| 848 |
|
} |
| 849 |
|
|