/** * Licensed to The Apereo Foundation under one or more contributor license * agreements. See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * * The Apereo Foundation licenses this file to you under the Educational * Community 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://opensource.org/licenses/ecl2.txt * * 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.opencastproject.security.api; import org.junit.After; import org.junit.Before; import org.junit.Test; import java.util.List; import junit.framework.Assert; /** * Tests JAXB un/marshalling of acces control lists */ public class AccessControlParserTest { /** The acl to test */ private AccessControlList acl = null; @Before public void setUp() throws Exception { // Construct an ACL with 100 entries acl = new AccessControlList(); List<AccessControlEntry> entries = acl.getEntries(); for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { entries.add(new AccessControlEntry(Integer.toString(i), Integer.toString(j), (i + j % 2 == 0))); } } } @After public void tearDown() throws Exception { acl = null; } @Test public void testXmlParsing() throws Exception { // Get the acl as an xml string String xml = AccessControlParser.toXml(acl); // Now convert back to an acl and confirm that the roles, etc are as expected AccessControlList aclAfterMarshaling = AccessControlParser.parseAcl(xml); for (AccessControlEntry entry : aclAfterMarshaling.getEntries()) { int role = Integer.parseInt(entry.getRole()); int action = Integer.parseInt(entry.getAction()); boolean allowed = entry.isAllow(); Assert.assertEquals(allowed, role + action % 2 == 0); } } @Test public void testJsonParsing() throws Exception { // Get the acl as a JSON string String json = AccessControlParser.toJson(acl); // Now convert back to an acl and confirm that the roles, etc are as expected // Now convert back to an acl and confirm that the roles, etc are as expected AccessControlList aclAfterMarshaling = AccessControlParser.parseAcl(json); for (AccessControlEntry entry : aclAfterMarshaling.getEntries()) { int role = Integer.parseInt(entry.getRole()); int action = Integer.parseInt(entry.getAction()); boolean allowed = entry.isAllow(); Assert.assertEquals(allowed, role + action % 2 == 0); } } }