This repository was archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathJsonSpec.hs
118 lines (90 loc) · 3.77 KB
/
JsonSpec.hs
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
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE TypeSynonymInstances #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
-- | Test for JSON serialization
module JsonSpec where
import Haskell.Ide.Engine.MonadTypes
import Haskell.Ide.Engine.Plugin.ApplyRefact
import Haskell.Ide.Engine.Plugin.Generic
-- import Haskell.Ide.Engine.Plugin.HaRe
-- import Haskell.Ide.Engine.Support.HieExtras
import Haskell.Ide.Engine.Config
import Language.Haskell.LSP.Types
import Data.Aeson
import Test.Hspec
import Test.Hspec.QuickCheck
import Test.QuickCheck hiding (Success)
import Test.QuickCheck.Instances ()
-- import Debug.Trace
-- ---------------------------------------------------------------------
{-# ANN module ("HLint: ignore Redundant do" :: String) #-}
main :: IO ()
main = hspec spec
spec :: Spec
spec = describe "dispatcher" jsonSpec
-- ---------------------------------------------------------------------
jsonSpec :: Spec
jsonSpec = do
describe "General JSON instances round trip" $ do
-- Plugin params
prop "ApplyOneParams" (propertyJsonRoundtrip :: ApplyOneParams -> Bool)
prop "TypeParams" (propertyJsonRoundtrip :: TypeParams -> Bool)
-- prop "HarePoint" (propertyJsonRoundtrip :: HarePoint -> Bool)
-- prop "HarePointWithText" (propertyJsonRoundtrip :: HarePointWithText -> Bool)
-- prop "HareRange" (propertyJsonRoundtrip :: HareRange -> Bool)
-- Plugin Api types
prop "IdeErrorCode" (propertyJsonRoundtrip :: IdeErrorCode -> Bool)
prop "IdeError" (propertyJsonRoundtrip :: IdeError -> Bool)
prop "Config" (propertyJsonRoundtrip :: Config -> Bool)
-- ---------------------------------------------------------------------
propertyJsonRoundtrip :: (Eq a, ToJSON a, FromJSON a) => a -> Bool
propertyJsonRoundtrip a = Success a == fromJSON (toJSON a)
-- enough for our needs
instance Arbitrary Value where
arbitrary = String <$> arbitrary
-- | make lists of maximum length 3 for test performance
smallList :: Gen a -> Gen [a]
smallList = resize 3 . listOf
instance Arbitrary ApplyOneParams where
arbitrary = AOP <$> arbitrary <*> arbitrary <*> arbitrary
instance Arbitrary TypeParams where
arbitrary = TP <$> arbitrary <*> arbitrary <*> arbitrary
-- instance Arbitrary HarePoint where
-- arbitrary = HP <$> arbitrary <*> arbitrary
-- instance Arbitrary HarePointWithText where
-- arbitrary = HPT <$> arbitrary <*> arbitrary <*> arbitrary
-- instance Arbitrary HareRange where
-- arbitrary = HR <$> arbitrary <*> arbitrary <*> arbitrary
instance Arbitrary Uri where
arbitrary = filePathToUri <$> arbitrary
instance Arbitrary Range where
arbitrary = Range <$> arbitrary <*> arbitrary
instance Arbitrary Location where
arbitrary = Location <$> arbitrary <*> arbitrary
instance Arbitrary TextDocumentIdentifier where
arbitrary = TextDocumentIdentifier <$> arbitrary
instance Arbitrary TextDocumentPositionParams where
arbitrary = TextDocumentPositionParams <$> arbitrary <*> arbitrary <*> arbitrary
instance Arbitrary ProgressToken where
arbitrary = oneof [ProgressTextToken <$> arbitrary, ProgressNumericToken <$> arbitrary]
instance Arbitrary IdeErrorCode where
arbitrary = arbitraryBoundedEnum
instance Arbitrary IdeError where
arbitrary = IdeError <$> arbitrary <*> arbitrary <*> arbitrary
instance Arbitrary Position where
arbitrary = do
Positive l <- arbitrary
Positive c <- arbitrary
return $ Position l c
instance Arbitrary Config where
arbitrary =
Config
<$> arbitrary
<*> arbitrary
<*> arbitrary
<*> arbitrary
<*> arbitrary
<*> arbitrary
<*> arbitrary
<*> arbitrary