Polish "Look in correct context when finding Liquibase beans"

See gh-22681
This commit is contained in:
Andy Wilkinson 2020-07-31 12:20:58 +01:00
parent 62156810cf
commit 59b1df4548
2 changed files with 12 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2020 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.

View File

@ -62,6 +62,17 @@ class LiquibaseEndpointTests {
});
}
@Test
void liquibaseReportIsReturnedForContextHierarchy() {
this.contextRunner.withUserConfiguration().run((parent) -> {
this.contextRunner.withUserConfiguration(Config.class).withParent(parent).run((context) -> {
Map<String, LiquibaseBean> liquibaseBeans = context.getBean(LiquibaseEndpoint.class).liquibaseBeans()
.getContexts().get(parent.getId()).getLiquibaseBeans();
assertThat(liquibaseBeans.get("liquibase").getChangeSets()).hasSize(1);
});
});
}
@Test
void invokeWithCustomSchema() {
this.contextRunner.withUserConfiguration(Config.class)