mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
11ff01f3e9
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6551 Co-authored-by: Gil Mizrahi <8547573+soupi@users.noreply.github.com> GitOrigin-RevId: e78ce17d3ff5c677360b2927dca04a91e144952e
71 lines
2.4 KiB
Haskell
71 lines
2.4 KiB
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
-- | Tests for EncJSON decoding
|
|
module Hasura.EncJSONSpec (spec) where
|
|
|
|
import Data.ByteString qualified as BS
|
|
import Data.ByteString.Lazy qualified as LBS
|
|
import Data.Text qualified as T
|
|
import Database.PG.Query qualified as PG
|
|
import Hasura.EncJSON (EncJSON, encJFromLbsWithoutSoh, encJToBS, encJToLBS)
|
|
import Hasura.Prelude
|
|
import Test.Hspec
|
|
|
|
spec :: Spec
|
|
spec = do
|
|
decodeJsonbSpec
|
|
|
|
jsonString :: BS.ByteString
|
|
jsonString = "{\"label\":true,\"another_label\":1234,\"array\":[123,123,123]}"
|
|
|
|
decodeJsonbSpec :: Spec
|
|
decodeJsonbSpec = do
|
|
describe "jsonb - strict bytestring" $ do
|
|
it "reads a regular JSON value that does not contain a SOH header" $ do
|
|
let input = jsonString
|
|
encoded = either (error . T.unpack) id $ PG.fromCol @EncJSON (Just input)
|
|
bytes = encJToBS encoded
|
|
|
|
-- result is same as input
|
|
BS.length bytes `shouldBe` BS.length jsonString
|
|
|
|
-- decoding again gives the same result
|
|
encJToBS <$> PG.fromCol @EncJSON (Just bytes) `shouldBe` Right bytes
|
|
|
|
it "reads a JSONB value containing a SOH header" $ do
|
|
let input = BS.cons 1 jsonString
|
|
encoded = either (error . T.unpack) id $ PG.fromCol @EncJSON (Just input)
|
|
bytes = encJToBS encoded
|
|
|
|
-- result is same as input
|
|
BS.length bytes `shouldBe` BS.length jsonString
|
|
|
|
-- decoding again gives the same result
|
|
encJToBS <$> PG.fromCol @EncJSON (Just bytes) `shouldBe` Right bytes
|
|
|
|
it "returns null when passed Nothing" $ do
|
|
encJToBS <$> PG.fromCol @EncJSON Nothing `shouldBe` Right "null"
|
|
|
|
describe "jsonb - lazy bytestring" $ do
|
|
it "reads a regular JSON value that does not contain a SOH header" $ do
|
|
let input = LBS.fromStrict jsonString
|
|
encoded = encJFromLbsWithoutSoh input
|
|
bytes = LBS.toStrict $ encJToLBS encoded
|
|
|
|
-- result is same as input
|
|
BS.length bytes `shouldBe` BS.length jsonString
|
|
|
|
-- decoding again gives the same result
|
|
encJToBS encoded `shouldBe` bytes
|
|
|
|
it "reads a JSONB value containing a SOH header" $ do
|
|
let input = LBS.fromStrict $ BS.cons 1 jsonString
|
|
encoded = encJFromLbsWithoutSoh input
|
|
bytes = encJToBS encoded
|
|
|
|
-- result is same as input
|
|
BS.length bytes `shouldBe` BS.length jsonString
|
|
|
|
-- decoding again gives the same result
|
|
encJToBS encoded `shouldBe` bytes
|