Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
1aa7b30b
Commit
1aa7b30b
authored
Feb 12, 2019
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x'
parents
738da8ff
8e6b4629
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
AuthenticationAuditListener.java
...rk/boot/actuate/security/AuthenticationAuditListener.java
+4
-2
AuthenticationAuditListenerTests.java
...ot/actuate/security/AuthenticationAuditListenerTests.java
+11
-1
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/security/AuthenticationAuditListener.java
View file @
1aa7b30b
/*
/*
* Copyright 2012-201
7
the original author or authors.
* Copyright 2012-201
9
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -103,7 +103,9 @@ public class AuthenticationAuditListener extends AbstractAuthenticationAuditList
...
@@ -103,7 +103,9 @@ public class AuthenticationAuditListener extends AbstractAuthenticationAuditList
if
(
event
.
getAuthentication
().
getDetails
()
!=
null
)
{
if
(
event
.
getAuthentication
().
getDetails
()
!=
null
)
{
data
.
put
(
"details"
,
event
.
getAuthentication
().
getDetails
());
data
.
put
(
"details"
,
event
.
getAuthentication
().
getDetails
());
}
}
if
(
event
.
getTargetUser
()
!=
null
)
{
data
.
put
(
"target"
,
event
.
getTargetUser
().
getUsername
());
data
.
put
(
"target"
,
event
.
getTargetUser
().
getUsername
());
}
listener
.
publish
(
new
AuditEvent
(
event
.
getAuthentication
().
getName
(),
listener
.
publish
(
new
AuditEvent
(
event
.
getAuthentication
().
getName
(),
AUTHENTICATION_SWITCH
,
data
));
AUTHENTICATION_SWITCH
,
data
));
}
}
...
...
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/security/AuthenticationAuditListenerTests.java
View file @
1aa7b30b
/*
/*
* Copyright 2012-201
8
the original author or authors.
* Copyright 2012-201
9
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -92,6 +92,16 @@ public class AuthenticationAuditListenerTests {
...
@@ -92,6 +92,16 @@ public class AuthenticationAuditListenerTests {
.
isEqualTo
(
AuthenticationAuditListener
.
AUTHENTICATION_SWITCH
);
.
isEqualTo
(
AuthenticationAuditListener
.
AUTHENTICATION_SWITCH
);
}
}
@Test
public
void
testAuthenticationSwitchBackToAnonymous
()
{
AuditApplicationEvent
event
=
handleAuthenticationEvent
(
new
AuthenticationSwitchUserEvent
(
new
UsernamePasswordAuthenticationToken
(
"user"
,
"password"
),
null
));
assertThat
(
event
.
getAuditEvent
().
getType
())
.
isEqualTo
(
AuthenticationAuditListener
.
AUTHENTICATION_SWITCH
);
}
@Test
@Test
public
void
testDetailsAreIncludedInAuditEvent
()
{
public
void
testDetailsAreIncludedInAuditEvent
()
{
Object
details
=
new
Object
();
Object
details
=
new
Object
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment