Merge pull request #1476 from haskell-servant/maksbotan/fix-servant-auth-tests
Fix tests for some servant-auth pkgs on GHC 9
This commit is contained in:
commit
043d5a0e90
4 changed files with 10 additions and 9 deletions
|
@ -36,7 +36,7 @@ packages:
|
||||||
doc/cookbook/generic
|
doc/cookbook/generic
|
||||||
doc/cookbook/hoist-server-with-context
|
doc/cookbook/hoist-server-with-context
|
||||||
doc/cookbook/https
|
doc/cookbook/https
|
||||||
-- doc/cookbook/jwt-and-basic-auth/
|
doc/cookbook/jwt-and-basic-auth
|
||||||
doc/cookbook/pagination
|
doc/cookbook/pagination
|
||||||
-- doc/cookbook/sentry
|
-- doc/cookbook/sentry
|
||||||
-- Commented out because servant-quickcheck currently doesn't build.
|
-- Commented out because servant-quickcheck currently doesn't build.
|
||||||
|
|
|
@ -22,7 +22,7 @@ executable cookbook-jwt-and-basic-auth
|
||||||
, servant
|
, servant
|
||||||
, servant-client
|
, servant-client
|
||||||
, servant-server
|
, servant-server
|
||||||
, servant-auth ==0.3.*
|
, servant-auth == 0.4.*
|
||||||
, servant-auth-server >= 0.3.1.0
|
, servant-auth-server >= 0.3.1.0
|
||||||
, warp >= 3.2
|
, warp >= 3.2
|
||||||
, wai >= 3.2
|
, wai >= 3.2
|
||||||
|
|
|
@ -59,8 +59,6 @@ test-suite spec
|
||||||
, servant-auth
|
, servant-auth
|
||||||
, servant
|
, servant
|
||||||
, servant-auth-client
|
, servant-auth-client
|
||||||
if impl(ghc >= 9)
|
|
||||||
buildable: False
|
|
||||||
|
|
||||||
-- test dependencies
|
-- test dependencies
|
||||||
build-depends:
|
build-depends:
|
||||||
|
|
|
@ -33,7 +33,7 @@ library
|
||||||
build-depends:
|
build-depends:
|
||||||
base >= 4.10 && < 4.16
|
base >= 4.10 && < 4.16
|
||||||
, aeson >= 1.3.1.1 && < 1.6
|
, aeson >= 1.3.1.1 && < 1.6
|
||||||
, base64-bytestring >= 1.0.0.1 && < 1.2
|
, base64-bytestring >= 1.0.0.1 && < 1.3
|
||||||
, blaze-builder >= 0.4.1.0 && < 0.5
|
, blaze-builder >= 0.4.1.0 && < 0.5
|
||||||
, bytestring >= 0.10.6.0 && < 0.11
|
, bytestring >= 0.10.6.0 && < 0.11
|
||||||
, case-insensitive >= 1.2.0.11 && < 1.3
|
, case-insensitive >= 1.2.0.11 && < 1.3
|
||||||
|
@ -55,6 +55,13 @@ library
|
||||||
, unordered-containers >= 0.2.9.0 && < 0.3
|
, unordered-containers >= 0.2.9.0 && < 0.3
|
||||||
, wai >= 3.2.1.2 && < 3.3
|
, wai >= 3.2.1.2 && < 3.3
|
||||||
|
|
||||||
|
if impl(ghc >= 9)
|
||||||
|
build-depends:
|
||||||
|
-- base64-bytestring 1.2.1.0 contains important fix for GHC-9, lower versions
|
||||||
|
-- produce wrong results, thus corrupring JWT via jose package.
|
||||||
|
-- See: https://github.com/haskell/base64-bytestring/pull/46
|
||||||
|
base64-bytestring >= 1.2.1.0
|
||||||
|
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
Servant.Auth.Server
|
Servant.Auth.Server
|
||||||
Servant.Auth.Server.Internal
|
Servant.Auth.Server.Internal
|
||||||
|
@ -87,8 +94,6 @@ test-suite readme
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
if impl(ghcjs)
|
if impl(ghcjs)
|
||||||
buildable: False
|
buildable: False
|
||||||
if impl(ghc >= 9)
|
|
||||||
buildable: False
|
|
||||||
|
|
||||||
test-suite spec
|
test-suite spec
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
|
@ -114,8 +119,6 @@ test-suite spec
|
||||||
, servant
|
, servant
|
||||||
, servant-server
|
, servant-server
|
||||||
, transformers
|
, transformers
|
||||||
if impl(ghc >= 9)
|
|
||||||
buildable: False
|
|
||||||
|
|
||||||
-- test dependencies
|
-- test dependencies
|
||||||
build-depends:
|
build-depends:
|
||||||
|
|
Loading…
Reference in a new issue