use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlyselect.
@Test
public void testPKOnlyselect() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly(1, 3);
mapper.insert(key);
key = new Pkonly(5, 6);
mapper.insert(key);
key = new Pkonly(7, 8);
mapper.insert(key);
List<Pkonly> answer = mapper.select(dsl -> dsl.where(pkonly.id, isGreaterThan(4)).orderBy(pkonly.id));
assertThat(answer.size()).isEqualTo(2);
assertThat(answer.get(0).getId().intValue()).isEqualTo(5);
assertThat(answer.get(0).getSeqNum().intValue()).isEqualTo(6);
assertThat(answer.get(1).getId().intValue()).isEqualTo(7);
assertThat(answer.get(1).getSeqNum().intValue()).isEqualTo(8);
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlySelectByExampleBackwards.
@Test
public void testPKOnlySelectByExampleBackwards() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly(1, 3);
mapper.insert(key);
key = new Pkonly(5, 6);
mapper.insert(key);
key = new Pkonly(7, 8);
mapper.insert(key);
List<Pkonly> answer = mapper.select(c -> c.where(pkonly.id, isGreaterThan(4)).orderBy(pkonly.id));
assertThat(answer.size()).isEqualTo(2);
assertThat(answer.get(0).getId().intValue()).isEqualTo(5);
assertThat(answer.get(0).getSeqNum().intValue()).isEqualTo(6);
assertThat(answer.get(1).getId().intValue()).isEqualTo(7);
assertThat(answer.get(1).getSeqNum().intValue()).isEqualTo(8);
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlyDeleteByPrimaryKey.
@Test
public void testPKOnlyDeleteByPrimaryKey() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly(1, 3);
int rows = mapper.insert(key);
assertThat(rows).isEqualTo(1);
key = new Pkonly(5, 6);
rows = mapper.insert(key);
assertThat(rows).isEqualTo(1);
List<Pkonly> answer = mapper.select(SelectDSLCompleter.allRows());
assertThat(answer.size()).isEqualTo(2);
rows = mapper.deleteByPrimaryKey(5, 6);
assertThat(rows).isEqualTo(1);
answer = mapper.select(SelectDSLCompleter.allRows());
assertThat(answer.size()).isEqualTo(1);
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlydelete.
@Test
public void testPKOnlydelete() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly(1, 3);
mapper.insert(key);
key = new Pkonly(5, 6);
mapper.insert(key);
key = new Pkonly(7, 8);
mapper.insert(key);
int rows = mapper.delete(dsl -> dsl.where(pkonly.id, isGreaterThan(4)));
assertThat(rows).isEqualTo(2);
List<Pkonly> answer = mapper.select(SelectDSLCompleter.allRows());
assertThat(answer.size()).isEqualTo(1);
}
}
use of mbg.test.mb3.generated.dsql.model.Pkonly in project generator by mybatis.
the class DynamicSqlTest method testPKOnlySelectByExampleWithBackwardsResults.
@Test
public void testPKOnlySelectByExampleWithBackwardsResults() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
Pkonly key = new Pkonly(1, 3);
mapper.insert(key);
key = new Pkonly(5, 6);
mapper.insert(key);
key = new Pkonly(7, 8);
mapper.insert(key);
List<Pkonly> answer = mapper.select(c -> c.where(pkonly.id, isGreaterThan(4)).orderBy(pkonly.id));
assertThat(answer.size()).isEqualTo(2);
assertThat(answer.get(0).getId().intValue()).isEqualTo(5);
assertThat(answer.get(0).getSeqNum().intValue()).isEqualTo(6);
assertThat(answer.get(1).getId().intValue()).isEqualTo(7);
assertThat(answer.get(1).getSeqNum().intValue()).isEqualTo(8);
}
}
Aggregations