use of org.seasar.doma.jdbc.query.SqlFileSelectQuery in project doma by domaframework.
the class BasicSingleResultHandlerTest method testHandle_NonUniqueResultException.
@Test
public void testHandle_NonUniqueResultException() throws Exception {
MockResultSetMetaData metaData = new MockResultSetMetaData();
metaData.columns.add(new ColumnMetaData("x"));
MockResultSet resultSet = new MockResultSet(metaData);
resultSet.rows.add(new RowData("aaa"));
resultSet.rows.add(new RowData("bbb"));
SqlFileSelectQuery query = new SqlFileSelectQuery();
query.setConfig(runtimeConfig);
query.setSqlFilePath(SqlFileUtil.buildPath(getClass().getName(), method.getName()));
query.setCallerClassName("aaa");
query.setCallerMethodName("bbb");
query.setMethod(method);
query.setSqlLogType(SqlLogType.FORMATTED);
query.prepare();
BasicSingleResultHandler<String> handler = new BasicSingleResultHandler<>(StringWrapper::new);
try {
handler.handle(resultSet, query, (i, next) -> {
});
fail();
} catch (NonUniqueResultException ignore) {
}
}
use of org.seasar.doma.jdbc.query.SqlFileSelectQuery in project doma by domaframework.
the class SelectCommandTest method testExecute_NoResultException.
@Test
public void testExecute_NoResultException() throws Exception {
MockResultSetMetaData metaData = new MockResultSetMetaData();
metaData.columns.add(new ColumnMetaData("id"));
metaData.columns.add(new ColumnMetaData("name"));
metaData.columns.add(new ColumnMetaData("salary"));
metaData.columns.add(new ColumnMetaData("version"));
MockResultSet resultSet = new MockResultSet(metaData);
runtimeConfig.dataSource.connection = new MockConnection(new MockPreparedStatement(resultSet));
SqlFileSelectQuery query = new SqlFileSelectQuery();
query.setConfig(runtimeConfig);
query.setSqlFilePath(SqlFileUtil.buildPath(getClass().getName(), method.getName()));
query.addParameter("name", String.class, "hoge");
query.addParameter("salary", BigDecimal.class, new BigDecimal(10000));
query.setMethod(getClass().getMethod(method.getName()));
query.setCallerClassName("aaa");
query.setCallerMethodName("bbb");
query.setResultEnsured(true);
query.setSqlLogType(SqlLogType.FORMATTED);
query.prepare();
SelectCommand<Emp> command = new SelectCommand<>(query, new EntitySingleResultHandler<>(_Emp.getSingletonInternal()));
try {
command.execute();
fail();
} catch (Exception expected) {
}
}
use of org.seasar.doma.jdbc.query.SqlFileSelectQuery in project doma by domaframework.
the class SelectCommandTest method testExecute_singleResult.
@Test
public void testExecute_singleResult() throws Exception {
MockResultSetMetaData metaData = new MockResultSetMetaData();
metaData.columns.add(new ColumnMetaData("id"));
metaData.columns.add(new ColumnMetaData("name"));
metaData.columns.add(new ColumnMetaData("salary"));
metaData.columns.add(new ColumnMetaData("version"));
MockResultSet resultSet = new MockResultSet(metaData);
resultSet.rows.add(new RowData(1, "hoge", new BigDecimal(10000), 100));
runtimeConfig.dataSource.connection = new MockConnection(new MockPreparedStatement(resultSet));
SqlFileSelectQuery query = new SqlFileSelectQuery();
query.setConfig(runtimeConfig);
query.setSqlFilePath(SqlFileUtil.buildPath(getClass().getName(), method.getName()));
query.addParameter("name", String.class, "hoge");
query.addParameter("salary", BigDecimal.class, new BigDecimal(10000));
query.setMethod(getClass().getMethod(method.getName()));
query.setCallerClassName("aaa");
query.setCallerMethodName("bbb");
query.setSqlLogType(SqlLogType.FORMATTED);
query.prepare();
SelectCommand<Emp> command = new SelectCommand<>(query, new EntitySingleResultHandler<>(_Emp.getSingletonInternal()));
Emp entity = command.execute();
query.complete();
assertNotNull(entity);
assertEquals(new Integer(1), entity.getId());
assertEquals("hoge", entity.getName());
assertEquals(new BigDecimal(10000), entity.getSalary());
assertEquals(new Integer(100), entity.getVersion());
List<BindValue> bindValues = runtimeConfig.dataSource.connection.preparedStatement.bindValues;
BindValue bindValue = bindValues.get(0);
assertEquals("hoge", bindValue.getValue());
assertEquals(1, bindValue.getIndex());
bindValue = bindValues.get(1);
assertEquals(new BigDecimal(10000), bindValue.getValue());
assertEquals(2, bindValue.getIndex());
}
use of org.seasar.doma.jdbc.query.SqlFileSelectQuery in project doma by domaframework.
the class EmpDaoImpl method selectByExample.
@Override
public List<Emp> selectByExample(Emp emp) {
SqlFileSelectQuery query = __support.getQueryImplementors().createSqlFileSelectQuery(method2);
query.setConfig(__support.getConfig());
query.setSqlFilePath(SqlFileUtil.buildPath("example.dao.EmpDao", "selectByNameAndSalary"));
query.addParameter("emp", Emp.class, emp);
query.setCallerClassName("example.dao.EmpDao");
query.setCallerMethodName("selectByNameAndSalary");
query.prepare();
SelectCommand<List<Emp>> command = __support.getCommandImplementors().createSelectCommand(method2, query, new EntityResultListHandler<Emp>(_Emp.getSingletonInternal()));
return command.execute();
}
use of org.seasar.doma.jdbc.query.SqlFileSelectQuery in project doma by domaframework.
the class EmpDaoImpl method stream.
@Override
public Integer stream(Function<Stream<Emp>, Integer> mapper) {
SqlFileSelectQuery query = __support.getQueryImplementors().createSqlFileSelectQuery(method6);
query.setConfig(__support.getConfig());
query.setSqlFilePath(SqlFileUtil.buildPath("example.dao.EmpDao", "iterate"));
query.setCallerClassName("example.dao.EmpDao");
query.setCallerMethodName("iterate");
query.prepare();
SelectCommand<Integer> command = __support.getCommandImplementors().createSelectCommand(method6, query, new EntityStreamHandler<Emp, Integer>(_Emp.getSingletonInternal(), mapper));
return command.execute();
}
Aggregations