需要帮助了解我测试功能的方式是否正确

时间:2019-03-31 18:30:39

标签: scala mockito playframework-2.6

我已经编写了此函数,当用户单击链接时会调用该函数。该功能基本上是创建用户数据的副本,其中一个字段被更改(从而使原始值保持不变,即不可更改),然后使用新值更新数据库

def confirmSignupforUser(user:User):Future[Option[User]] = {
    println("confirming user: "+user)
        val newInternalProfile = user.profile.internalProfileDetails.get.copy(confirmed=true)//new data which should be added in the database
        println("old internal profile: "+user.profile.internalProfileDetails.get)
        println("new internal profile: "+newInternalProfile)
        val newProfile = UserProfile(Some(newInternalProfile),user.profile.externalProfileDetails)
        println("old profile: "+user.profile)
        println("new profile: "+newProfile)
        val confirmedUser = user.copy(profile=newProfile)
        for(userOption <- userRepo.update(confirmedUser)) yield { //database operation
          println("returning modified user:"+userOption)
          userOption
      }
  }

为了测试代码,我编写了以下规范

"confirmSignupforUser" should {
    "change confirmed status to True" in {
      val testEnv = new TestEnv(components.configuration)
      val externalProfile = testEnv.externalUserProfile
      val internalUnconfirmedProfile = InternalUserProfile(testEnv.loginInfo,1,false,None)
      val internalConfirmedProfile = internalUnconfirmedProfile.copy(confirmed=true)
      val unconfirmedProfile = UserProfile(Some(internalUnconfirmedProfile),externalProfile)
      val confirmedProfile = UserProfile(Some(internalConfirmedProfile),externalProfile)
      val origUser = User(testEnv.mockHelperMethods.getUniqueID(),unconfirmedProfile)
      val confirmedUser = origUser.copy(profile = confirmedProfile)
      //the argument passed to update is part of test. The function confirmSignupforUser should pass a confirmed profile
      when(testEnv.mockUserRepository.update(confirmedUser)).thenReturn(Future{Some(confirmedUser)})
      //// await is from play.api.test.FutureAwaits
      val updatedUserOption:Option[User] = await[Option[User]](testEnv.controller.confirmSignupforUser(origUser))
      println(s"received updated user option ${updatedUserOption}")
      updatedUserOption mustBe Some(confirmedUser)


    }
  }

我不确定是否可以正确测试该方法。我可以检查confirmed字段是否被更改的唯一方法是查看confirmSignupforUser的返回值。但是我实际上是在模拟值,并且已经在模拟值(confirmed中将字段true设置为when(testEnv.mockUserRepository.update(confirmedUser)).thenReturn(Future{Some(confirmedUser)})

我知道代码有效,因为在上面的模拟中,update方法期望confirmedUser或换句话说,将confirmed字段设置为true的用户。因此,如果我的代码不起作用,则update会被user字段为confirmed的{​​{1}}调用,而false将会失败。

这是测试方法的正确方法还是有更好的方法?

1 个答案:

答案 0 :(得分:0)

您无需在测试中初始化internalConfirmedProfile。重点是从confirmed=false开始,运行confirmSignupforUser方法,并确保输出为confirmed=true

您应该检查两件事:

  1. 检查返回值是否具有confirmed=true(您需要这样做)
  2. 检查存储库中的该用户是否已用confirmed=true保存(您没有检查)。要检查您是否需要最后从存储库重新加载用户。