aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/text/buffer.lux
blob: aa88a2ac3c85f975957897908bddcd7b865d838a (plain)
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
(.module:
  [library
   [lux #*
    ["_" test (#+ Test)]
    [abstract
     [monad (#+ do)]]
    [data
     ["." text ("#\." equivalence)
      ["%" format (#+ format)]]]
    [math
     ["." random (#+ Random)]
     [number
      ["n" nat]]]]]
  [\\library
   ["." /]])

(def: part
  (Random Text)
  (do {! random.monad}
    [size (\ ! each (|>> (n.% 10) ++) random.nat)]
    (random.ascii/alpha size)))

(def: .public test
  Test
  (<| (_.covering /._)
      (_.for [/.Buffer])
      (do random.monad
        [left ..part
         mid ..part
         right ..part]
        ($_ _.and
            (_.cover [/.empty]
                     (n.= 0(/.size /.empty)))
            (_.cover [/.size /.then]
                     (n.= (text.size left)
                          (/.size (/.then left /.empty))))
            (_.cover [/.text]
                     (text\= (format left mid right)
                             (|> /.empty
                                 (/.then left)
                                 (/.then mid)
                                 (/.then right)
                                 /.text)))
            ))))