mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
33 lines
966 B
Java
33 lines
966 B
Java
package com.commafeed;
|
|
|
|
import java.sql.Connection;
|
|
import java.sql.SQLException;
|
|
|
|
import javax.sql.DataSource;
|
|
|
|
import com.codahale.metrics.MetricRegistry;
|
|
|
|
import io.dropwizard.testing.ResourceHelpers;
|
|
import io.dropwizard.testing.junit5.DropwizardAppExtension;
|
|
|
|
public class CommaFeedDropwizardAppExtension extends DropwizardAppExtension<CommaFeedConfiguration> {
|
|
|
|
public CommaFeedDropwizardAppExtension() {
|
|
super(CommaFeedApplication.class, ResourceHelpers.resourceFilePath("config.test.yml"));
|
|
}
|
|
|
|
@Override
|
|
public void after() {
|
|
super.after();
|
|
|
|
// clean database after each test
|
|
DataSource dataSource = getConfiguration().getDataSourceFactory().build(new MetricRegistry(), "cleanup");
|
|
try (Connection connection = dataSource.getConnection()) {
|
|
connection.prepareStatement("DROP ALL OBJECTS").executeUpdate();
|
|
} catch (SQLException e) {
|
|
throw new RuntimeException("could not cleanup database", e);
|
|
}
|
|
}
|
|
|
|
}
|