Created
June 23, 2013 16:51
-
-
Save debasishg/5845683 to your computer and use it in GitHub Desktop.
Sample test cases for the new non blocking Redis client for Scala based on Akka IO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe("non blocking apis using futures") { | |
it("get and set should be non blocking") { | |
val kvs = (1 to 10).map(i => s"key_$i").zip(1 to 10) | |
val setResults = kvs map {case (k, v) => | |
set(k, v) apply client | |
} | |
val sr = Future.sequence(setResults) | |
Await.result(sr.map(_.flatten), 2 seconds).forall(_ == true) should equal(true) | |
val ks = (1 to 10).map(i => s"key_$i") | |
val getResults = ks.map {k => | |
get[Long](k) apply client | |
} | |
val gr = Future.sequence(getResults) | |
val result = gr.map(_.flatten.sum) | |
Await.result(result, 2 seconds) should equal(55) | |
} | |
it("should compose with sequential combinator") { | |
val values = (1 to 100).toList | |
val pushResult = lpush("key", 0, values:_*) apply client | |
val getResult = lrange[Long]("key", 0, -1) apply client | |
val res = for { | |
p <- pushResult.mapTo[Option[Long]] | |
if p.get > 0 | |
r <- getResult.mapTo[Option[List[Long]]] | |
} yield (p, r) | |
val (count, list) = Await.result(res, 2 seconds) | |
count should equal(Some(101)) | |
list.get.reverse should equal((0 to 100).map(a => Some(a))) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment