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
edf4045c
Commit
edf4045c
authored
Oct 15, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing tests for Kairos config adapter
Closes gh-14821
parent
ffe5e88d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
147 additions
and
0 deletions
+147
-0
KairosPropertiesConfigAdapterTests.java
...ics/export/kairos/KairosPropertiesConfigAdapterTests.java
+66
-0
StepRegistryPropertiesConfigAdapterTests.java
.../properties/StepRegistryPropertiesConfigAdapterTests.java
+81
-0
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/kairos/KairosPropertiesConfigAdapterTests.java
0 → 100644
View file @
edf4045c
/*
* Copyright 2012-2018 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
.
autoconfigure
.
metrics
.
export
.
kairos
;
import
org.junit.Test
;
import
org.springframework.boot.actuate.autoconfigure.metrics.export.properties.StepRegistryPropertiesConfigAdapterTests
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Tests for {@link KairosPropertiesConfigAdapter}.
*
* @author Stephane Nicoll
*/
public
class
KairosPropertiesConfigAdapterTests
extends
StepRegistryPropertiesConfigAdapterTests
<
KairosProperties
,
KairosPropertiesConfigAdapter
>
{
@Override
protected
KairosProperties
createProperties
()
{
return
new
KairosProperties
();
}
@Override
protected
KairosPropertiesConfigAdapter
createConfigAdapter
(
KairosProperties
properties
)
{
return
new
KairosPropertiesConfigAdapter
(
properties
);
}
@Test
public
void
whenPropertiesUrisIsSetAdapterUriReturnsIt
()
{
KairosProperties
properties
=
createProperties
();
properties
.
setUri
(
"https://kairos.example.com:8080/api/v1/datapoints"
);
assertThat
(
createConfigAdapter
(
properties
).
uri
())
.
isEqualTo
(
"https://kairos.example.com:8080/api/v1/datapoints"
);
}
@Test
public
void
whenPropertiesUserNameIsSetAdapterUserNameReturnsIt
()
{
KairosProperties
properties
=
createProperties
();
properties
.
setUserName
(
"alice"
);
assertThat
(
createConfigAdapter
(
properties
).
userName
()).
isEqualTo
(
"alice"
);
}
@Test
public
void
whenPropertiesPasswordIsSetAdapterPasswordReturnsIt
()
{
KairosProperties
properties
=
createProperties
();
properties
.
setPassword
(
"secret"
);
assertThat
(
createConfigAdapter
(
properties
).
password
()).
isEqualTo
(
"secret"
);
}
}
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/export/properties/StepRegistryPropertiesConfigAdapterTests.java
0 → 100644
View file @
edf4045c
/*
* Copyright 2012-2018 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
.
autoconfigure
.
metrics
.
export
.
properties
;
import
java.time.Duration
;
import
org.junit.Test
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Base test for {@link StepRegistryPropertiesConfigAdapter} implementations.
*
* @author Stephane Nicoll
*/
public
abstract
class
StepRegistryPropertiesConfigAdapterTests
<
P
extends
StepRegistryProperties
,
A
extends
StepRegistryPropertiesConfigAdapter
<
P
>>
{
protected
abstract
P
createProperties
();
protected
abstract
A
createConfigAdapter
(
P
properties
);
@Test
public
void
whenPropertiesStepIsSetAdapterStepReturnsIt
()
{
P
properties
=
createProperties
();
properties
.
setStep
(
Duration
.
ofSeconds
(
42
));
assertThat
(
createConfigAdapter
(
properties
).
step
())
.
isEqualTo
(
Duration
.
ofSeconds
(
42
));
}
@Test
public
void
whenPropertiesEnabledIsSetAdapterEnabledReturnsIt
()
{
P
properties
=
createProperties
();
properties
.
setEnabled
(
false
);
assertThat
(
createConfigAdapter
(
properties
).
enabled
()).
isFalse
();
}
@Test
public
void
whenPropertiesConnectTimeoutIsSetAdapterConnectTimeoutReturnsIt
()
{
P
properties
=
createProperties
();
properties
.
setConnectTimeout
(
Duration
.
ofMinutes
(
42
));
assertThat
(
createConfigAdapter
(
properties
).
connectTimeout
())
.
isEqualTo
(
Duration
.
ofMinutes
(
42
));
}
@Test
public
void
whenPropertiesReadTimeoutIsSetAdapterReadTimeoutReturnsIt
()
{
P
properties
=
createProperties
();
properties
.
setReadTimeout
(
Duration
.
ofMillis
(
42
));
assertThat
(
createConfigAdapter
(
properties
).
readTimeout
())
.
isEqualTo
(
Duration
.
ofMillis
(
42
));
}
@Test
public
void
whenPropertiesNumThreadsIsSetAdapterNumThreadsReturnsIt
()
{
P
properties
=
createProperties
();
properties
.
setNumThreads
(
42
);
assertThat
(
createConfigAdapter
(
properties
).
numThreads
()).
isEqualTo
(
42
);
}
@Test
public
void
whenPropertiesBatchSizeIsSetAdapterBatchSizeReturnsIt
()
{
P
properties
=
createProperties
();
properties
.
setBatchSize
(
10042
);
assertThat
(
createConfigAdapter
(
properties
).
batchSize
()).
isEqualTo
(
10042
);
}
}
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