/* * Copyright 2012-2017 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.boot.actuate.audit; import java.util.Collections; import org.json.JSONObject; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; import static org.assertj.core.api.Assertions.assertThat; /** * Tests for {@link AuditEvent}. * * @author Dave Syer * @author Vedran Pavic */ public class AuditEventTests { @Rule public ExpectedException thrown = ExpectedException.none(); @Test public void nowEvent() throws Exception { AuditEvent event = new AuditEvent("phil", "UNKNOWN", Collections.singletonMap("a", (Object) "b")); assertThat(event.getData().get("a")).isEqualTo("b"); assertThat(event.getType()).isEqualTo("UNKNOWN"); assertThat(event.getPrincipal()).isEqualTo("phil"); assertThat(event.getTimestamp()).isNotNull(); } @Test public void convertStringsToData() throws Exception { AuditEvent event = new AuditEvent("phil", "UNKNOWN", "a=b", "c=d"); assertThat(event.getData().get("a")).isEqualTo("b"); assertThat(event.getData().get("c")).isEqualTo("d"); } @Test public void nullTimestamp() throws Exception { this.thrown.expect(IllegalArgumentException.class); this.thrown.expectMessage("Timestamp must not be null"); new AuditEvent(null, "phil", "UNKNOWN", Collections.singletonMap("a", (Object) "b")); } @Test public void nullPrincipal() throws Exception { this.thrown.expect(IllegalArgumentException.class); this.thrown.expectMessage("Principal must not be null"); new AuditEvent(null, "UNKNOWN", Collections.singletonMap("a", (Object) "b")); } @Test public void nullType() throws Exception { this.thrown.expect(IllegalArgumentException.class); this.thrown.expectMessage("Type must not be null"); new AuditEvent("phil", null, Collections.singletonMap("a", (Object) "b")); } @Test public void jsonFormat() throws Exception { AuditEvent event = new AuditEvent("johannes", "UNKNOWN", Collections.singletonMap("type", (Object) "BadCredentials")); String json = Jackson2ObjectMapperBuilder.json().build() .writeValueAsString(event); JSONObject jsonObject = new JSONObject(json); assertThat(jsonObject.getString("type")).isEqualTo("UNKNOWN"); assertThat(jsonObject.getJSONObject("data").getString("type")) .isEqualTo("BadCredentials"); } }