@@ -13,6 +13,7 @@ import Data.Typelevel.Num (class Nat, D1, D2, D4, D8)
13
13
import Data.UInt (UInt )
14
14
import Data.Float32 (Float32 ) as F
15
15
import Data.Vec (head ) as Vec
16
+ import Data.Symbol (class IsSymbol )
16
17
import Effect (Effect )
17
18
import Effect.Console (log )
18
19
import Effect.Ref (Ref )
@@ -30,74 +31,76 @@ dataViewTests count = do
30
31
placingAValueIsThereTests DV.LE count
31
32
32
33
33
- type TestableViewF a b n t q =
34
+ type TestableViewF a name b n t q =
34
35
Show t
35
36
= > Eq t
36
37
= > Ord t
37
38
= > Semiring t
38
39
= > BytesPerValue a b
40
+ = > DV.ShowArrayViewType a name
41
+ = > IsSymbol name
39
42
= > Nat b
40
43
= > DV.DataView a t
41
44
= > WithOffsetAndValue n a t
42
45
-> q
43
46
44
47
45
- overAll :: forall q n . Testable q => Nat n => Ref Int -> (forall a b t . TestableViewF a b n t q ) -> Effect Unit
48
+ overAll :: forall q n . Testable q => Nat n => Ref Int -> (forall a name b t . TestableViewF a name b n t q ) -> Effect Unit
46
49
overAll count f = do
47
50
void (Ref .modify (\x -> x + 1 ) count)
48
51
log " - Uint32"
49
52
quickCheckGen $
50
- let f' :: TestableViewF Uint32 D4 n UInt q
53
+ let f' :: TestableViewF Uint32 " Uint32 " D4 n UInt q
51
54
f' = f
52
55
in f' <$> genWithOffsetAndValue genDataView genUint32
53
56
54
57
log " - Uint16"
55
58
quickCheckGen $
56
- let f' :: TestableViewF Uint16 D2 n UInt q
59
+ let f' :: TestableViewF Uint16 " Uint16 " D2 n UInt q
57
60
f' = f
58
61
in f' <$> genWithOffsetAndValue genDataView genUint16
59
62
60
63
log " - Uint8"
61
64
quickCheckGen $
62
- let f' :: TestableViewF Uint8 D1 n UInt q
65
+ let f' :: TestableViewF Uint8 " Uint8 " D1 n UInt q
63
66
f' = f
64
67
in f' <$> genWithOffsetAndValue genDataView genUint8
65
68
66
69
log " - Int32"
67
70
quickCheckGen $
68
- let f' :: TestableViewF Int32 D4 n Int q
71
+ let f' :: TestableViewF Int32 " Int32 " D4 n Int q
69
72
f' = f
70
73
in f' <$> genWithOffsetAndValue genDataView genInt32
71
74
72
75
log " - Int16"
73
76
quickCheckGen $
74
- let f' :: TestableViewF Int16 D2 n Int q
77
+ let f' :: TestableViewF Int16 " Int16 " D2 n Int q
75
78
f' = f
76
79
in f' <$> genWithOffsetAndValue genDataView genInt16
77
80
78
81
log " - Int8"
79
82
quickCheckGen $
80
- let f' :: TestableViewF Int8 D1 n Int q
83
+ let f' :: TestableViewF Int8 " Int8 " D1 n Int q
81
84
f' = f
82
85
in f' <$> genWithOffsetAndValue genDataView genInt8
83
86
84
87
log " - Float32"
85
88
quickCheckGen $
86
- let f' :: TestableViewF Float32 D4 n F.Float32 q
89
+ let f' :: TestableViewF Float32 " Float32 " D4 n F.Float32 q
87
90
f' = f
88
91
in f' <$> genWithOffsetAndValue genDataView genFloat32
89
92
90
93
log " - Float64"
91
94
quickCheckGen $
92
- let f' :: TestableViewF Float64 D8 n Number q
95
+ let f' :: TestableViewF Float64 " Float64 " D8 n Number q
93
96
f' = f
94
97
in f' <$> genWithOffsetAndValue genDataView genFloat64
95
98
96
99
97
100
placingAValueIsThereTests :: DV.Endian -> Ref Int -> Effect Unit
98
101
placingAValueIsThereTests endian count = overAll count placingAValueIsThere
99
102
where
100
- placingAValueIsThere :: forall a b t . TestableViewF a b D1 t Result
103
+ placingAValueIsThere :: forall a name b t . TestableViewF a name b D1 t Result
101
104
placingAValueIsThere (WithOffsetAndValue os t xs) =
102
105
let o = Vec .head os
103
106
prx = DV.AProxy :: DV.AProxy a
0 commit comments