summaryrefslogtreecommitdiff
path: root/cask/actor/test/src-jvm/JvmActorsTest.scala
blob: 066fd3e95d6e72c0eee50ad75a8700fd3996248d (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package cask.actor

import utest._
object JvmActorsTest extends TestSuite{
  def tests = Tests{
    os.remove.all(os.pwd / "out" / "scratch")
    test("lock"){
      val rotateSize = 50
      val logPath = os.pwd / "out" / "scratch" / "log.txt"
      val oldPath = os.pwd / "out" / "scratch" / "log-old.txt"

      var logSize = 0

      def logLine(s: String): Unit = synchronized{
        val newLogSize = logSize + s.length + 1
        if (newLogSize <= rotateSize) logSize = newLogSize
        else {
          logSize = 0
          os.move(logPath, oldPath, replaceExisting = true)
        }

        os.write.append(logPath, s + "\n", createFolders = true)
      }

      logLine("I am cow")
      logLine("hear me moo")
      logLine("I weight twice as much as you")
      logLine("And I look good on the barbecue")
      logLine("Yoghurt curds cream cheese and butter")
      logLine("Comes from liquids from my udder")
      logLine("I am cow, I am cow")
      logLine("Hear me moo, moooo")

      os.read(oldPath).trim() ==> "Yoghurt curds cream cheese and butter\nComes from liquids from my udder"
      os.read(logPath).trim() ==> "I am cow, I am cow\nHear me moo, moooo"
    }

    test("actor"){
      class Logger(log: os.Path, old: os.Path, rotateSize: Int)
                  (implicit ac: Context) extends SimpleActor[String]{
        def run(s: String) = {
          val newLogSize = logSize + s.length + 1
          if (newLogSize <= rotateSize) logSize = newLogSize
          else {
            logSize = s.length
            os.move(log, old, replaceExisting = true)
          }
          os.write.append(log, s + "\n", createFolders = true)
        }
        private var logSize = 0
      }

      implicit val ac = new Context.Test()

      val logPath = os.pwd / "out" / "scratch" / "log.txt"
      val oldPath  = os.pwd / "out" / "scratch" / "log-old.txt"

      val logger = new Logger(logPath, oldPath, rotateSize = 50)

      logger.send("I am cow")
      logger.send("hear me moo")
      logger.send("I weight twice as much as you")
      logger.send("And I look good on the barbecue")
      logger.send("Yoghurt curds cream cheese and butter")
      logger.send("Comes from liquids from my udder")
      logger.send("I am cow, I am cow")
      logger.send("Hear me moo, moooo")

      // Logger hasn't finished yet, running in the background
      ac.waitForInactivity()
      // Now logger has finished

      os.read.lines(oldPath) ==> Seq("Comes from liquids from my udder")
      os.read.lines(logPath) ==> Seq("I am cow, I am cow", "Hear me moo, moooo")
    }

    test("pipeline"){
      class Writer(log: os.Path, old: os.Path, rotateSize: Int)
                  (implicit ac: Context) extends SimpleActor[String]{
        def run(s: String) = {
          val newLogSize = logSize + s.length + 1
          if (newLogSize <= rotateSize) logSize = newLogSize
          else {
            logSize = s.length
            os.move(log, old, replaceExisting = true)
          }
          os.write.append(log, s + "\n", createFolders = true)
        }
        private var logSize = 0
      }

      class Logger(dest: Actor[String])(implicit ac: Context) extends SimpleActor[String]{
        def run(s: String) = dest.send(java.util.Base64.getEncoder.encodeToString(s.getBytes))
      }

      implicit val ac = new Context.Test()

      val logPath = os.pwd / "out" / "scratch" / "log.txt"
      val oldPath  = os.pwd / "out" / "scratch" / "log-old.txt"

      val writer = new Writer(logPath, oldPath, rotateSize = 50)
      val logger = new Logger(writer)

      logger.send("I am cow")
      logger.send("hear me moo")
      logger.send("I weight twice as much as you")
      logger.send("And I look good on the barbecue")
      logger.send("Yoghurt curds cream cheese and butter")
      logger.send("Comes from liquids from my udder")
      logger.send("I am cow, I am cow")
      logger.send("Hear me moo, moooo")

      ac.waitForInactivity()

      os.read(oldPath) ==> "Q29tZXMgZnJvbSBsaXF1aWRzIGZyb20gbXkgdWRkZXI=\n"
      os.read(logPath) ==> "SSBhbSBjb3csIEkgYW0gY293\nSGVhciBtZSBtb28sIG1vb29v\n"

      def decodeFile(p: os.Path) = {
        os.read.lines(p).map(s => new String(java.util.Base64.getDecoder.decode(s)))
      }

      decodeFile(oldPath) ==> Seq("Comes from liquids from my udder")
      decodeFile(logPath) ==> Seq("I am cow, I am cow", "Hear me moo, moooo")
    }

    test("debounce"){
      sealed trait Msg
      case class Debounced() extends Msg
      case class Text(value: String) extends Msg

      class Logger(log: os.Path, debounceTime: java.time.Duration)
                  (implicit ac: Context) extends StateMachineActor[Msg]{
        def initialState = Idle()
        case class Idle() extends State({
          case Text(value) =>
            ac.scheduleMsg(this, Debounced(), debounceTime)
            Buffering(Vector(value))
        })
        case class Buffering(buffer: Vector[String]) extends State({
          case Text(value) => Buffering(buffer :+ value)
          case Debounced() =>
            os.write.append(log, buffer.mkString(" ") + "\n", createFolders = true)
            Idle()
        })
      }

      implicit val ac = new Context.Test()

      val logPath = os.pwd / "out" / "scratch" / "log.txt"

      val logger = new Logger(logPath, java.time.Duration.ofMillis(50))

      logger.send(Text("I am cow"))
      logger.send(Text("hear me moo"))
      Thread.sleep(100)
      logger.send(Text("I weight twice as much as you"))
      logger.send(Text("And I look good on the barbecue"))
      Thread.sleep(100)
      logger.send(Text("Yoghurt curds cream cheese and butter"))
      logger.send(Text("Comes from liquids from my udder"))
      logger.send(Text("I am cow, I am cow"))
      logger.send(Text("Hear me moo, moooo"))

      ac.waitForInactivity()

      os.read.lines(logPath) ==> Seq(
        "I am cow hear me moo",
        "I weight twice as much as you And I look good on the barbecue",
        "Yoghurt curds cream cheese and butter Comes from liquids from my udder I am cow, I am cow Hear me moo, moooo",
      )
    }
    test("log"){
      sealed trait Msg
      case class Debounced() extends Msg
      case class Text(value: String) extends Msg

      class Logger(log: os.Path, debounceTime: java.time.Duration)
                  (implicit ac: Context) extends StateMachineActor[Msg]{
        def initialState = Idle()
        case class Idle() extends State({
          case Text(value) =>
            ac.scheduleMsg(this, Debounced(), debounceTime)
            Buffering(Vector(value))
        })
        case class Buffering(buffer: Vector[String]) extends State({
          case Text(value) => Buffering(buffer :+ value)
          case Debounced() =>
            os.write.append(log, buffer.mkString(" ") + "\n", createFolders = true)
            Idle()
        })

        override def run(msg: Msg): Unit = {
          println(s"$state + $msg -> ")
          super.run(msg)
          println(state)
        }
      }

      implicit val ac = new Context.Test()

      val logPath = os.pwd / "out" / "scratch" / "log.txt"

      val logger = new Logger(logPath, java.time.Duration.ofMillis(50))

      logger.send(Text("I am cow"))
      // Idle() + Text(I am cow) ->
      // Buffering(Vector(I am cow))
      logger.send(Text("hear me moo"))
      // Buffering(Vector(I am cow)) + Text(hear me moo) ->
      // Buffering(Vector(I am cow, hear me moo))
      Thread.sleep(100)
      // Buffering(Vector(I am cow, hear me moo)) + Debounced() ->
      // Idle()
      logger.send(Text("I weight twice as much as you"))
      // Idle() + Text(I weight twice as much as you) ->
      // Buffering(Vector(I weight twice as much as you))
      logger.send(Text("And I look good on the barbecue"))
      // Buffering(Vector(I weight twice as much as you)) + Text(And I look good on the barbecue) ->
      // Buffering(Vector(I weight twice as much as you, And I look good on the barbecue))
      Thread.sleep(100)
      // Buffering(Vector(I weight twice as much as you, And I look good on the barbecue)) + Debounced() ->
      // Idle()
      logger.send(Text("Yoghurt curds cream cheese and butter"))
      // Idle() + Text(Yoghurt curds cream cheese and butter) ->
      // Buffering(Vector(Yoghurt curds cream cheese and butter))
      logger.send(Text("Comes from liquids from my udder"))
      // Buffering(Vector(Yoghurt curds cream cheese and butter)) +
      // Text(Comes from liquids from my udder) -> Buffering(Vector(Yoghurt curds cream cheese and butter, Comes from liquids from my udder))
      logger.send(Text("I am cow, I am cow"))
      // Buffering(Vector(Yoghurt curds cream cheese and butter, Comes from liquids from my udder)) + Text(I am cow, I am cow) ->
      // Buffering(Vector(Yoghurt curds cream cheese and butter, Comes from liquids from my udder, I am cow, I am cow))
      logger.send(Text("Hear me moo, moooo"))
      // Buffering(Vector(Yoghurt curds cream cheese and butter, Comes from liquids from my udder, I am cow, I am cow)) + Text(Hear me moo, moooo) ->
      // Buffering(Vector(Yoghurt curds cream cheese and butter, Comes from liquids from my udder, I am cow, I am cow, Hear me moo, moooo))

      ac.waitForInactivity()
      // Buffering(Vector(Yoghurt curds cream cheese and butter, Comes from liquids from my udder, I am cow, I am cow, Hear me moo, moooo)) + Debounced() ->
      // Idle()

      os.read.lines(logPath) ==> Seq(
        "I am cow hear me moo",
        "I weight twice as much as you And I look good on the barbecue",
        "Yoghurt curds cream cheese and butter Comes from liquids from my udder I am cow, I am cow Hear me moo, moooo",
      )
    }

  }
}