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

(def: part
  (Random Text)
  (do [! random.monad]
    [size (# ! each (|>> (n.% 10) ++) random.nat)]
    (random.alphabetic size)))

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