module RecordSpec where
import Composite (Rec(RNil), Record, (:->), pattern (:*:))
import Composite.Aeson.Base (JsonFormat, fromJsonWithFormat, toJsonWithFormat)
import Composite.Aeson.Formats.Provided (stringJsonFormat)
import Composite.Aeson.Record (defaultJsonFormatRecord, recordJsonFormat, optionalField)
import Composite.TH (withLensesAndProxies)
import Control.Lens (set)
import Data.Aeson.BetterErrors (parseValue)
import Data.Aeson.QQ (aesonQQ)
import Data.Vinyl.Lens (rlens)
import Data.Void (Void)
import Test.Hspec (Spec, describe, it, shouldBe, shouldNotBe)
withLensesAndProxies [d|
type FFoo = "foo" :-> Int
type FBar = "bar" :-> Maybe String
|]
type TestRec = '["foo" :-> Int, "bar" :-> Maybe String]
recordSuite :: Spec
recordSuite =
describe "Record support" $ do
let defaultFmt, optionalFmt :: JsonFormat Void (Record TestRec)
defaultFmt = recordJsonFormat defaultJsonFormatRecord
optionalFmt = recordJsonFormat $ set (rlens fBar_) (optionalField stringJsonFormat) defaultJsonFormatRecord
it "by default requires all fields" $ do
parseValue (fromJsonWithFormat defaultFmt) [aesonQQ| {foo: 123, bar: "abc"} |] `shouldBe` Right (123 :*: Just "abc" :*: RNil)
parseValue (fromJsonWithFormat defaultFmt) [aesonQQ| {foo: 123, bar: null} |] `shouldBe` Right (123 :*: Nothing :*: RNil)
parseValue (fromJsonWithFormat defaultFmt) [aesonQQ| {foo: 123} |] `shouldNotBe` Right (123 :*: Nothing :*: RNil)
it "by default encodes all fields" $ do
toJsonWithFormat defaultFmt (123 :*: Just "abc" :*: RNil) `shouldBe` [aesonQQ| {foo: 123, bar: "abc"} |]
toJsonWithFormat defaultFmt (123 :*: Nothing :*: RNil) `shouldBe` [aesonQQ| {foo: 123, bar: null} |]
it "can make fields optional" $ do
parseValue (fromJsonWithFormat optionalFmt) [aesonQQ| {foo: 123, bar: "abc"} |] `shouldBe` Right (123 :*: Just "abc" :*: RNil)
parseValue (fromJsonWithFormat optionalFmt) [aesonQQ| {foo: 123, bar: null} |] `shouldBe` Right (123 :*: Nothing :*: RNil)
parseValue (fromJsonWithFormat optionalFmt) [aesonQQ| {foo: 123} |] `shouldBe` Right (123 :*: Nothing :*: RNil)
it "omits Nothing fields when they're made optional" $ do
toJsonWithFormat optionalFmt (123 :*: Just "abc" :*: RNil) `shouldBe` [aesonQQ| {foo: 123, bar: "abc"} |]
toJsonWithFormat optionalFmt (123 :*: Nothing :*: RNil) `shouldBe` [aesonQQ| {foo: 123} |]