mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-26 00:43:09 +03:00
a6dca587d2
Updates to the latest version of autodocodec and uses the new features, in particular `discriminatedUnionCodec`. This allows us to remove the `ValueWrapper*` types and `sumTypeCodec`. Sum types are now encoded as discriminated unions. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5155 GitOrigin-RevId: 20bfdc12b28d35db354c4a149b9175fab0b2b7d2
208 lines
8.1 KiB
Haskell
208 lines
8.1 KiB
Haskell
{-# LANGUAGE QuasiQuotes #-}
|
|
|
|
-- | Query Tests for Data Connector Backend using a Mock Agent
|
|
module Test.DataConnector.MockAgent.BasicQuerySpec
|
|
( spec,
|
|
)
|
|
where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import Data.Aeson qualified as Aeson
|
|
import Data.Aeson.KeyMap qualified as KM
|
|
import Data.List.NonEmpty qualified as NE
|
|
import Harness.Backend.DataConnector (TestCase (..))
|
|
import Harness.Backend.DataConnector qualified as DataConnector
|
|
import Harness.Quoter.Graphql (graphql)
|
|
import Harness.Quoter.Yaml (yaml)
|
|
import Harness.Test.BackendType (BackendType (..), defaultBackendTypeString, defaultSource)
|
|
import Harness.Test.Context qualified as Context
|
|
import Harness.TestEnvironment (TestEnvironment)
|
|
import Hasura.Backends.DataConnector.API qualified as API
|
|
import Test.Hspec (SpecWith, describe, it)
|
|
import Prelude
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
spec :: SpecWith TestEnvironment
|
|
spec =
|
|
Context.runWithLocalTestEnvironment
|
|
[ Context.Context
|
|
{ name = Context.Backend Context.DataConnector,
|
|
mkLocalTestEnvironment = DataConnector.mkLocalTestEnvironmentMock,
|
|
setup = DataConnector.setupMock sourceMetadata DataConnector.mockBackendConfig,
|
|
teardown = DataConnector.teardownMock,
|
|
customOptions = Nothing
|
|
}
|
|
]
|
|
tests
|
|
|
|
sourceMetadata :: Aeson.Value
|
|
sourceMetadata =
|
|
let source = defaultSource DataConnector
|
|
backendType = defaultBackendTypeString DataConnector
|
|
in [yaml|
|
|
name : *source
|
|
kind: *backendType
|
|
tables:
|
|
- table: Album
|
|
configuration:
|
|
custom_root_fields:
|
|
select: albums
|
|
select_by_pk: albums_by_pk
|
|
column_config:
|
|
AlbumId:
|
|
custom_name: id
|
|
Title:
|
|
custom_name: title
|
|
ArtistId:
|
|
custom_name: artist_id
|
|
object_relationships:
|
|
- name: artist
|
|
using:
|
|
manual_configuration:
|
|
remote_table: Artist
|
|
column_mapping:
|
|
ArtistId: ArtistId
|
|
- table: Artist
|
|
configuration:
|
|
custom_root_fields:
|
|
select: artists
|
|
select_by_pk: artists_by_pk
|
|
column_config:
|
|
ArtistId:
|
|
custom_name: id
|
|
Name:
|
|
custom_name: name
|
|
array_relationships:
|
|
- name: albums
|
|
using:
|
|
manual_configuration:
|
|
remote_table: Album
|
|
column_mapping:
|
|
ArtistId: ArtistId
|
|
configuration: {}
|
|
|]
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
tests :: Context.Options -> SpecWith (TestEnvironment, DataConnector.MockAgentEnvironment)
|
|
tests opts = do
|
|
describe "Basic Tests" $ do
|
|
it "works with simple object query" $
|
|
DataConnector.runMockedTest opts $
|
|
let required =
|
|
DataConnector.TestCaseRequired
|
|
{ _givenRequired =
|
|
let albums =
|
|
[ [ ("id", API.mkColumnFieldValue $ Aeson.Number 1),
|
|
("title", API.mkColumnFieldValue $ Aeson.String "For Those About To Rock We Salute You")
|
|
]
|
|
]
|
|
in DataConnector.chinookMock {DataConnector._queryResponse = \_ -> rowsResponse albums},
|
|
_whenRequestRequired =
|
|
[graphql|
|
|
query getAlbum {
|
|
albums(limit: 1) {
|
|
id
|
|
title
|
|
}
|
|
}
|
|
|],
|
|
_thenRequired =
|
|
[yaml|
|
|
data:
|
|
albums:
|
|
- id: 1
|
|
title: For Those About To Rock We Salute You
|
|
|]
|
|
}
|
|
in (DataConnector.defaultTestCase required)
|
|
{ _whenQuery =
|
|
Just
|
|
( API.QueryRequest
|
|
{ _qrTable = API.TableName "Album",
|
|
_qrTableRelationships = [],
|
|
_qrQuery =
|
|
API.Query
|
|
{ _qFields =
|
|
Just $
|
|
KM.fromList
|
|
[ ("id", API.ColumnField (API.ColumnName "AlbumId")),
|
|
("title", API.ColumnField (API.ColumnName "Title"))
|
|
],
|
|
_qAggregates = Nothing,
|
|
_qLimit = Just 1,
|
|
_qOffset = Nothing,
|
|
_qWhere = Just (API.And []),
|
|
_qOrderBy = Nothing
|
|
}
|
|
}
|
|
)
|
|
}
|
|
|
|
it "works with order_by id" $
|
|
DataConnector.runMockedTest opts $
|
|
let required =
|
|
DataConnector.TestCaseRequired
|
|
{ _givenRequired =
|
|
let albums =
|
|
[ [ ("id", API.mkColumnFieldValue $ Aeson.Number 1),
|
|
("title", API.mkColumnFieldValue $ Aeson.String "For Those About To Rock We Salute You")
|
|
],
|
|
[ ("id", API.mkColumnFieldValue $ Aeson.Number 2),
|
|
("title", API.mkColumnFieldValue $ Aeson.String "Balls to the Wall")
|
|
],
|
|
[ ("id", API.mkColumnFieldValue $ Aeson.Number 3),
|
|
("title", API.mkColumnFieldValue $ Aeson.String "Restless and Wild")
|
|
]
|
|
]
|
|
in DataConnector.chinookMock {DataConnector._queryResponse = \_ -> rowsResponse albums},
|
|
_whenRequestRequired =
|
|
[graphql|
|
|
query getAlbum {
|
|
albums(limit: 3, order_by: {id: asc}) {
|
|
id
|
|
title
|
|
}
|
|
}
|
|
|],
|
|
_thenRequired =
|
|
[yaml|
|
|
data:
|
|
albums:
|
|
- id: 1
|
|
title: For Those About To Rock We Salute You
|
|
- id: 2
|
|
title: Balls to the Wall
|
|
- id: 3
|
|
title: Restless and Wild
|
|
|]
|
|
}
|
|
in (DataConnector.defaultTestCase required)
|
|
{ _whenQuery =
|
|
Just
|
|
( API.QueryRequest
|
|
{ _qrTable = API.TableName "Album",
|
|
_qrTableRelationships = [],
|
|
_qrQuery =
|
|
API.Query
|
|
{ _qFields =
|
|
Just $
|
|
KM.fromList
|
|
[ ("id", API.ColumnField (API.ColumnName "AlbumId")),
|
|
("title", API.ColumnField (API.ColumnName "Title"))
|
|
],
|
|
_qAggregates = Nothing,
|
|
_qLimit = Just 3,
|
|
_qOffset = Nothing,
|
|
_qWhere = Just (API.And []),
|
|
_qOrderBy = Just (API.OrderBy (API.ColumnName "AlbumId") API.Ascending NE.:| [])
|
|
}
|
|
}
|
|
)
|
|
}
|
|
|
|
rowsResponse :: [[(Aeson.Key, API.FieldValue)]] -> API.QueryResponse
|
|
rowsResponse rows = API.QueryResponse (Just $ KM.fromList <$> rows) Nothing
|