|
Play Framework/Scala example source code file (ParsingSpec.scala)
The ParsingSpec.scala Play Framework example source code
/*
* Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com>
*/
package play.api.libs.iteratee
import scala.concurrent.ExecutionContext.Implicits.global
import Parsing._
import org.specs2.mutable._
import concurrent.duration.Duration
import concurrent.Await
object ParsingSpec extends Specification
with IterateeSpecification with ExecutionSpecification {
"Parsing" should {
"split case 1" in {
mustExecute(10) { foldEC =>
val data = Enumerator(List("xx", "kxckikixckikio", "cockik", "isdodskikisd", "ksdloii").map(_.getBytes): _*)
val parsed = data |>>> Parsing.search("kiki".getBytes).transform(Iteratee.fold(List.empty[MatchInfo[Array[Byte]]]) { (s, c: MatchInfo[Array[Byte]]) => s :+ c }(foldEC))
val result = Await.result(parsed, Duration.Inf).map {
case Matched(kiki) => "Matched(" + new String(kiki) + ")"
case Unmatched(data) => "Unmatched(" + new String(data) + ")"
}.mkString(", ")
result must equalTo(
"Unmatched(xxkxc), Matched(kiki), Unmatched(xc), Matched(kiki), Unmatched(ococ), Matched(kiki), Unmatched(sdods), Matched(kiki), Unmatched(sdks), Unmatched(dloii)")
}
}
"split case 1" in {
mustExecute(11) { foldEC =>
val data = Enumerator(List("xx", "kxckikixcki", "k", "kicockik", "isdkikodskikisd", "ksdlokiikik", "i").map(_.getBytes): _*)
val parsed = data |>>> Parsing.search("kiki".getBytes).transform(Iteratee.fold(List.empty[MatchInfo[Array[Byte]]]) { (s, c: MatchInfo[Array[Byte]]) => s :+ c }(foldEC))
val result = Await.result(parsed, Duration.Inf).map {
case Matched(kiki) => "Matched(" + new String(kiki) + ")"
case Unmatched(data) => "Unmatched(" + new String(data) + ")"
}.mkString(", ")
result must equalTo(
"Unmatched(xxkxc), Matched(kiki), Unmatched(xckikkico), Unmatched(c), Matched(kiki), Unmatched(sdkikods), Matched(kiki), Unmatched(sdksdlok), Unmatched(ii), Matched(kiki), Unmatched()")
}
}
}
}
Other Play Framework source code examplesHere is a short list of links related to this Play Framework ParsingSpec.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.