有没有一个规格匹配器可以打开Option和Anyer的盒子



我创建了一个规范测试,以验证一些JSON解析。尽管测试效果很好,但感觉相当嘈杂。

我想知道规范中是否有现有的代码可以打开选项和两者之一?

"twitter json to Scala class mapper" should {
    "parsing a tweet" in {
      TwitterJsonMapper.tweetP(tweetS) match {
        case Right(t: Tweet) => {
          implicit def unOption[T](t: Option[T]): T = t.get
          implicit def unEither[T](t: Either[T,Throwable]): T = t match {case Left(left) => left ;case Right(t) => throw t}
          "test id" in {
            true must_== (t.id.get == 228106060337135617l)
          }
          "test id_str" in {
            true must_== (t.id_str.get == "228106060337135617")
          }
          "test time" in {
            true must_== (t.created_at.getHours == 13 )
          }
        }
        case Left((pe: JsonParseException, reason: String)) => fail(reason + "n" + pe)
      }
    }
  }
 //The Tweet is produced from JSON using Fasterxml's Jackson-Scala library. 
 //I want to use Option or Either monads over all child attributes - for the usual reasons.
case class Tweet(
  @BeanProperty contributors: Option[String],
  @BeanProperty coordinates: Option[String],
  @BeanProperty @JsonDeserialize (
      using = classOf[TwitterDateDeserializer]
  ) created_at: Either[Date,Throwable],
  @BeanProperty favorited: Boolean = false,
  //elided etc etc
  @BeanProperty id_str: Option[String]
}

OptionEither:确实有一些特定的匹配器

t.id must beSome(228106060337135617l)
t.id_str must beSome("228106060337135617")
t.created_at.left.map(_.getHours) must beLeft(13)

我觉得这没有必要。Remember、Option/两者都具有相等的价值。只需匹配选项/任一项,而不是匹配它们包含的值。

      "Option should match other options" >> {
        Some(21) must be equalTo Some(21)
      }
      "Either should match Either" >> {
        Right("Some string") must be equalTo Right("Some string")
      }

我没有试图编译这些,但它们应该可以工作。您可能需要添加一些显式键入(或使用类型不安全的must_==

      t.id must be equalTo Some(228106060337135617l)
      t.id_str must be equalTo Some("228106060337135617")
      t.created_at.left.map(_.getHours) must be equalTo Left(13)

最新更新