Previously, information about each test-suite was repeated in 3 separate places: - as a label and as implicit knowledge in the test-suite itself, - as a comment in Main.hs, and - as a configuration in SpecHelper.hs. With this change, there will be a single source of truth in the test suite itself. This will allow a single test-suite to easily test multiple different configurations.
40 lines
1.2 KiB
Haskell
40 lines
1.2 KiB
Haskell
module Feature.Query.UnicodeSpec where
|
|
|
|
import Data.List.NonEmpty (fromList)
|
|
import Network.HTTP.Types
|
|
import Test.Hspec
|
|
import Test.Hspec.Wai
|
|
import Test.Hspec.Wai.JSON
|
|
|
|
import PostgREST.Config (AppConfig (..))
|
|
|
|
import Protolude hiding (get)
|
|
import SpecHelper
|
|
|
|
spec :: SpecWithConfig
|
|
spec withConfig = withConfig (baseCfg { configDbSchemas = fromList ["تست"] }) $
|
|
describe "Reading and writing to unicode schema and table names" $
|
|
it "Can read and write values" $ do
|
|
get "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
`shouldRespondWith` "[]"
|
|
|
|
request methodPost "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
[("Prefer", "tx=commit"), ("Prefer", "return=representation")]
|
|
[json| { "هویت": 1 } |]
|
|
`shouldRespondWith`
|
|
[json| [{ "هویت": 1 }] |]
|
|
{ matchStatus = 201 }
|
|
|
|
get "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
`shouldRespondWith`
|
|
[json| [{ "هویت": 1 }] |]
|
|
|
|
request methodDelete "/%D9%85%D9%88%D8%A7%D8%B1%D8%AF"
|
|
[("Prefer", "tx=commit")]
|
|
""
|
|
`shouldRespondWith`
|
|
""
|
|
{ matchStatus = 204
|
|
, matchHeaders = [matchHeaderAbsent hContentType]
|
|
}
|