forked from hasura/graphql-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLongIdentifiersSpec.hs
195 lines (180 loc) · 6.3 KB
/
LongIdentifiersSpec.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{-# LANGUAGE QuasiQuotes #-}
-- | Test long identifiers
--
-- See "Hasura.Backend.Postgres.SQL.RenameIdentifiers" for more details.
module Test.LongIdentifiersSpec (spec) where
import Harness.Backend.BigQuery qualified as BigQuery
import Harness.Backend.Postgres qualified as Postgres
import Harness.Backend.Sqlserver qualified as Sqlserver
import Harness.GraphqlEngine qualified as GraphqlEngine
import Harness.Quoter.Graphql (graphql)
import Harness.Quoter.Yaml (interpolateYaml)
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, it)
--------------------------------------------------------------------------------
-- Preamble
spec :: SpecWith TestEnvironment
spec = do
Fixture.run
[ -- Create table fails currently becasuse we postfix table names for some reason
-- which makes the valid table name go over the limit
--
-- (Fixture.fixture $ Fixture.Backend Fixture.MySQL)
-- { Fixture.setupTeardown = \(testEnv, _) ->
-- [ Mysql.setupTablesAction schema testEnv
-- ]
-- },
(Fixture.fixture $ Fixture.Backend Fixture.Postgres)
{ Fixture.setupTeardown = \(testEnv, _) ->
[ Postgres.setupTablesAction schema testEnv
]
},
-- Create table fails currently on a weird error:
-- > relation "i_need_a_table_with_a_long_na_i_need_a_column_with_a_long_n_seq" already exists
--
-- (Fixture.fixture $ Fixture.Backend Fixture.Citus)
-- { Fixture.setupTeardown = \(testEnv, _) ->
-- [ Citus.setupTablesAction schema testEnv
-- ]
-- },
(Fixture.fixture $ Fixture.Backend Fixture.SQLServer)
{ Fixture.setupTeardown = \(testEnv, _) ->
[ Sqlserver.setupTablesAction schema testEnv
]
},
(Fixture.fixture $ Fixture.Backend Fixture.BigQuery)
{ Fixture.setupTeardown = \(testEnv, _) ->
[ BigQuery.setupTablesAction schema testEnv
],
Fixture.customOptions =
Just $
Fixture.Options
{ stringifyNumbers = True
}
}
]
tests
--------------------------------------------------------------------------------
-- Schema
schema :: [Schema.Table]
schema = [regular, longtable]
regular :: Schema.Table
regular =
(table "regular")
{ tableColumns =
[ Schema.column "id" Schema.TInt,
Schema.column "name" Schema.TStr
],
tablePrimaryKey = ["id"],
tableData =
[ [Schema.VInt 1, Schema.VStr "Author 1"],
[Schema.VInt 2, Schema.VStr "Author 2"]
]
}
longtable :: Schema.Table
longtable =
(table "i_need_a_table_with_a_long_name_to_test_rename_identifiers") -- 58 characters
{ tableColumns =
[ Schema.column "id" Schema.TInt,
Schema.column "regular_id" Schema.TInt,
Schema.column "i_need_a_column_with_a_long_name_to_test_rename_identifiers" Schema.TInt, -- 59 characters
Schema.column "i_need_a_column_with_a_long_name_but_is_different" Schema.TInt -- 49 characters
],
tablePrimaryKey = ["id"],
tableReferences =
[ Schema.Reference
{ referenceLocalColumn = "regular_id",
referenceTargetTable = "regular",
referenceTargetColumn = "id"
}
],
tableData =
[ [Schema.VInt 1, Schema.VInt 1, Schema.VInt 1, Schema.VInt 1],
[Schema.VInt 2, Schema.VInt 2, Schema.VInt 2, Schema.VInt 2]
]
}
--------------------------------------------------------------------------------
-- Tests
tests :: Fixture.Options -> SpecWith TestEnvironment
tests opts = do
it "select long table" $ \testEnvironment -> do
let schemaName = Schema.getSchemaName testEnvironment
shouldReturnYaml
opts
( GraphqlEngine.postGraphql
testEnvironment
[graphql|
query {
#{schemaName}_i_need_a_table_with_a_long_name_to_test_rename_identifiers(order_by:[{id:asc}]) {
id
}
}
|]
)
[interpolateYaml|
data:
#{schemaName}_i_need_a_table_with_a_long_name_to_test_rename_identifiers:
- id: 1
- id: 2
|]
it "select long column" $ \testEnvironment -> do
let schemaName = Schema.getSchemaName testEnvironment
shouldReturnYaml
opts
( GraphqlEngine.postGraphql
testEnvironment
[interpolateYaml|
query {
#{schemaName}_i_need_a_table_with_a_long_name_to_test_rename_identifiers(order_by:[{i_need_a_column_with_a_long_name_to_test_rename_identifiers:asc, i_need_a_column_with_a_long_name_but_is_different:asc}]) {
id
regular_id
i_need_a_column_with_a_long_name_to_test_rename_identifiers
}
}
|]
)
[interpolateYaml|
data:
#{schemaName}_i_need_a_table_with_a_long_name_to_test_rename_identifiers:
- id: 1
regular_id: 1
i_need_a_column_with_a_long_name_to_test_rename_identifiers: 1
- id: 2
regular_id: 2
i_need_a_column_with_a_long_name_to_test_rename_identifiers: 2
|]
it "select long column via array relationship" $ \testEnvironment -> do
let schemaName = Schema.getSchemaName testEnvironment
shouldReturnYaml
opts
( GraphqlEngine.postGraphql
testEnvironment
[interpolateYaml|
query {
#{schemaName}_regular(order_by:[{id:asc}]) {
id
i_need_a_table_with_a_long_name_to_test_rename_identifierss_by_id_to_regular_id(order_by:[{i_need_a_column_with_a_long_name_to_test_rename_identifiers:asc, i_need_a_column_with_a_long_name_but_is_different:asc}]) {
i_need_a_column_with_a_long_name_to_test_rename_identifiers
i_need_a_column_with_a_long_name_but_is_different
}
}
}
|]
)
[interpolateYaml|
data:
#{schemaName}_regular:
- id: 1
i_need_a_table_with_a_long_name_to_test_rename_identifierss_by_id_to_regular_id:
- i_need_a_column_with_a_long_name_to_test_rename_identifiers: 1
i_need_a_column_with_a_long_name_but_is_different: 1
- id: 2
i_need_a_table_with_a_long_name_to_test_rename_identifierss_by_id_to_regular_id:
- i_need_a_column_with_a_long_name_to_test_rename_identifiers: 2
i_need_a_column_with_a_long_name_but_is_different: 2
|]