mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
0fad2485f3
### Description This small PR fixes a few errors in the setup of remote relationships. We were not using the proper local state setup functions coming from the LHS context, and the RHS function for remote relationships was misnamed. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3749 GitOrigin-RevId: 5f261aced6bf5dbb05749af10c59e01a9214ea11
335 lines
9.1 KiB
Haskell
335 lines
9.1 KiB
Haskell
-- | Tests for remote relationships to remote schemas. Remote relationships are
|
|
-- relationships that are not local to a given source or remote schema, and are
|
|
-- handled by the engine itself.
|
|
--
|
|
-- All tests use the same GraphQL syntax, and the only difference is in the
|
|
-- setup: for each left-hand side source we support we do a custom setup and run
|
|
-- the tests.
|
|
module Test.RemoteRelationship.XToRemoteSchemaRelationshipSpec (spec) where
|
|
|
|
import Data.Morpheus.Document (gqlDocument)
|
|
import Data.Morpheus.Types (Arg (..))
|
|
import Data.Text (Text)
|
|
import Harness.Backend.Postgres qualified as Postgres
|
|
import Harness.GraphqlEngine qualified as GraphqlEngine
|
|
import Harness.Quoter.Graphql (graphql)
|
|
import Harness.Quoter.Sql (sql)
|
|
import Harness.Quoter.Yaml (shouldReturnYaml, yaml)
|
|
import Harness.RemoteServer qualified as RemoteServer
|
|
import Harness.State (Server, State)
|
|
import Harness.Test.Context (Context (..))
|
|
import Harness.Test.Context qualified as Context
|
|
import Test.Hspec (SpecWith, describe, it)
|
|
import Prelude
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Preamble
|
|
|
|
spec :: SpecWith State
|
|
spec = Context.runWithLocalState contexts tests
|
|
where
|
|
contexts = map mkContext [lhsPostgres]
|
|
lhsPostgres =
|
|
Context
|
|
{ name = Context.Postgres,
|
|
mkLocalState = lhsPostgresMkLocalState,
|
|
setup = lhsPostgresSetup,
|
|
teardown = lhsPostgresTeardown,
|
|
customOptions = Nothing
|
|
}
|
|
|
|
-- | Uses a given RHS context to create a combined context.
|
|
mkContext :: Context (Maybe Server) -> Context LocalTestState
|
|
mkContext lhs =
|
|
Context
|
|
{ name = lhsName,
|
|
mkLocalState = \state -> do
|
|
rhsServer <- rhsRemoteServerMkLocalState state
|
|
lhsServer <- lhsMkLocalState state
|
|
pure $ LocalTestState lhsServer rhsServer,
|
|
setup = \(state, LocalTestState lhsServer rhsServer) -> do
|
|
GraphqlEngine.clearMetadata state
|
|
rhsRemoteSchemaSetup (state, rhsServer)
|
|
lhsSetup (state, lhsServer),
|
|
teardown = \(state, LocalTestState lhsServer rhsServer) -> do
|
|
lhsTeardown (state, lhsServer)
|
|
rhsRemoteSchemaTeardown (state, rhsServer),
|
|
customOptions = lhsOptions
|
|
}
|
|
where
|
|
Context
|
|
{ name = lhsName,
|
|
mkLocalState = lhsMkLocalState,
|
|
setup = lhsSetup,
|
|
teardown = lhsTeardown,
|
|
customOptions = lhsOptions
|
|
} = lhs
|
|
|
|
-- | Local test state.
|
|
data LocalTestState = LocalTestState
|
|
{ _lhsServer :: Maybe Server,
|
|
_rhsServer :: Server
|
|
}
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- LHS Postgres
|
|
|
|
lhsPostgresMkLocalState :: State -> IO (Maybe Server)
|
|
lhsPostgresMkLocalState _ = pure Nothing
|
|
|
|
lhsPostgresSetup :: (State, Maybe Server) -> IO ()
|
|
lhsPostgresSetup (state, _) = do
|
|
Postgres.run_
|
|
[sql|
|
|
create table hasura.track (
|
|
id serial primary key,
|
|
title text not null,
|
|
album_id int null
|
|
);
|
|
insert into hasura.track (title, album_id) values
|
|
('track1_album1', 1),
|
|
('track2_album1', 1),
|
|
('track3_album1', 1),
|
|
('track1_album2', 2),
|
|
('track2_album2', 2),
|
|
('track1_album3', 3),
|
|
('track2_album3', 3),
|
|
('track_no_album', null);
|
|
|]
|
|
let lhsTableName = [yaml|{"schema":"hasura", "name":"track"}|]
|
|
sourceConfig = Postgres.defaultSourceConfiguration
|
|
GraphqlEngine.postMetadata_
|
|
state
|
|
[yaml|
|
|
type: bulk
|
|
args:
|
|
- type: pg_add_source
|
|
args:
|
|
name: source
|
|
configuration: *sourceConfig
|
|
- type: pg_track_table
|
|
args:
|
|
source: source
|
|
table: *lhsTableName
|
|
- type: pg_create_remote_relationship
|
|
args:
|
|
source: source
|
|
table: *lhsTableName
|
|
name: album
|
|
definition:
|
|
to_remote_schema:
|
|
remote_schema: target
|
|
lhs_fields: [album_id]
|
|
remote_field:
|
|
album:
|
|
arguments:
|
|
album_id: $album_id
|
|
|]
|
|
|
|
lhsPostgresTeardown :: (State, Maybe Server) -> IO ()
|
|
lhsPostgresTeardown _ = Postgres.run_ [sql|drop table hasura.track;|]
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- RHS Remote Server
|
|
|
|
[gqlDocument|
|
|
|
|
type Album {
|
|
id: Int!
|
|
title: String!
|
|
artist_id: Int
|
|
}
|
|
|
|
type Query {
|
|
album(album_id: Int!): Album
|
|
}
|
|
|
|
|]
|
|
|
|
rhsRemoteServerMkLocalState :: State -> IO Server
|
|
rhsRemoteServerMkLocalState _ =
|
|
RemoteServer.run $
|
|
RemoteServer.generateQueryInterpreter (Query {album})
|
|
where
|
|
albums =
|
|
[ (1, ("album1_artist1", Just 1)),
|
|
(2, ("album2_artist1", Just 1)),
|
|
(3, ("album3_artist2", Just 2))
|
|
]
|
|
album (Arg albumId) = pure $ fmap (mkAlbum albumId) $ lookup albumId albums
|
|
mkAlbum albumId (title, artist_id) =
|
|
Album
|
|
{ id = pure albumId,
|
|
title = pure title,
|
|
artist_id = pure artist_id
|
|
}
|
|
|
|
rhsRemoteSchemaSetup :: (State, Server) -> IO ()
|
|
rhsRemoteSchemaSetup (state, remoteServer) = do
|
|
let remoteSchemaEndpoint = GraphqlEngine.serverUrl remoteServer ++ "/graphql"
|
|
GraphqlEngine.postMetadata_
|
|
state
|
|
[yaml|
|
|
type: add_remote_schema
|
|
args:
|
|
name: target
|
|
definition:
|
|
url: *remoteSchemaEndpoint
|
|
|]
|
|
|
|
rhsRemoteSchemaTeardown :: (State, Server) -> IO ()
|
|
rhsRemoteSchemaTeardown (_, server) = GraphqlEngine.stopServer server
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Tests
|
|
|
|
tests :: Context.Options -> SpecWith (State, LocalTestState)
|
|
tests opts = do
|
|
schemaTests opts
|
|
executionTests opts
|
|
|
|
-- | Basic queries using *-to-DB joins
|
|
executionTests :: Context.Options -> SpecWith (State, LocalTestState)
|
|
executionTests opts = describe "execution" $ do
|
|
-- fetches the relationship data
|
|
it "related-data" $ \(state, _) -> do
|
|
let query =
|
|
[graphql|
|
|
query {
|
|
track: hasura_track(where: {title: {_eq: "track1_album1"}}) {
|
|
title
|
|
album {
|
|
title
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
expectedResponse =
|
|
[yaml|
|
|
data:
|
|
track:
|
|
- title: "track1_album1"
|
|
album:
|
|
title: album1_artist1
|
|
|]
|
|
shouldReturnYaml
|
|
opts
|
|
(GraphqlEngine.postGraphql state query)
|
|
expectedResponse
|
|
|
|
-- when any of the join columns are null, the relationship should be null
|
|
it "related-data-null" $ \(state, _) -> do
|
|
let query =
|
|
[graphql|
|
|
query {
|
|
track: hasura_track(where: {title: {_eq: "track_no_album"}}) {
|
|
title
|
|
album {
|
|
title
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
expectedResponse =
|
|
[yaml|
|
|
data:
|
|
track:
|
|
- title: "track_no_album"
|
|
album: null
|
|
|]
|
|
shouldReturnYaml
|
|
opts
|
|
(GraphqlEngine.postGraphql state query)
|
|
expectedResponse
|
|
|
|
-- when the lhs response has both null and non-null values for join columns
|
|
it "related-data-non-null-and-null" $ \(state, _) -> do
|
|
let query =
|
|
[graphql|
|
|
query {
|
|
track: hasura_track(
|
|
where: {
|
|
_or: [
|
|
{title: {_eq: "track1_album1"}},
|
|
{title: {_eq: "track_no_album"}}
|
|
]
|
|
},
|
|
order_by: {id: asc}
|
|
) {
|
|
title
|
|
album {
|
|
title
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
expectedResponse =
|
|
[yaml|
|
|
data:
|
|
track:
|
|
- title: "track1_album1"
|
|
album:
|
|
title: album1_artist1
|
|
- title: "track_no_album"
|
|
album: null
|
|
|]
|
|
shouldReturnYaml
|
|
opts
|
|
(GraphqlEngine.postGraphql state query)
|
|
expectedResponse
|
|
|
|
schemaTests :: Context.Options -> SpecWith (State, LocalTestState)
|
|
schemaTests opts =
|
|
-- we use an introspection query to check:
|
|
-- 1. a field 'album' is added to the track table
|
|
-- 1. track's where clause does not have 'album' field
|
|
-- 2. track's order_by clause does nat have 'album' field
|
|
it "graphql-schema" $ \(state, _) -> do
|
|
let query =
|
|
[graphql|
|
|
query {
|
|
track_fields: __type(name: "hasura_track") {
|
|
fields {
|
|
name
|
|
}
|
|
}
|
|
track_where_exp_fields: __type(name: "hasura_track_bool_exp") {
|
|
inputFields {
|
|
name
|
|
}
|
|
}
|
|
track_order_by_exp_fields: __type(name: "hasura_track_order_by") {
|
|
inputFields {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
|]
|
|
expectedResponse =
|
|
[yaml|
|
|
data:
|
|
track_fields:
|
|
fields:
|
|
- name: album
|
|
- name: album_id
|
|
- name: id
|
|
- name: title
|
|
track_where_exp_fields:
|
|
inputFields:
|
|
- name: _and
|
|
- name: _not
|
|
- name: _or
|
|
- name: album_id
|
|
- name: id
|
|
- name: title
|
|
track_order_by_exp_fields:
|
|
inputFields:
|
|
- name: album_id
|
|
- name: id
|
|
- name: title
|
|
|]
|
|
shouldReturnYaml
|
|
opts
|
|
(GraphqlEngine.postGraphql state query)
|
|
expectedResponse
|