use of org.xwiki.model.reference.WikiReference in project xwiki-platform by xwiki.
the class XWikiCachingRightService method hasAccessLevel.
@Override
public boolean hasAccessLevel(String rightName, String username, String docname, XWikiContext context) throws XWikiException {
WikiReference wikiReference = new WikiReference(context.getWikiId());
DocumentReference document = resolveDocumentName(docname, wikiReference);
LOGGER.debug("hasAccessLevel() resolved document named [{}] into reference [{}]", docname, document);
DocumentReference user = resolveUserName(username, wikiReference);
if (user != null && XWikiConstants.GUEST_USER.equals(user.getName())) {
// Public users (not logged in) should be passed as null in the new API
user = null;
}
Right right = Right.toRight(rightName);
return authorizationManager.hasAccess(right, user, document);
}
use of org.xwiki.model.reference.WikiReference in project xwiki-platform by xwiki.
the class TestDefinitionParserTest method testDefinitionTestParser.
@Test
public void testDefinitionTestParser() throws Exception {
TestDefinitionParser parser = new DefaultTestDefinitionParser();
EntityReferenceResolver<String> resolver = componentManager.getInstance(EntityReferenceResolver.TYPE_STRING);
EntityReferenceSerializer<String> serializer = componentManager.getInstance(EntityReferenceSerializer.TYPE_STRING);
TestDefinition testDefinition = parser.parse("testwikis" + File.separatorChar + "parserTester.xml", resolver, serializer);
Collection<TestWiki> testWikis = testDefinition.getWikis();
assertThat("There should be some wikis", testWikis, notNullValue());
assertThat("The wikis count should be 3", testWikis.size(), equalTo(3));
TestWiki mainwiki = testDefinition.getMainWiki();
assertThat("Main wiki should be defined", mainwiki, notNullValue());
assertThat("Main wiki should be named 'wiki'", mainwiki.getWikiReference(), equalTo(new WikiReference("wiki")));
assertThat("Main wiki should be main wiki", mainwiki.isMainWiki(), is(true));
assertThat("Main wiki owner should be XWiki.Admin", mainwiki.getOwner(), equalTo(new DocumentReference("wiki", "XWiki", "Admin")));
assertThat("Main wiki should have 4 users (2 groups, and 2 users)", mainwiki.getUsers().size(), equalTo(4));
assertThat("Main wiki should have 2 groups", mainwiki.getGroups().size(), equalTo(2));
assertThat("Main wiki should have a groupA", mainwiki.getGroup("groupA"), notNullValue());
assertThat("Main wiki should have a userA", mainwiki.getUser("userA"), notNullValue());
Collection<TestGroup> groups = mainwiki.getUser("userA").getGroups();
assertThat("UserA of Main wiki should be in 2 groups", groups.size(), equalTo(2));
List<DocumentReference> groupRefs = new ArrayList<DocumentReference>();
for (TestGroup group : groups) {
groupRefs.add(group.getGroupReference());
}
assertThat("User A is in GroupA of the main wiki and the subwiki", groupRefs, hasItems(new DocumentReference("wiki", "XWiki", "groupA"), new DocumentReference("wiki1", "XWiki", "groupA")));
Collection<TestAccessRule> rules = mainwiki.getAccessRules();
assertThat("There must be 26 access rules on main wiki", rules.size(), equalTo(26));
List<DocumentReference> userRefs = new ArrayList<DocumentReference>();
List<Right> rights = new ArrayList<Right>();
List<RuleState> states = new ArrayList<RuleState>();
for (TestAccessRule rule : rules) {
userRefs.add(rule.getUser());
rights.add(rule.getRight());
states.add(rule.getState());
}
assertThat("Users in access rules of main wiki mismatch", userRefs, hasItems(new DocumentReference("wiki", "XWiki", "userA"), new DocumentReference("wiki", "XWiki", "userB"), new DocumentReference("wiki", "XWiki", "groupA"), new DocumentReference("wiki", "XWiki", "groupB")));
assertThat("Rights in access rules of main wiki mismatch", rights, hasItems(Right.VIEW, Right.LOGIN, Right.EDIT, Right.COMMENT, Right.DELETE, Right.REGISTER, Right.ADMIN, Right.PROGRAM));
assertThat("State in access rules of main wiki mismatch", states, hasItems(RuleState.ALLOW, RuleState.DENY));
assertThat("Main wiki should have 3 spaces (2 plus XWiki)", mainwiki.getSpaces().size(), equalTo(3));
TestSpace space = mainwiki.getSpace("space1");
assertThat("Main wiki should have a space named 'space1'", space, notNullValue());
assertThat("'space1' of main wiki should have description 'space 1'", space.getDescription(), equalTo("space 1"));
rules = space.getAccessRules();
assertThat("There must be 8 access rules on space 1", rules.size(), equalTo(8));
userRefs = new ArrayList<DocumentReference>();
rights = new ArrayList<Right>();
states = new ArrayList<RuleState>();
for (TestAccessRule rule : rules) {
userRefs.add(rule.getUser());
rights.add(rule.getRight());
states.add(rule.getState());
}
assertThat("Users in access rules of space 1 of main wiki mismatch", userRefs, hasItems(new DocumentReference("wiki", "XWiki", "userA"), new DocumentReference("wiki", "XWiki", "userB"), new DocumentReference("wiki", "XWiki", "groupB")));
assertThat("Rights in access rules of space 1 of main wiki mismatch", rights, hasItems(Right.VIEW, Right.EDIT, Right.COMMENT, Right.DELETE, Right.ADMIN));
assertThat("State in access rules of space 1 of main wiki mismatch", states, hasItems(RuleState.DENY));
assertThat("Space 1 of main wiki should have 2 documents", space.getDocuments().size(), equalTo(2));
TestDocument document = space.getDocument("document1");
assertThat("Space 1 of main wiki should have a document named 'document1'", document, notNullValue());
assertThat("'document1' of 'space1' of main wiki should have description 'Document 1'", document.getDescription(), equalTo("Document 1"));
rules = document.getAccessRules();
assertThat("There must be 7 access rules on document 1", rules.size(), equalTo(7));
userRefs = new ArrayList<DocumentReference>();
rights = new ArrayList<Right>();
states = new ArrayList<RuleState>();
for (TestAccessRule rule : rules) {
userRefs.add(rule.getUser());
rights.add(rule.getRight());
states.add(rule.getState());
}
assertThat("Users in access rules of document 1 of space 1 of main wiki mismatch", userRefs, hasItems(new DocumentReference("wiki", "XWiki", "userA"), new DocumentReference("wiki", "XWiki", "userB"), new DocumentReference("wiki", "XWiki", "groupA")));
assertThat("Rights in access rules of document 1 of space 1 of main wiki mismatch", rights, hasItems(Right.VIEW, Right.EDIT, Right.COMMENT, Right.DELETE));
assertThat("State in access rules of document 1 of space 1 of main wiki mismatch", states, hasItems(RuleState.ALLOW));
}
use of org.xwiki.model.reference.WikiReference in project xwiki-platform by xwiki.
the class UserAndGroupDocumentReferenceResolverTest method afterComponent.
@AfterComponent
public void afterComponent() throws Exception {
EntityReferenceProvider provider = this.mocker.registerMockComponent(EntityReferenceProvider.class);
when(provider.getDefaultReference(EntityType.WIKI)).thenReturn(new WikiReference("defaultwiki"));
}
use of org.xwiki.model.reference.WikiReference in project xwiki-platform by xwiki.
the class LegacyTestWiki method getAllGroupReferences.
private Collection<DocumentReference> getAllGroupReferences(final DocumentReference userReference) {
final TestWiki wiki = wikis.get(context.getWikiId());
if (wiki == null) {
return Collections.<DocumentReference>emptySet();
}
final Collection<String> groupNames = wiki.getGroupsForUser(userReference);
final SpaceReference userSpaceReference = new SpaceReference("XWiki", new WikiReference(wiki.getName()));
return new AbstractCollection<DocumentReference>() {
@Override
public int size() {
return groupNames.size();
}
@Override
public Iterator<DocumentReference> iterator() {
return new Iterator<DocumentReference>() {
private final Iterator<String> groupNamesIterator = groupNames.iterator();
@Override
public boolean hasNext() {
return groupNamesIterator.hasNext();
}
@Override
public DocumentReference next() {
String groupName = groupNamesIterator.next();
return documentReferenceResolver.resolve(groupName, userSpaceReference);
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
};
}
};
}
use of org.xwiki.model.reference.WikiReference in project xwiki-platform by xwiki.
the class WikiUIExtensionParametersTest method getParametersWithAnEqualSignInAValue.
@Test
public void getParametersWithAnEqualSignInAValue() throws Exception {
when(modelContext.getCurrentEntityReference()).thenReturn(new WikiReference("xwiki"));
when(velocityEngine.evaluate(any(VelocityContext.class), any(StringWriter.class), eq("id:key"), eq("value"))).thenReturn(true);
WikiUIExtensionParameters parameters = new WikiUIExtensionParameters("id", "key=value", componentManager);
// Since the StringWriter is created within the method, the value is "" and not "value".
Assert.assertEquals("", parameters.get().get("key"));
}
Aggregations