summaryrefslogtreecommitdiff
path: root/test/files/jvm/actor-getstate.scala
blob: 9de3247653930c43e54d3b47f5796a7a6ec80135 (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
import scala.actors.{Reactor, Actor, TIMEOUT}

object Test {

  def assert(cond: => Boolean) {
    if (!cond)
      println("FAIL")
  }

  def main(args: Array[String]) {
    val a = new Reactor[Any] {
      def act() {
        assert(getState == Actor.State.Runnable)
        react {
          case 'go =>
            println("OK")
        }
      }
    }
    assert(a.getState == Actor.State.New)

    a.start()
    Thread.sleep(100)
    assert(a.getState == Actor.State.Suspended)

    a ! 'go
    Thread.sleep(100)
    assert(a.getState == Actor.State.Terminated)

    val b = new Actor {
      def act() {
        assert(getState == Actor.State.Runnable)
        react {
          case 'go =>
            reactWithin(100000) {
              case TIMEOUT =>
              case 'go =>
                receive {
                  case 'go =>
                }
                receiveWithin(100000) {
                  case TIMEOUT =>
                  case 'go =>
                    println("OK")
                }
            }
        }
      }
    }
    assert(b.getState == Actor.State.New)

    b.start()
    Thread.sleep(100)
    assert(b.getState == Actor.State.Suspended)

    b ! 'go
    Thread.sleep(100)
    assert(b.getState == Actor.State.TimedSuspended)

    b ! 'go
    Thread.sleep(100)
    assert(b.getState == Actor.State.Blocked)

    b ! 'go
    Thread.sleep(100)
    assert(b.getState == Actor.State.TimedBlocked)

    b ! 'go
    Thread.sleep(100)
    assert(b.getState == Actor.State.Terminated)
  }

}