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
e026c7a8
Commit
e026c7a8
authored
Jun 18, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.2.x'
parents
7ed1aa27
bbb0b7a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
113 additions
and
3 deletions
+113
-3
EnvironmentTestUtils.java
...a/org/springframework/boot/test/EnvironmentTestUtils.java
+16
-3
EnvironmentTestUtilsTests.java
.../springframework/boot/test/EnvironmentTestUtilsTests.java
+97
-0
No files found.
spring-boot/src/main/java/org/springframework/boot/test/EnvironmentTestUtils.java
View file @
e026c7a8
/*
* Copyright 2012-201
4
the original author or authors.
* Copyright 2012-201
5
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.
...
...
@@ -30,6 +30,7 @@ import org.springframework.core.env.MutablePropertySources;
* Test utilities for setting environment values.
*
* @author Dave Syer
* @author Stephane Nicoll
*/
public
abstract
class
EnvironmentTestUtils
{
...
...
@@ -79,12 +80,24 @@ public abstract class EnvironmentTestUtils {
map
=
value
;
}
for
(
String
pair
:
pairs
)
{
int
index
=
pair
.
indexOf
(
":"
);
index
=
index
<
0
?
index
=
pair
.
indexOf
(
"="
)
:
index
;
int
index
=
getSeparatorIndex
(
pair
);
String
key
=
pair
.
substring
(
0
,
index
>
0
?
index
:
pair
.
length
());
String
value
=
index
>
0
?
pair
.
substring
(
index
+
1
)
:
""
;
map
.
put
(
key
.
trim
(),
value
.
trim
());
}
}
private
static
int
getSeparatorIndex
(
String
pair
)
{
int
colonIndex
=
pair
.
indexOf
(
":"
);
int
equalIndex
=
pair
.
indexOf
(
"="
);
if
(
colonIndex
==
-
1
)
{
return
equalIndex
;
}
else
if
(
equalIndex
==
-
1
)
{
return
colonIndex
;
}
else
{
return
Math
.
min
(
colonIndex
,
equalIndex
);
}
}
}
spring-boot/src/test/java/org/springframework/boot/test/EnvironmentTestUtilsTests.java
0 → 100644
View file @
e026c7a8
/*
* Copyright 2012-2015 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
.
test
;
import
java.util.HashMap
;
import
java.util.Map
;
import
org.junit.Test
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.MapPropertySource
;
import
org.springframework.core.env.StandardEnvironment
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
/**
* Tests for {@link EnvironmentTestUtils}.
*
* @author Stephane Nicoll
*/
public
class
EnvironmentTestUtilsTests
{
private
final
ConfigurableEnvironment
environment
=
new
StandardEnvironment
();
@Test
public
void
addSimplePairEqual
()
{
testAddSimplePair
(
"my.foo"
,
"bar"
,
"="
);
}
@Test
public
void
addSimplePairColon
()
{
testAddSimplePair
(
"my.foo"
,
"bar"
,
":"
);
}
@Test
public
void
addSimplePairEqualWithEqualInValue
()
{
testAddSimplePair
(
"my.foo"
,
"b=ar"
,
"="
);
}
@Test
public
void
addSimplePairEqualWithColonInValue
()
{
testAddSimplePair
(
"my.foo"
,
"b:ar"
,
"="
);
}
@Test
public
void
addSimplePairColonWithColonInValue
()
{
testAddSimplePair
(
"my.foo"
,
"b:ar"
,
":"
);
}
@Test
public
void
addSimplePairColonWithEqualInValue
()
{
testAddSimplePair
(
"my.foo"
,
"b=ar"
,
":"
);
}
@Test
public
void
addPairNoValue
()
{
String
propertyName
=
"my.foo+bar"
;
assertFalse
(
environment
.
containsProperty
(
propertyName
));
EnvironmentTestUtils
.
addEnvironment
(
environment
,
propertyName
);
assertTrue
(
environment
.
containsProperty
(
propertyName
));
assertEquals
(
""
,
environment
.
getProperty
(
propertyName
));
}
private
void
testAddSimplePair
(
String
key
,
String
value
,
String
delimiter
)
{
assertFalse
(
"Property '"
+
key
+
"' should not exist"
,
environment
.
containsProperty
(
key
));
EnvironmentTestUtils
.
addEnvironment
(
environment
,
key
+
delimiter
+
value
);
assertEquals
(
"Wrong value for property '"
+
key
+
"'"
,
value
,
environment
.
getProperty
(
key
));
}
@Test
public
void
testConfigHasHigherPrecedence
()
{
Map
<
String
,
Object
>
map
=
new
HashMap
<
String
,
Object
>();
map
.
put
(
"my.foo"
,
"bar"
);
MapPropertySource
source
=
new
MapPropertySource
(
"sample"
,
map
);
environment
.
getPropertySources
().
addFirst
(
source
);
assertEquals
(
"bar"
,
environment
.
getProperty
(
"my.foo"
));
EnvironmentTestUtils
.
addEnvironment
(
environment
,
"my.foo=bar2"
);
assertEquals
(
"bar2"
,
environment
.
getProperty
(
"my.foo"
));
}
}
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