Kotlin:如何使用JUnit5和Mockk清理或重置模拟

时间:2019-04-27 08:47:17

标签: kotlin junit5 mockk

在某些情况下,需要清理或重置测试用例之间的模拟。

将Kotling与JUnit5和Mockk结合使用,第一种方法应该是这样的:

class CreateProductsTests {

    @Test
    fun `run() with an existing product should throw a CrudException`() {

        val productRepository = mockk<ProductRepository>()
        val editorService = mockk<EditorService>()
        val sut = CreateProductServiceImpl(productRepository, editorService)

        // Given an editor that return a JSON
        val product = completeTestProduct()
        every { editorService.edit("Create new Product", product) } returns product

        // And the product does exist in the database
        every { productRepository.findById(product.id) } returns Optional.of(product)

        // When we call createProduct()"
        // Then should fail
        val exception = assertFailsWith<CrudException> { sut.createProduct() }
        exception.message shouldBe "The product 'TST' already exists in database"
    }

    @Test
    fun `createProduct() with an invalid product should fail`() {

        val productRepository = mockk<ProductRepository>()
        val editorService = mockk<EditorService>()
        val sut = CreateProductServiceImpl(productRepository, editorService)

        // Given an editor that return a JSON
        val product = completeTestProduct()
        every { editorService.edit("Create new Product", product) } returns product

        // And the product does exist in the database
        every { productRepository.findById(product.id) } returns Optional.of(product)

        // And a repository saves the product
        every { productRepository.save(product) } returns product

        // When we call createProduct()"
        val actual = sut.createProduct()

        // Then it should return the product
        actual shouldBe product

        // And should call once these dependencies
        verify(exactly = 1) {
            editorService.edit(any<String>(), any<Product>())
            productRepository.findById(any<String>())
            productRepository.save(any<Product>())
        }
    }
}

但是,与其在每个测试用例中声明模拟并初始化SUT,还不如使用@BeforeEach(这样)更清楚(也许不是更快):

class CreateProductsTests {

    var productRepository = mockk<ProductRepository>()
    var editorService = mockk<EditorService>()
    var sut = CreateProductServiceImpl(productRepository, editorService)

    @BeforeEach
    fun clear() {
        productRepository = mockk<ProductRepository>()
        editorService = mockk<EditorService>()
        sut = CreateProductServiceImpl(productRepository, editorService)
    }
...

是否有更好(更快)的方法来声明模拟并进行sut并在每次测试中重置或清除所有模拟?

2 个答案:

答案 0 :(得分:2)

您应该尝试:

 @AfterEach
internal fun tearDown() {
    clearAllMocks()
}

答案 1 :(得分:1)

您可以初始化模拟并进行一次sut,并在每次测试之前重置模拟,但是您只需要生成一次测试类实例即可。外观如下:

@TestInstance(Lifecycle.PER_CLASS)
class CreateProductsTests {

    var productRepository = mockk<ProductRepository>()
    var editorService = mockk<EditorService>()
    var sut = CreateProductServiceImpl(productRepository, editorService)

    @BeforeAll
    fun setup() {
        MockKAnnotations.init(this)
        sut = CreateProductServiceImpl(productRepository, editorService)
    }

    @BeforeEach
    fun clear() {
        clearMocks(productRepository, editorService)
    }
...