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
5661f8fc
Commit
5661f8fc
authored
Nov 29, 2013
by
Christian Dupuis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test key/value sanitization
parent
078933c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
13 deletions
+56
-13
ConfigurationPropertiesReportEndpointTests.java
.../endpoint/ConfigurationPropertiesReportEndpointTests.java
+56
-13
No files found.
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/ConfigurationPropertiesReportEndpointTests.java
View file @
5661f8fc
...
...
@@ -16,15 +16,17 @@
package
org
.
springframework
.
boot
.
actuate
.
endpoint
;
import
java.util.Map
;
import
org.junit.Test
;
import
org.springframework.boot.actuate.properties.ManagementServerProperties
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.autoconfigure.web.ServerProperties
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.boot.context.properties.EnableConfigurationProperties
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
static
org
.
hamcrest
.
Matchers
.
greaterThan
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertNotNull
;
import
static
org
.
junit
.
Assert
.
assertThat
;
public
class
ConfigurationPropertiesReportEndpointTests
extends
...
...
@@ -36,10 +38,36 @@ public class ConfigurationPropertiesReportEndpointTests extends
}
@Test
public
void
i
nvoke
()
throws
Exception
{
public
void
testI
nvoke
()
throws
Exception
{
assertThat
(
getEndpointBean
().
invoke
().
size
(),
greaterThan
(
0
));
}
@Test
@SuppressWarnings
(
"unchecked"
)
public
void
testDefaultKeySanitization
()
throws
Exception
{
ConfigurationPropertiesReportEndpoint
report
=
getEndpointBean
();
// report.setKeysToSanitize(new String[] {});
Map
<
String
,
Object
>
properties
=
report
.
invoke
();
Map
<
String
,
Object
>
nestedProperties
=
(
Map
<
String
,
Object
>)
properties
.
get
(
"testProperties"
);
assertNotNull
(
nestedProperties
);
assertEquals
(
"******"
,
nestedProperties
.
get
(
"dbPassword"
));
assertEquals
(
"654321"
,
nestedProperties
.
get
(
"myTestProperty"
));
}
@Test
@SuppressWarnings
(
"unchecked"
)
public
void
testKeySanitization
()
throws
Exception
{
ConfigurationPropertiesReportEndpoint
report
=
getEndpointBean
();
report
.
setKeysToSanitize
(
new
String
[]
{
"property"
});
Map
<
String
,
Object
>
properties
=
report
.
invoke
();
Map
<
String
,
Object
>
nestedProperties
=
(
Map
<
String
,
Object
>)
properties
.
get
(
"testProperties"
);
assertNotNull
(
nestedProperties
);
assertEquals
(
"123456"
,
nestedProperties
.
get
(
"dbPassword"
));
assertEquals
(
"******"
,
nestedProperties
.
get
(
"myTestProperty"
));
}
@Configuration
@EnableConfigurationProperties
public
static
class
Config
{
...
...
@@ -50,18 +78,33 @@ public class ConfigurationPropertiesReportEndpointTests extends
}
@Bean
public
ServerProperties
server
Properties
()
{
return
new
Server
Properties
();
public
TestProperties
test
Properties
()
{
return
new
Test
Properties
();
}
@Bean
public
ManagementServerProperties
managementServerProperties
()
{
return
new
ManagementServerProperties
();
}
@ConfigurationProperties
(
name
=
"test"
)
public
static
class
TestProperties
{
private
String
dbPassword
=
"123456"
;
private
String
myTestProperty
=
"654321"
;
public
String
getDbPassword
()
{
return
this
.
dbPassword
;
}
public
void
setDbPassword
(
String
dbPassword
)
{
this
.
dbPassword
=
dbPassword
;
}
public
String
getMyTestProperty
()
{
return
this
.
myTestProperty
;
}
public
void
setMyTestProperty
(
String
myTestProperty
)
{
this
.
myTestProperty
=
myTestProperty
;
}
@Bean
public
SecurityProperties
securityProperties
()
{
return
new
SecurityProperties
();
}
}
}
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