/*
* Copyright (C) 2011-2016 Markus Junginger, greenrobot (http://greenrobot.org)
*
* This file is part of greenDAO Generator.
*
* greenDAO Generator is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* greenDAO Generator is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with greenDAO Generator. If not, see <http://www.gnu.org/licenses/>.
*/
package org.greenrobot.greendao.daotest.entity;
import java.util.List;
import org.greenrobot.greendao.identityscope.IdentityScopeType;
import org.greenrobot.greendao.test.AbstractDaoTestLongPk;
import org.greenrobot.greendao.daotest.DaoMaster;
import org.greenrobot.greendao.daotest.DaoSession;
import org.greenrobot.greendao.daotest.RelationEntity;
import org.greenrobot.greendao.daotest.RelationEntityDao;
import org.greenrobot.greendao.daotest.TestEntity;
import org.greenrobot.greendao.daotest.TestEntityDao;
public class RelationEntityTest extends AbstractDaoTestLongPk<RelationEntityDao, RelationEntity> {
protected DaoMaster daoMaster;
protected DaoSession daoSession;
/** set before calling setUp of this class. */
protected IdentityScopeType identityScopeTypeForSession;
public RelationEntityTest() {
super(RelationEntityDao.class);
identityScopeTypeForSession = IdentityScopeType.None;
}
@Override
protected void setUp() throws Exception {
super.setUp();
TestEntityDao.createTable(db, false);
daoMaster = new DaoMaster(db);
daoSession = daoMaster.newSession(identityScopeTypeForSession);
dao = daoSession.getRelationEntityDao();
}
@Override
protected RelationEntity createEntity(Long key) {
RelationEntity entity = new RelationEntity();
entity.setId(key);
return entity;
}
public void testToOne() {
RelationEntity entity = insertEntityWithRelations(42l);
entity = dao.load(entity.getId());
assertTestEntity(entity);
}
public void testToOneSelf() {
RelationEntity entity = createEntity(1l);
dao.insert(entity);
entity = dao.load(1l);
assertNull(entity.getParent());
entity.setParentId(entity.getId());
dao.update(entity);
entity = dao.load(1l);
RelationEntity parent = entity.getParent();
assertEquals(entity.getId(), parent.getId());
}
public void testToOneClearKey() {
RelationEntity entity = insertEntityWithRelations(42l);
assertNotNull(entity.getParent());
entity.setParentId(null);
assertNull(entity.getParent());
}
public void testToOneClearEntity() {
RelationEntity entity = insertEntityWithRelations(42l);
assertNotNull(entity.getParentId());
entity.setParent(null);
assertNull(entity.getParentId());
}
public void testToOneUpdateKey() {
RelationEntity entity = insertEntityWithRelations(42l);
TestEntity testEntity = entity.getTestEntity();
RelationEntity entity2 = insertEntityWithRelations(43l);
TestEntity testEntity2 = entity2.getTestEntity();
entity.setTestId(testEntity2.getId());
assertEquals(testEntity2.getId(), entity.getTestEntity().getId());
entity.setTestId(null);
assertNull(entity.getTestEntity());
entity.setTestId(testEntity.getId());
assertEquals(testEntity.getId(), entity.getTestEntity().getId());
}
public void testToOneUpdateEntity() {
RelationEntity entity = insertEntityWithRelations(42l);
TestEntity testEntity = entity.getTestEntity();
RelationEntity entity2 = insertEntityWithRelations(43l);
TestEntity testEntity2 = entity2.getTestEntity();
entity.setTestEntity(testEntity2);
assertEquals(testEntity2.getId(), entity.getTestId());
entity.setTestEntity(null);
assertNull(entity.getTestId());
entity.setTestEntity(testEntity);
assertEquals(testEntity.getId(), entity.getTestId());
}
public void testToOneLoadDeep() {
RelationEntity entity = insertEntityWithRelations(42l);
entity = dao.loadDeep(entity.getId());
assertTestEntity(entity);
}
public void testToOneNoMatch() {
RelationEntity entity = insertEntityWithRelations(42l);
assertNotNull(entity.getTestEntity());
entity.setTestId(23l);
entity.setTestIdNotNull(-78);
assertNull(entity.getTestEntity());
assertNull(entity.getTestNotNull());
}
public void testToOneNoMatchLoadDeep() {
RelationEntity entity = insertEntityWithRelations(42l);
assertNotNull(entity.getTestEntity());
entity.setTestId(23l);
entity.setTestIdNotNull(-78);
dao.update(entity);
entity = dao.loadDeep(entity.getId());
assertNull(entity.getTestEntity());
assertNull(entity.getTestNotNull());
}
public void testToOneLoadDeepNull() {
RelationEntity entity = insertEntityWithRelations(42l);
entity.setParentId(null);
entity.setTestId(null);
dao.update(entity);
entity = dao.loadDeep(entity.getId());
assertNull(entity.getParent());
assertNull(entity.getTestEntity());
}
public void testQueryDeep() {
insertEntityWithRelations(42l);
String columnName = RelationEntityDao.Properties.SimpleString.columnName;
List<RelationEntity> entityList = dao.queryDeep("WHERE T." + columnName + "=?", "findMe");
assertEquals(1, entityList.size());
assertTestEntity(entityList.get(0));
}
protected RelationEntity insertEntityWithRelations(Long testEntityId) {
TestEntity testEntity = daoSession.getTestEntityDao().load(testEntityId);
if (testEntity == null) {
testEntity = new TestEntity(testEntityId);
testEntity.setSimpleStringNotNull("mytest");
daoSession.getTestEntityDao().insert(testEntity);
}
RelationEntity parentEntity = createEntity(null);
parentEntity.setSimpleString("I'm a parent");
parentEntity.setTestNotNull(testEntity);
dao.insert(parentEntity);
RelationEntity entity = createEntity(null);
entity.setTestId(testEntityId);
entity.setParentId(parentEntity.getId());
entity.setSimpleString("findMe");
entity.setTestNotNull(testEntity);
dao.insert(entity);
return entity;
}
protected void assertTestEntity(RelationEntity entity) {
TestEntity testEntity = entity.getTestEntity();
assertNotNull(testEntity);
assertEquals(42l, (long) testEntity.getId());
assertEquals("mytest", testEntity.getSimpleStringNotNull());
assertEquals("I'm a parent", entity.getParent().getSimpleString());
assertEquals(entity.getParentId(), entity.getParent().getId());
assertNotNull(entity.getTestNotNull());
}
}