/*
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig licenses this file to you 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 the following location:
*
* 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.jasig.cas.ticket.registry;
import java.util.ArrayList;
import java.util.Collection;
import org.jasig.cas.authentication.Authentication;
import org.jasig.cas.authentication.ImmutableAuthentication;
import org.jasig.cas.authentication.principal.Service;
import org.jasig.cas.authentication.principal.SimplePrincipal;
import org.jasig.cas.authentication.principal.SimpleWebApplicationServiceImpl;
import org.jasig.cas.ticket.ServiceTicket;
import org.jasig.cas.ticket.Ticket;
import org.jasig.cas.ticket.TicketGrantingTicket;
import org.jasig.cas.ticket.TicketGrantingTicketImpl;
import org.jasig.cas.ticket.support.NeverExpiresExpirationPolicy;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.mock.web.MockHttpServletRequest;
import static org.junit.Assert.*;
/**
*
Duplication of {@link AbstractTicketRegistryTests} provided in
* cas-server-core module.
* Modifications :
*
* - Inline methods {@link #getAuthentication()} and
* {@link #getService()} as {@link #getAuthentication()} and
* {@link #getService()}
*
*
* @author Scott Battaglia
* @version $Revision: 42053 $ $Date: 2007-06-10 15:17:55 +0200 (Sun, 10 Jun 2007) $
* @since 3.0
*/
public abstract class AbstractTicketRegistryTests {
private static final int TICKETS_IN_REGISTRY = 10;
protected final Logger log = LoggerFactory.getLogger(this.getClass());
private TicketRegistry ticketRegistry = null;
@Before
public void setUp() throws Exception {
this.ticketRegistry = this.getNewTicketRegistry();
}
/**
* Abstract method to retrieve a new ticket registry. Implementing classes
* return the TicketRegistry they wish to test.
*
* @return the TicketRegistry we wish to test
*/
public abstract TicketRegistry getNewTicketRegistry() throws Exception;
public static Service getService() {
final MockHttpServletRequest request = new MockHttpServletRequest();
request.addParameter("service", "test");
return SimpleWebApplicationServiceImpl.createServiceFrom(request);
}
public static Authentication getAuthentication() {
return new ImmutableAuthentication(new SimplePrincipal("test"));
}
/**
* Method to add a TicketGrantingTicket to the ticket cache. This should add
* the ticket and return. Failure upon any exception.
*/
@Test
public void testAddTicketToCache() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST",
getAuthentication(),
new NeverExpiresExpirationPolicy()));
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testGetNullTicket() {
try {
this.ticketRegistry.getTicket(null, TicketGrantingTicket.class);
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Exception caught. None expected.");
}
}
@Test
public void testGetNonExistingTicket() {
try {
this.ticketRegistry.getTicket("FALALALALALAL", TicketGrantingTicket.class);
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Exception caught. None expected.");
}
}
@Test
public void testGetExistingTicketWithProperClass() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST",
getAuthentication(),
new NeverExpiresExpirationPolicy()));
this.ticketRegistry.getTicket("TEST", TicketGrantingTicket.class);
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testGetExistingTicketWithInproperClass() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST", getAuthentication(), new NeverExpiresExpirationPolicy()));
this.ticketRegistry.getTicket("TEST", ServiceTicket.class);
} catch (ClassCastException e) {
return;
}
fail("ClassCastException expected.");
}
@Test
public void testGetNullTicketWithoutClass() {
try {
this.ticketRegistry.getTicket(null);
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Exception caught. None expected.");
}
}
@Test
public void testGetNonExistingTicketWithoutClass() {
try {
this.ticketRegistry.getTicket("FALALALALALAL");
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Exception caught. None expected.");
}
}
@Test
public void testGetExistingTicket() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST",
getAuthentication(),
new NeverExpiresExpirationPolicy()));
this.ticketRegistry.getTicket("TEST");
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testDeleteExistingTicket() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST", getAuthentication(), new NeverExpiresExpirationPolicy()));
assertTrue("Ticket was not deleted.", this.ticketRegistry.deleteTicket("TEST"));
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testDeleteNonExistingTicket() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST", getAuthentication(), new NeverExpiresExpirationPolicy()));
assertFalse("Ticket was deleted.", this.ticketRegistry.deleteTicket("TEST1"));
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testDeleteNullTicket() {
try {
this.ticketRegistry.addTicket(new TicketGrantingTicketImpl("TEST",
getAuthentication(),
new NeverExpiresExpirationPolicy()));
assertFalse("Ticket was deleted.", this.ticketRegistry
.deleteTicket(null));
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testGetTicketsIsZero() {
try {
assertEquals("The size of the empty registry is not zero.",
this.ticketRegistry.getTickets().size(), 0);
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
@Test
public void testGetTicketsFromRegistryEqualToTicketsAdded() {
final Collection tickets = new ArrayList();
for (int i = 0; i < TICKETS_IN_REGISTRY; i++) {
final TicketGrantingTicket ticketGrantingTicket = new TicketGrantingTicketImpl(
"TEST" + i, getAuthentication(),
new NeverExpiresExpirationPolicy());
final ServiceTicket st = ticketGrantingTicket.grantServiceTicket("tests" + i, getService(), new NeverExpiresExpirationPolicy(), false);
tickets.add(ticketGrantingTicket);
tickets.add(st);
this.ticketRegistry.addTicket(ticketGrantingTicket);
this.ticketRegistry.addTicket(st);
}
try {
Collection ticketRegistryTickets = this.ticketRegistry.getTickets();
assertEquals(
"The size of the registry is not the same as the collection.",
ticketRegistryTickets.size(), tickets.size());
for (final Ticket ticket : tickets) {
if (!ticketRegistryTickets.contains(ticket)) {
fail("Ticket was added to registry but was not found in retrieval of collection of all tickets.");
}
}
} catch (Exception e) {
log.error(e.getMessage(), e);
fail("Caught an exception. But no exception should have been thrown.");
}
}
}