mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-25 00:13:11 +03:00
132 lines
3.8 KiB
Haskell
132 lines
3.8 KiB
Haskell
|
{-# LANGUAGE QuasiQuotes #-}
|
||
|
|
||
|
-- |
|
||
|
-- See https://github.com/hasura/graphql-engine/issues/8158
|
||
|
module Test.Regression.DoNotTruncateSessionVariables8158 (spec) where
|
||
|
|
||
|
import Data.Aeson (Value)
|
||
|
import Data.List.NonEmpty qualified as NE
|
||
|
import Harness.Backend.Sqlserver qualified as Sqlserver
|
||
|
import Harness.GraphqlEngine (postGraphqlWithHeaders, postMetadata_)
|
||
|
import Harness.Quoter.Graphql (graphql)
|
||
|
import Harness.Quoter.Yaml (interpolateYaml, yaml)
|
||
|
import Harness.Test.Fixture qualified as Fixture
|
||
|
import Harness.Test.Schema (Table (..), table)
|
||
|
import Harness.Test.Schema qualified as Schema
|
||
|
import Harness.TestEnvironment (TestEnvironment)
|
||
|
import Harness.Yaml (shouldReturnYaml)
|
||
|
import Hasura.Prelude
|
||
|
import Test.Hspec (SpecWith, describe, it)
|
||
|
|
||
|
spec :: SpecWith TestEnvironment
|
||
|
spec = do
|
||
|
Fixture.run
|
||
|
( NE.fromList
|
||
|
[ (Fixture.fixture $ Fixture.Backend Fixture.SQLServer)
|
||
|
{ Fixture.setupTeardown = \(testEnvironment, _) ->
|
||
|
[ Sqlserver.setupTablesAction schema testEnvironment,
|
||
|
setupMetadata testEnvironment
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
)
|
||
|
tests
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
-- Schema
|
||
|
|
||
|
schema :: [Schema.Table]
|
||
|
schema =
|
||
|
[ (table "author")
|
||
|
{ tableColumns =
|
||
|
[ Schema.column "uuid" do
|
||
|
Schema.TCustomType
|
||
|
Schema.defaultBackendScalarType
|
||
|
{ Schema.bstMssql = Just "VARCHAR(50)"
|
||
|
},
|
||
|
Schema.column "name" Schema.TStr
|
||
|
],
|
||
|
tablePrimaryKey = ["uuid"],
|
||
|
tableData =
|
||
|
[ [Schema.VStr "36a6257b-08bb-45ef-a5cf-c1b7a7997087", Schema.VStr "Author 1"],
|
||
|
[Schema.VStr "36a6257b-08bb-45ef-a5cf-c1b7a7", Schema.VStr "Author 2"]
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
-- Tests
|
||
|
|
||
|
tests :: Fixture.Options -> SpecWith TestEnvironment
|
||
|
tests opts = do
|
||
|
let shouldBe :: IO Value -> Value -> IO ()
|
||
|
shouldBe = shouldReturnYaml opts
|
||
|
|
||
|
describe "Regression test for #8158" do
|
||
|
it "Session variable strings are not truncated to 30 characters" \testEnvironment -> do
|
||
|
let schemaName :: Schema.SchemaName
|
||
|
schemaName = Schema.getSchemaName testEnvironment
|
||
|
|
||
|
expected :: Value
|
||
|
expected =
|
||
|
[interpolateYaml|
|
||
|
data:
|
||
|
#{schemaName}_author:
|
||
|
- name: 'Author 1'
|
||
|
uuid: '36a6257b-08bb-45ef-a5cf-c1b7a7997087'
|
||
|
|]
|
||
|
|
||
|
actual :: IO Value
|
||
|
actual =
|
||
|
postGraphqlWithHeaders
|
||
|
testEnvironment
|
||
|
[ ("X-Hasura-Role", "user"),
|
||
|
("X-Hasura-User-Id", "36a6257b-08bb-45ef-a5cf-c1b7a7997087")
|
||
|
]
|
||
|
[graphql|
|
||
|
query {
|
||
|
#{schemaName}_author {
|
||
|
name
|
||
|
uuid
|
||
|
}
|
||
|
}
|
||
|
|]
|
||
|
|
||
|
actual `shouldBe` expected
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
-- Metadata
|
||
|
|
||
|
setupMetadata :: TestEnvironment -> Fixture.SetupAction
|
||
|
setupMetadata testEnvironment = Fixture.SetupAction setup \_ -> teardown
|
||
|
where
|
||
|
setup =
|
||
|
postMetadata_
|
||
|
testEnvironment
|
||
|
[yaml|
|
||
|
type: mssql_create_select_permission
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
schema: hasura
|
||
|
name: author
|
||
|
role: user
|
||
|
permission:
|
||
|
filter:
|
||
|
uuid: X-Hasura-User-Id
|
||
|
columns: '*'
|
||
|
|]
|
||
|
|
||
|
teardown =
|
||
|
postMetadata_
|
||
|
testEnvironment
|
||
|
[yaml|
|
||
|
type: mssql_drop_select_permission
|
||
|
args:
|
||
|
source: mssql
|
||
|
table:
|
||
|
schema: hasura
|
||
|
name: author
|
||
|
role: user
|
||
|
|]
|