summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-public-methods_1.scala
blob: 7e5bc24210e6e491ad8d6fd6dbe04a11db191df1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import scala.collection.mutable.ArrayBuffer
import scala.actors.Actor._
import scala.actors._
import scala.util._
import java.util.concurrent.{ TimeUnit, CountDownLatch }
import scala.concurrent.util.Duration
import scala.actors.pattern._

object Test {
  val NUMBER_OF_TESTS = 6

  // used for sorting non-deterministic output
  val buff = ArrayBuffer[String]()
  val latch = new CountDownLatch(NUMBER_OF_TESTS)
  val toStop = ArrayBuffer[ActorRef]()

  def append(v: String) = synchronized {
    buff += v
  }

  def main(args: Array[String]) = {

    val respActor = MigrationSystem.actorOf(Props(() => actor {
      loop {
        react {
          case (x: String, time: Long) =>
            Thread.sleep(time)
            reply(x + " after " + time)
          case str: String =>
            append(str)
            latch.countDown()
          case x =>
            exit()
        }
      }
    }, "akka.actor.default-stash-dispatcher"))

    toStop += respActor

    respActor ! "bang"

    implicit val timeout = Timeout(Duration(500, TimeUnit.MILLISECONDS))
    val msg = ("bang qmark", 0L)
    val res1 = respActor.?(msg)(Timeout(Duration.Inf))
    append(res1().toString)
    latch.countDown()

    val msg1 = ("bang qmark", 1L)
    val res2 = respActor.?(msg1)(Timeout(Duration(500, TimeUnit.MILLISECONDS)))
    append((res2() match {
      case x: AskTimeoutException => None
      case v => Some(v)
    }).toString)
    latch.countDown()

    // this one should time out
    val msg11 = ("bang qmark", 500L)
    val res21 = respActor.?(msg11)(Timeout(Duration(1, TimeUnit.MILLISECONDS)))
    append((res21() match {
      case x: AskTimeoutException => None
      case v => Some(v)
    }).toString)
    latch.countDown()

    val msg2 = ("bang qmark in future", 0L)
    val fut1 = respActor.?(msg2)(Duration.Inf)
    append(fut1().toString())
    latch.countDown()

    val handler: PartialFunction[Any, String] = {
      case x: String => x.toString
    }

    val msg3 = ("typed bang qmark in future", 0L)
    val fut2 = (respActor.?(msg3)(Duration.Inf))
    append(Futures.future { handler.apply(fut2()) }().toString)
    latch.countDown()

    // output
    latch.await(200, TimeUnit.MILLISECONDS)
    if (latch.getCount() > 0) {
      println("Error: Tasks have not finished!!!")
    }

    buff.sorted.foreach(println)
    toStop.foreach(_ ! PoisonPill)
  }
}