-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathApplicationPropertiesTests.java
75 lines (67 loc) · 3.47 KB
/
ApplicationPropertiesTests.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* Copyright 2018-2022 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
*
* https://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 io.spring.githubchangeloggenerator;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.springframework.boot.context.properties.bind.Binder;
import org.springframework.boot.context.properties.source.ConfigurationPropertySources;
import org.springframework.boot.env.YamlPropertySourceLoader;
import org.springframework.core.env.PropertySource;
import org.springframework.core.io.ClassPathResource;
import io.spring.githubchangeloggenerator.ApplicationProperties.IssueSort;
import io.spring.githubchangeloggenerator.ApplicationProperties.IssueType;
import io.spring.githubchangeloggenerator.ApplicationProperties.Section;
import io.spring.githubchangeloggenerator.github.service.Repository;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link ApplicationProperties}.
*
* @author Phillip Webb
* @author Steven Sheehy
*/
class ApplicationPropertiesTests {
@Test
void loadYaml() throws Exception {
YamlPropertySourceLoader yamlLoader = new YamlPropertySourceLoader();
List<PropertySource<?>> yaml = yamlLoader.load("application",
new ClassPathResource("test-application.yml", getClass()));
Binder binder = new Binder(ConfigurationPropertySources.from(yaml));
ApplicationProperties properties = binder.bind("changelog", ApplicationProperties.class).get();
Repository repository = properties.getRepository();
assertThat(repository.getOwner()).isEqualTo("testorg");
assertThat(repository.getName()).isEqualTo("testrepo");
List<Section> sections = properties.getSections();
assertThat(sections).hasSize(2);
assertThat(sections.get(0).getTitle()).isEqualTo(":star: New Features");
assertThat(sections.get(0).getLabels()).containsExactly("enhancement");
assertThat(sections.get(0).getGroup()).isEqualTo("default");
assertThat(sections.get(0).getSort()).isEqualTo(IssueSort.CREATED);
assertThat(sections.get(0).getType()).isEqualTo(IssueType.ISSUE);
assertThat(sections.get(1).getTitle()).isEqualTo("Bugs");
assertThat(sections.get(1).getLabels()).containsExactly("bug");
assertThat(sections.get(1).getGroup()).isEqualTo("test");
assertThat(sections.get(1).getSort()).isNull();
assertThat(sections.get(1).getType()).isEqualTo(IssueType.ANY);
assertThat(properties.getIssues().getExcludes().getLabels()).containsExactly("hide");
assertThat(properties.getIssues().getSort()).isEqualTo(IssueSort.TITLE);
assertThat(properties.getContributors().getTitle()).isEqualTo("Nice one!");
assertThat(properties.getContributors().getExclude().getNames()).containsExactly("philwebb");
assertThat(properties.getExternalLinks().get(0).getName()).isEqualTo("Release Notes 1");
assertThat(properties.getExternalLinks().get(0).getLocation()).isEqualTo("url1");
assertThat(properties.getExternalLinks().get(1).getName()).isEqualTo("Release Notes 2");
assertThat(properties.getExternalLinks().get(1).getLocation()).isEqualTo("url2");
}
}