/* * Copyright 2002-2016 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.springframework.security.acls.domain; import static org.assertj.core.api.Assertions.*; import static org.mockito.Mockito.*; import java.io.ByteArrayOutputStream; import java.io.PrintStream; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.springframework.security.acls.model.AccessControlEntry; import org.springframework.security.acls.model.AuditableAccessControlEntry; /** * Test class for {@link ConsoleAuditLogger}. * * @author Andrei Stefan */ public class AuditLoggerTests { // ~ Instance fields // ================================================================================================ private PrintStream console; private ByteArrayOutputStream bytes = new ByteArrayOutputStream(); private ConsoleAuditLogger logger; private AuditableAccessControlEntry ace; // ~ Methods // ======================================================================================================== @Before public void setUp() throws Exception { logger = new ConsoleAuditLogger(); ace = mock(AuditableAccessControlEntry.class); console = System.out; System.setOut(new PrintStream(bytes)); } @After public void tearDown() throws Exception { System.setOut(console); bytes.reset(); } @Test public void nonAuditableAceIsIgnored() { AccessControlEntry ace = mock(AccessControlEntry.class); logger.logIfNeeded(true, ace); assertThat(bytes.size()).isEqualTo(0); } @Test public void successIsNotLoggedIfAceDoesntRequireSuccessAudit() throws Exception { when(ace.isAuditSuccess()).thenReturn(false); logger.logIfNeeded(true, ace); assertThat(bytes.size()).isEqualTo(0); } @Test public void successIsLoggedIfAceRequiresSuccessAudit() throws Exception { when(ace.isAuditSuccess()).thenReturn(true); logger.logIfNeeded(true, ace); assertThat(bytes.toString().startsWith("GRANTED due to ACE")).isTrue(); } @Test public void failureIsntLoggedIfAceDoesntRequireFailureAudit() throws Exception { when(ace.isAuditFailure()).thenReturn(false); logger.logIfNeeded(false, ace); assertThat(bytes.size()).isEqualTo(0); } @Test public void failureIsLoggedIfAceRequiresFailureAudit() throws Exception { when(ace.isAuditFailure()).thenReturn(true); logger.logIfNeeded(false, ace); assertThat(bytes.toString().startsWith("DENIED due to ACE")).isTrue(); } }