2

ObjectBox データベースで動作するクラスの単体テスト中に、次のエラーが発生しました。

io.objectbox.exception.DbDetachedException: 切り離されたエンティティの関係を解決できません

macOS での単体テストのために、必要なすべてのデータをエンティティ クラスに実装しました。したがって、エンティティの関係は、それ自体を指す対 1 および対多の関係です。

@Entity
data class Category(
    @Id var id: Long? = 0,
    var title: String?,
    @JvmField var parent: ToOne<Category>? = null,
    @JvmField @Backlink(to = "parent") var subCategories: ToMany<Category>? = null){

    constructor(): this(id = 0, title =  "", parent = null, subCategories = null)
    constructor(title: String): this(id = 0, title = title, parent = null, subCategories = null)

    // normally transformer would add field, but need to manually for local unit tests
    @JvmField @Transient var __boxStore: BoxStore? = null

    init{
        if(parent == null) parent = ToOne(this, Category_.parent)
        if(subCategories == null) subCategories = ToMany(this, Category_.subCategories)
    }
}

単体テストは非常に簡単です。

public class CategoryModelDataMapperTest {

    private CategoryModelDataMapper categoryModelDataMapper = new CategoryModelDataMapper();

    @Before
    public void setUp() throws Exception {
        categoryModelDataMapper = new CategoryModelDataMapper();
    }

    @Test
    public void testShouldTransformDomainModelWithoutParentToEntityCorrectly() throws Exception{
        final Category category = new Category(10L, "Bar", null, null);
        final CategoryModel categoryModel = categoryModelDataMapper.transform(category);

        assertEquals((Long) 10L, categoryModel.getId());
        assertEquals("Bar", categoryModel.getTitle());
        assertNull(categoryModel.getParent());
        assertNotNull(categoryModel.getSubCategories());
        assertTrue(categoryModel.getSubCategories().isEmpty());
    }
}

そして、私がテストしている実際のクラスは通常のマッパーです:

class CategoryModelDataMapper: BaseMapper<Category, CategoryModel>{

    override fun transform(from: Category): CategoryModel {
        val toModel = CategoryModel()
        toModel.id = from.id
        toModel.title = from.title

        toModel.parent = from.parent?.target?.let { transform(it) }

        from.subCategories?.let {
            it.forEach{ toModel.subCategories?.add( transform(it)) }
        }

        return toModel
    }

    override fun transform(fromList: MutableList<Category>): MutableList<CategoryModel> {
        val toList = ArrayList<CategoryModel>(fromList.size)
        return fromList.mapTo(toList) { transform(it) }
    }
}

parentおよびsubCategoriesをより詳細にテストしている他のテストがいくつかありますが、すべてのテストで同じエラーが発生しました。以前は問題なく動作していましたが、何か問題が発生しました。

4

1 に答える 1