blob: 503ea03ab694c2e13500b7ab7984e149a302fa76 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
(.require
[library
[lux (.except)
[abstract
[monad (.only do)]]
[control
["[0]" try]
["[0]" exception]
["<>" parser]]
[data
["[0]" text (.use "[1]#[0]" equivalence)]
[format
["[0]" xml (.only)
["<[1]>" \\parser]]]]
[math
["[0]" random]]
[test
["_" property (.only Test)]]]]
[//
["@[0]" profile]]
[\\program
["[0]" / (.only)
["/[1]" //
["[1]" profile]]]])
(def .public test
Test
(<| (_.covering /._)
(all _.and
(_.coverage [/.file]
(|> /.file
(text#= "")
not))
(do random.monad
[expected @profile.random]
(_.coverage [/.write /.parser]
(when [(/.write expected)
(the //.#identity expected)]
[{try.#Success pom}
{.#Some _}]
(when (<xml>.result /.parser (list pom))
{try.#Success actual}
(of //.equivalence =
(|> (of //.monoid identity)
(has //.#dependencies (the //.#dependencies expected))
(has //.#repositories (the //.#repositories expected)))
actual)
{try.#Failure error}
false)
[{try.#Failure error}
{.#None}]
(exception.match? //.no_identity error)
_
false)))
)))
|