use of mbg.test.ib2j5.generated.conditional.dao.PkblobsDAO in project generator by mybatis.
the class UpdateByExampleTest method testPKBlobsUpdateByExampleWithoutBLOBs.
@Test
public void testPKBlobsUpdateByExampleWithoutBLOBs() {
PkblobsDAO dao = getPkblobsDAO();
try {
Pkblobs record = new Pkblobs();
record.setId(3);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
record = new Pkblobs();
record.setId(6);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
Pkblobs newRecord = new Pkblobs();
newRecord.setId(8);
PkblobsExample example = new PkblobsExample();
example.createCriteria().andIdGreaterThan(4);
int rows = dao.updateByExampleWithoutBLOBs(newRecord, example);
assertEquals(1, rows);
List<Pkblobs> answer = dao.selectByExampleWithBLOBs(example);
assertEquals(1, answer.size());
Pkblobs returnedRecord = answer.get(0);
assertEquals(8, returnedRecord.getId().intValue());
assertTrue(blobsAreEqual(record.getBlob1(), returnedRecord.getBlob1()));
assertTrue(blobsAreEqual(record.getBlob2(), returnedRecord.getBlob2()));
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.dao.PkblobsDAO in project generator by mybatis.
the class ConditionalJava5Test method testPKBlobsDeleteByPrimaryKey.
@Test
public void testPKBlobsDeleteByPrimaryKey() {
PkblobsDAO dao = getPkblobsDAO();
try {
Pkblobs record = new Pkblobs();
record.setId(3);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
PkblobsExample example = new PkblobsExample();
List<Pkblobs> answer = dao.selectByExampleWithoutBLOBs(example);
assertEquals(1, answer.size());
int rows = dao.deleteByPrimaryKey(3);
assertEquals(1, rows);
example = new PkblobsExample();
answer = dao.selectByExampleWithoutBLOBs(example);
assertEquals(0, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.dao.PkblobsDAO in project generator by mybatis.
the class ConditionalJava5Test method testPKBlobsSelectByExampleWithoutBlobsNoCriteria.
@Test
public void testPKBlobsSelectByExampleWithoutBlobsNoCriteria() {
PkblobsDAO dao = getPkblobsDAO();
try {
Pkblobs record = new Pkblobs();
record.setId(3);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
record = new Pkblobs();
record.setId(6);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
PkblobsExample example = new PkblobsExample();
example.createCriteria();
List<Pkblobs> answer = dao.selectByExampleWithoutBLOBs(example);
assertEquals(2, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.dao.PkblobsDAO in project generator by mybatis.
the class ConditionalJava5Test method testPKBlobsUpdateByPrimaryKeyWithBLOBs.
@Test
public void testPKBlobsUpdateByPrimaryKeyWithBLOBs() {
PkblobsDAO dao = getPkblobsDAO();
try {
Pkblobs record = new Pkblobs();
record.setId(3);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
record = new Pkblobs();
record.setId(3);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
int rows = dao.updateByPrimaryKey(record);
assertEquals(1, rows);
Pkblobs newRecord = dao.selectByPrimaryKey(3);
assertNotNull(newRecord);
assertEquals(record.getId(), newRecord.getId());
assertTrue(blobsAreEqual(record.getBlob1(), newRecord.getBlob1()));
assertTrue(blobsAreEqual(record.getBlob2(), newRecord.getBlob2()));
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j5.generated.conditional.dao.PkblobsDAO in project generator by mybatis.
the class ConditionalJava5Test method testPKBlobsDeleteByExample.
@Test
public void testPKBlobsDeleteByExample() {
PkblobsDAO dao = getPkblobsDAO();
try {
Pkblobs record = new Pkblobs();
record.setId(3);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
record = new Pkblobs();
record.setId(6);
record.setBlob1(generateRandomBlob());
record.setBlob2(generateRandomBlob());
dao.insert(record);
PkblobsExample example = new PkblobsExample();
List<Pkblobs> answer = dao.selectByExampleWithoutBLOBs(example);
assertEquals(2, answer.size());
example = new PkblobsExample();
example.createCriteria().andIdLessThan(4);
int rows = dao.deleteByExample(example);
assertEquals(1, rows);
example = new PkblobsExample();
answer = dao.selectByExampleWithoutBLOBs(example);
assertEquals(1, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
Aggregations