summaryrefslogtreecommitdiff
path: root/source/Felix/Test/Unit/Foundation.hs
blob: 18ead04b1de5d590ed5d6f2c5e54ef44f9385c60 (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
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
{-# LANGUAGE NoImplicitPrelude #-}

module Felix.Test.Unit.Foundation (unitTests) where

import Base
import Felix.Checking.Core
import Felix.Checking.Foundation

import Data.List qualified as List
import Data.Set qualified as Set
import Test.Tasty
import Test.Tasty.HUnit


unitTests :: TestTree
unitTests =
    testGroup "Foundation manifest"
        [ testCase
            "accepts the exact compiled foundation"
            acceptsCompiledFoundation
        , testCase
            "rejects incomplete and altered manifests"
            rejectsManifestMutations
        , testCase
            "classifies the exact UnivOf schemas"
            classifiesUnivOfSchemas
        , testCase
            "selects only intrinsic characteristic dependencies"
            selectsOnlyIntrinsicCharacteristicDependencies
        ]

acceptsCompiledFoundation :: Assertion
acceptsCompiledFoundation = do
    foundation <-
        either
            (assertFailure . show)
            pure
            checkedFoundation
    assertEqual
        "intrinsic coverage"
        [minBound .. maxBound]
        (fst <$> compiledFoundationIntrinsicRows)
    assertEqual
        "guarded-rule coverage"
        [minBound .. maxBound]
        [ tag
        | FoundationRuleInput tag _signature <-
            compiledFoundationRuleRows
        ]
    for_ [minBound .. maxBound] \tag ->
        assertEqual
            ("closed proposition type for " <> show tag)
            TyProp
            (frozenCoreType
                (foundationAxiomFrozen foundation tag))

selectsOnlyIntrinsicCharacteristicDependencies :: Assertion
selectsOnlyIntrinsicCharacteristicDependencies = do
    let separation =
            CApp
                (CApp (CIntrinsic Sep) (CBound 0))
                (CLam TySet CFalsum)
        underUniverse =
            CApp (CIntrinsic UnivOf) separation
    assertEqual
        "separation is found recursively without a universe bundle"
        (Set.singleton SeparationCharacteristic)
        (foundationAxiomDependencies underUniverse)

rejectsManifestMutations :: Assertion
rejectsManifestMutations = do
    let withoutMinimal =
            List.filter
                (\case
                    FoundationAxiomInput
                        UnivOfMinimal
                        _syntax
                        _backendClass ->
                            False
                    _ ->
                        True)
                compiledFoundationAxiomRows
        wrongUnivType =
            [ if tag == UnivOf
                then (tag, TySet)
                else row
            | row@(tag, _coreType) <-
                compiledFoundationIntrinsicRows
            ]
        duplicatedEmpty =
            case findAxiomInput EmptyCharacteristic of
                Just row ->
                    row : compiledFoundationAxiomRows
                Nothing ->
                    impossible
                        "compiled manifest omitted EmptyCharacteristic"
        alteredEmpty =
            replaceAxiomInput
                EmptyCharacteristic
                (FoundationAxiomInput
                    EmptyCharacteristic
                    (coreOpaqueInteger 0)
                    FoundationFofProjectable)
        alteredExtensionality =
            replaceAxiomInput
                SetExtensionality
                (FoundationAxiomInput
                    SetExtensionality
                    coreFalsum
                    FoundationFofProjectable)
        misclassifiedEmpty =
            case findAxiomInput EmptyCharacteristic of
                Just
                    (FoundationAxiomInput
                        tag
                        syntax
                        _backendClass) ->
                            replaceAxiomInput
                                tag
                                (FoundationAxiomInput
                                    tag
                                    syntax
                                    (FoundationRequiresTh0
                                        (HigherOrderLambda :| [])))
                Nothing ->
                    impossible
                        "compiled manifest omitted EmptyCharacteristic"
        withoutLeast =
            [ row
            | row@(FoundationRuleInput tag _signature) <-
                compiledFoundationRuleRows
            , tag /= SetLfpLeast
            ]
        alteredInductSignature =
            [ if tag == SetLfpInduct
                then
                    FoundationRuleInput
                        tag
                        (KernelRuleSignature [TySet] 0)
                else row
            | row@(FoundationRuleInput tag _signature) <-
                compiledFoundationRuleRows
            ]
    assertAuditContains
        (== MissingFoundationAxiom UnivOfMinimal)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            compiledFoundationRuleRows
            withoutMinimal)
    assertAuditContains
        (== FoundationIntrinsicTypeMismatch
                UnivOf
                (TySet `TyArrow` TySet)
                TySet)
        (auditFoundationManifest
            wrongUnivType
            compiledFoundationRuleRows
            compiledFoundationAxiomRows)
    assertAuditContains
        (== MissingFoundationRule SetLfpLeast)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            withoutLeast
            compiledFoundationAxiomRows)
    assertAuditContains
        (\case
            FoundationRuleSignatureMismatch
                SetLfpInduct
                _expected
                (KernelRuleSignature [TySet] 0) ->
                    True
            _ ->
                False)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            alteredInductSignature
            compiledFoundationAxiomRows)
    assertAuditContains
        (== DuplicateFoundationAxiom EmptyCharacteristic)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            compiledFoundationRuleRows
            duplicatedEmpty)
    assertAuditContains
        (\case
            FoundationAxiomIllTyped
                EmptyCharacteristic
                (ExpectedCoreType TyProp TySet) ->
                    True
            _ ->
                False)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            compiledFoundationRuleRows
            alteredEmpty)
    assertAuditContains
        (== FoundationAxiomStatementMismatch
                SetExtensionality)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            compiledFoundationRuleRows
            alteredExtensionality)
    assertAuditContains
        (== FoundationAxiomBackendClassMismatch
                EmptyCharacteristic
                (FoundationRequiresTh0
                    (HigherOrderLambda :| []))
                FoundationFofProjectable)
        (auditFoundationManifest
            compiledFoundationIntrinsicRows
            compiledFoundationRuleRows
            misclassifiedEmpty)

classifiesUnivOfSchemas :: Assertion
classifiesUnivOfSchemas = do
    foundation <-
        either
            (assertFailure . show)
            pure
            checkedFoundation
    for_
        [ UnivOfContains
        , UnivOfTransitive
        , UnivOfFamilyUnionClosed
        , UnivOfPowerSetClosed
        ]
        \tag ->
            assertEqual
                (show tag)
                FoundationFofProjectable
                (foundationAxiomBackendClass foundation tag)
    for_
        [ UnivOfReplacementClosed
        , UnivOfMinimal
        ]
        \tag ->
            case foundationAxiomBackendClass foundation tag of
                FoundationRequiresTh0 exclusions ->
                    assertBool
                        (show tag <> " has a structural exclusion")
                        (not (null exclusions))
                FoundationFofProjectable ->
                    assertFailure
                        (show tag <> " was classified as FOF")

findAxiomInput
    :: FoundationAxiomTag
    -> Maybe FoundationAxiomInput
findAxiomInput wanted =
    List.find
        (\case
            FoundationAxiomInput tag _syntax _backendClass ->
                tag == wanted)
        compiledFoundationAxiomRows

replaceAxiomInput
    :: FoundationAxiomTag
    -> FoundationAxiomInput
    -> [FoundationAxiomInput]
replaceAxiomInput wanted replacement =
    fmap
        (\row ->
            case row of
                FoundationAxiomInput tag _syntax _backendClass
                    | tag == wanted ->
                        replacement
                _ ->
                    row)
        compiledFoundationAxiomRows

assertAuditContains
    :: (FoundationManifestError -> Bool)
    -> Either
        (NonEmpty FoundationManifestError)
        FoundationManifestAudit
    -> Assertion
assertAuditContains predicate = \case
    Left errors ->
        assertBool
            ("expected error not found in " <> show errors)
            (any predicate errors)
    Right _audit ->
        assertFailure
            "expected foundation-manifest audit to fail"