![JAR search and dependency download from the Maven repository](/logo.png)
com.github.smallcreep.cucumber.seeds.db.DbDefault Maven / Gradle / Ivy
The newest version!
/*
* MIT License
*
* Copyright (c) 2018 Ilia Rogozhin (@smallcreep)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.github.smallcreep.cucumber.seeds.db;
import com.github.smallcreep.cucumber.seeds.DataBase;
import com.github.smallcreep.cucumber.seeds.Schema;
import com.github.smallcreep.cucumber.seeds.Sql;
import com.github.smallcreep.cucumber.seeds.schema.SchemaSimple;
import com.github.smallcreep.cucumber.seeds.sql.SelectSql;
import com.jcabi.jdbc.JdbcSession;
import com.jcabi.jdbc.Outcome;
import com.jcabi.jdbc.SingleOutcome;
import org.hamcrest.CoreMatchers;
import org.hamcrest.MatcherAssert;
/**
* Default implementation of {@link DataBase}.
* Connect method request `SELECT 1;` from database.
* @since 0.1.1
*/
public final class DbDefault implements DataBase {
/**
* Session.
*/
private final JdbcSession session;
/**
* Ctor.
* @param session JDBC session
*/
public DbDefault(final JdbcSession session) {
this.session = session;
}
@Override
public void connect() throws Exception {
MatcherAssert.assertThat(
"Connection to DB response not expected",
this.result(
new SelectSql("1"),
new SingleOutcome<>(Long.class)
),
CoreMatchers.equalTo(1L)
);
}
@Override
public T result(
final Sql sql,
final Outcome outcome
) throws Exception {
return this.session.sql(sql.query()).select(outcome);
}
@Override
public T update(
final Sql sql,
final Outcome outcome
) throws Exception {
return this.session.sql(sql.query()).update(outcome);
}
@Override
public Schema schema(final String schema) {
return new SchemaSimple(schema, this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy