6 changed files with 198 additions and 15 deletions
@ -0,0 +1,65 @@
@@ -0,0 +1,65 @@
|
||||
/* |
||||
* Copyright 2012-2023 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 org.springframework.boot.autoconfigure.liquibase; |
||||
|
||||
import java.util.function.Consumer; |
||||
|
||||
import liquibase.integration.spring.SpringLiquibase; |
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.autoconfigure.AutoConfigurations; |
||||
import org.springframework.boot.autoconfigure.jdbc.EmbeddedDataSourceConfiguration; |
||||
import org.springframework.boot.test.context.assertj.AssertableApplicationContext; |
||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; |
||||
import org.springframework.boot.test.context.runner.ContextConsumer; |
||||
import org.springframework.boot.testsupport.classpath.ClassPathOverrides; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link LiquibaseAutoConfiguration} with Liquibase 4.23. |
||||
* |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
@ClassPathOverrides("org.liquibase:liquibase-core:4.23.1") |
||||
class Liquibase423AutoConfigurationTests { |
||||
|
||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() |
||||
.withConfiguration(AutoConfigurations.of(LiquibaseAutoConfiguration.class)) |
||||
.withPropertyValues("spring.datasource.generate-unique-name=true"); |
||||
|
||||
@Test |
||||
void defaultSpringLiquibase() { |
||||
this.contextRunner.withUserConfiguration(EmbeddedDataSourceConfiguration.class) |
||||
.run(assertLiquibase((liquibase) -> { |
||||
assertThat(liquibase.getChangeLog()).isEqualTo("classpath:/db/changelog/db.changelog-master.yaml"); |
||||
assertThat(liquibase.getContexts()).isNull(); |
||||
assertThat(liquibase.getDefaultSchema()).isNull(); |
||||
assertThat(liquibase.isDropFirst()).isFalse(); |
||||
assertThat(liquibase.isClearCheckSums()).isFalse(); |
||||
})); |
||||
} |
||||
|
||||
private ContextConsumer<AssertableApplicationContext> assertLiquibase(Consumer<SpringLiquibase> consumer) { |
||||
return (context) -> { |
||||
assertThat(context).hasSingleBean(SpringLiquibase.class); |
||||
SpringLiquibase liquibase = context.getBean(SpringLiquibase.class); |
||||
consumer.accept(liquibase); |
||||
}; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,52 @@
@@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright 2012-2023 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 org.springframework.boot.autoconfigure.liquibase; |
||||
|
||||
import java.util.List; |
||||
import java.util.stream.Stream; |
||||
|
||||
import liquibase.UpdateSummaryEnum; |
||||
import liquibase.UpdateSummaryOutputEnum; |
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.autoconfigure.liquibase.LiquibaseProperties.ShowSummary; |
||||
import org.springframework.boot.autoconfigure.liquibase.LiquibaseProperties.ShowSummaryOutput; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link LiquibaseProperties}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
public class LiquibasePropertiesTests { |
||||
|
||||
@Test |
||||
void valuesOfShowSummaryMatchValuesOfUpdateSummaryEnum() { |
||||
assertThat(namesOf(ShowSummary.values())).isEqualTo(namesOf(UpdateSummaryEnum.values())); |
||||
} |
||||
|
||||
@Test |
||||
void valuesOfShowSummaryOutputMatchValuesOfUpdateSummaryOutputEnum() { |
||||
assertThat(namesOf(ShowSummaryOutput.values())).isEqualTo(namesOf(UpdateSummaryOutputEnum.values())); |
||||
} |
||||
|
||||
private List<String> namesOf(Enum<?>[] input) { |
||||
return Stream.of(input).map(Enum::name).toList(); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue