Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
1c4584abdd
|
|||
e071553e75
|
|||
e731c7db07
|
|||
303cf18d77
|
|||
6b8346e527
|
@ -2,67 +2,51 @@ name: Build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
audit:
|
audit:
|
||||||
runs-on: alpine
|
runs-on: haskell
|
||||||
steps:
|
steps:
|
||||||
- name: Set up environment
|
- name: Set up environment
|
||||||
shell: ash {0}
|
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache git bash curl build-base readline-dev openssl-dev zlib-dev libpq-dev gmp-dev
|
apt-get update -y
|
||||||
- name: Prepare system
|
apt-get upgrade -y
|
||||||
run: |
|
apt-get install -y nodejs pkg-config
|
||||||
curl --create-dirs --output-dir \
|
|
||||||
~/.ghcup/bin https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 -o ghcup
|
|
||||||
chmod +x ~/.ghcup/bin/ghcup
|
|
||||||
~/.ghcup/bin/ghcup install ghc 9.4.8
|
|
||||||
~/.ghcup/bin/ghcup install cabal 3.6.2.0
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal update
|
cabal update
|
||||||
~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal install hlint --constraint="hlint ==3.6.1"
|
cabal install hlint "--constraint=hlint ==3.8"
|
||||||
- run: ~/.cabal/bin/hlint -- src tests
|
- run: cabal exec hlint -- src tests
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: alpine
|
runs-on: haskell
|
||||||
steps:
|
steps:
|
||||||
- name: Set up environment
|
- name: Set up environment
|
||||||
shell: ash {0}
|
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache git bash curl build-base readline-dev openssl-dev zlib-dev libpq-dev gmp-dev
|
apt-get update -y
|
||||||
- name: Prepare system
|
apt-get upgrade -y
|
||||||
run: |
|
apt-get install -y nodejs pkg-config
|
||||||
curl --create-dirs --output-dir \
|
|
||||||
~/.ghcup/bin https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 -o ghcup
|
|
||||||
chmod +x ~/.ghcup/bin/ghcup
|
|
||||||
~/.ghcup/bin/ghcup install ghc 9.4.8
|
|
||||||
~/.ghcup/bin/ghcup install cabal 3.6.2.0
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: cabal update
|
||||||
~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal update
|
- name: Prepare system
|
||||||
~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal build graphql-test
|
run: cabal build graphql-test
|
||||||
- run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal test --test-show-details=direct
|
- run: cabal test --test-show-details=streaming
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
runs-on: alpine
|
runs-on: haskell
|
||||||
steps:
|
steps:
|
||||||
- name: Set up environment
|
- name: Set up environment
|
||||||
shell: ash {0}
|
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache git bash curl build-base readline-dev openssl-dev zlib-dev libpq-dev gmp-dev
|
apt-get update -y
|
||||||
- name: Prepare system
|
apt-get upgrade -y
|
||||||
run: |
|
apt-get install -y nodejs pkg-config
|
||||||
curl --create-dirs --output-dir \
|
|
||||||
~/.ghcup/bin https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 -o ghcup
|
|
||||||
chmod +x ~/.ghcup/bin/ghcup
|
|
||||||
~/.ghcup/bin/ghcup install ghc 9.4.8
|
|
||||||
~/.ghcup/bin/ghcup install cabal 3.6.2.0
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal update
|
run: cabal update
|
||||||
- run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal haddock --enable-documentation
|
- run: cabal haddock --enable-documentation
|
||||||
|
23
.gitea/workflows/release.yml
Normal file
23
.gitea/workflows/release.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: haskell
|
||||||
|
steps:
|
||||||
|
- name: Set up environment
|
||||||
|
run: |
|
||||||
|
apt-get update -y
|
||||||
|
apt-get upgrade -y
|
||||||
|
apt-get install -y nodejs pkg-config
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Upload a candidate
|
||||||
|
env:
|
||||||
|
HACKAGE_PASSWORD: ${{ secrets.HACKAGE_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
cabal sdist
|
||||||
|
cabal upload --username belka --password ${HACKAGE_PASSWORD}
|
@ -6,6 +6,11 @@ The format is based on
|
|||||||
and this project adheres to
|
and this project adheres to
|
||||||
[Haskell Package Versioning Policy](https://pvp.haskell.org/).
|
[Haskell Package Versioning Policy](https://pvp.haskell.org/).
|
||||||
|
|
||||||
|
## [1.3.0.0] - 2024-05-01
|
||||||
|
### Changed
|
||||||
|
- Remove deprecated `runCollectErrs`, `Resolution`, `CollectErrsT` from the
|
||||||
|
`Error` module.
|
||||||
|
|
||||||
## [1.2.0.3] - 2024-01-09
|
## [1.2.0.3] - 2024-01-09
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fix corrupted source distribution.
|
- Fix corrupted source distribution.
|
||||||
@ -519,6 +524,7 @@ and this project adheres to
|
|||||||
### Added
|
### Added
|
||||||
- Data types for the GraphQL language.
|
- Data types for the GraphQL language.
|
||||||
|
|
||||||
|
[1.3.0.0]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.3...v1.3.0.0
|
||||||
[1.2.0.3]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.2...v1.2.0.3
|
[1.2.0.3]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.2...v1.2.0.3
|
||||||
[1.2.0.2]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.1...v1.2.0.2
|
[1.2.0.2]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.1...v1.2.0.2
|
||||||
[1.2.0.1]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.0...v1.2.0.1
|
[1.2.0.1]: https://git.caraus.tech/OSS/graphql/compare/v1.2.0.0...v1.2.0.1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
cabal-version: 2.4
|
cabal-version: 2.4
|
||||||
|
|
||||||
name: graphql
|
name: graphql
|
||||||
version: 1.2.0.3
|
version: 1.3.0.0
|
||||||
synopsis: Haskell GraphQL implementation
|
synopsis: Haskell GraphQL implementation
|
||||||
description: Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.
|
description: Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.
|
||||||
category: Language
|
category: Language
|
||||||
@ -60,7 +60,7 @@ library
|
|||||||
build-depends:
|
build-depends:
|
||||||
base >= 4.7 && < 5,
|
base >= 4.7 && < 5,
|
||||||
conduit ^>= 1.3.4,
|
conduit ^>= 1.3.4,
|
||||||
containers ^>= 0.6.2,
|
containers >= 0.6 && < 0.8,
|
||||||
exceptions ^>= 0.10.4,
|
exceptions ^>= 0.10.4,
|
||||||
megaparsec >= 9.0 && < 10,
|
megaparsec >= 9.0 && < 10,
|
||||||
parser-combinators >= 1.3 && < 2,
|
parser-combinators >= 1.3 && < 2,
|
||||||
@ -93,7 +93,7 @@ test-suite graphql-test
|
|||||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
|
||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
QuickCheck ^>= 2.14.1,
|
QuickCheck >= 2.14 && < 2.16,
|
||||||
base,
|
base,
|
||||||
conduit,
|
conduit,
|
||||||
exceptions,
|
exceptions,
|
||||||
|
@ -8,28 +8,22 @@
|
|||||||
|
|
||||||
-- | Error handling.
|
-- | Error handling.
|
||||||
module Language.GraphQL.Error
|
module Language.GraphQL.Error
|
||||||
( CollectErrsT
|
( Error(..)
|
||||||
, Error(..)
|
|
||||||
, Path(..)
|
, Path(..)
|
||||||
, Resolution(..)
|
|
||||||
, ResolverException(..)
|
, ResolverException(..)
|
||||||
, Response(..)
|
, Response(..)
|
||||||
, ResponseEventStream
|
, ResponseEventStream
|
||||||
, parseError
|
, parseError
|
||||||
, runCollectErrs
|
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Conduit
|
import Conduit
|
||||||
import Control.Exception (Exception(..))
|
import Control.Exception (Exception(..))
|
||||||
import Control.Monad.Trans.State (StateT, runStateT)
|
|
||||||
import Data.HashMap.Strict (HashMap)
|
|
||||||
import Data.Sequence (Seq(..), (|>))
|
import Data.Sequence (Seq(..), (|>))
|
||||||
import qualified Data.Sequence as Seq
|
import qualified Data.Sequence as Seq
|
||||||
import Data.Text (Text)
|
import Data.Text (Text)
|
||||||
import qualified Data.Text as Text
|
import qualified Data.Text as Text
|
||||||
import Language.GraphQL.AST (Location(..), Name)
|
import Language.GraphQL.AST (Location(..))
|
||||||
import Language.GraphQL.Execute.Coerce
|
import Language.GraphQL.Execute.Coerce
|
||||||
import qualified Language.GraphQL.Type.Schema as Schema
|
|
||||||
import Prelude hiding (null)
|
import Prelude hiding (null)
|
||||||
import Text.Megaparsec
|
import Text.Megaparsec
|
||||||
( ParseErrorBundle(..)
|
( ParseErrorBundle(..)
|
||||||
@ -97,28 +91,3 @@ instance Show ResolverException where
|
|||||||
show (ResolverException e) = show e
|
show (ResolverException e) = show e
|
||||||
|
|
||||||
instance Exception ResolverException
|
instance Exception ResolverException
|
||||||
|
|
||||||
-- * Deprecated
|
|
||||||
|
|
||||||
{-# DEPRECATED runCollectErrs "runCollectErrs was part of the old executor and isn't used anymore" #-}
|
|
||||||
-- | Runs the given query computation, but collects the errors into an error
|
|
||||||
-- list, which is then sent back with the data.
|
|
||||||
runCollectErrs :: (Monad m, Serialize a)
|
|
||||||
=> HashMap Name (Schema.Type m)
|
|
||||||
-> CollectErrsT m a
|
|
||||||
-> m (Response a)
|
|
||||||
runCollectErrs types' res = do
|
|
||||||
(dat, Resolution{..}) <- runStateT res
|
|
||||||
$ Resolution{ errors = Seq.empty, types = types' }
|
|
||||||
pure $ Response dat errors
|
|
||||||
|
|
||||||
{-# DEPRECATED Resolution "Resolution was part of the old executor and isn't used anymore" #-}
|
|
||||||
-- | Executor context.
|
|
||||||
data Resolution m = Resolution
|
|
||||||
{ errors :: Seq Error
|
|
||||||
, types :: HashMap Name (Schema.Type m)
|
|
||||||
}
|
|
||||||
|
|
||||||
{-# DEPRECATED CollectErrsT "CollectErrsT was part of the old executor and isn't used anymore" #-}
|
|
||||||
-- | A wrapper to pass error messages around.
|
|
||||||
type CollectErrsT m = StateT (Resolution m) m
|
|
||||||
|
@ -7,6 +7,7 @@ import Test.QuickCheck.Arbitrary (Arbitrary (arbitrary))
|
|||||||
import Test.QuickCheck (oneof, elements, listOf, resize, NonEmptyList (..))
|
import Test.QuickCheck (oneof, elements, listOf, resize, NonEmptyList (..))
|
||||||
import Test.QuickCheck.Gen (Gen (..))
|
import Test.QuickCheck.Gen (Gen (..))
|
||||||
import Data.Text (Text, pack)
|
import Data.Text (Text, pack)
|
||||||
|
import Data.Functor ((<&>))
|
||||||
|
|
||||||
newtype AnyPrintableChar = AnyPrintableChar { getAnyPrintableChar :: Char } deriving (Eq, Show)
|
newtype AnyPrintableChar = AnyPrintableChar { getAnyPrintableChar :: Char } deriving (Eq, Show)
|
||||||
|
|
||||||
@ -59,34 +60,36 @@ instance Arbitrary a => Arbitrary (AnyObjectField a) where
|
|||||||
location' <- getAnyLocation <$> arbitrary
|
location' <- getAnyLocation <$> arbitrary
|
||||||
pure $ AnyObjectField $ Doc.ObjectField name' value' location'
|
pure $ AnyObjectField $ Doc.ObjectField name' value' location'
|
||||||
|
|
||||||
newtype AnyValue = AnyValue { getAnyValue :: Doc.Value } deriving (Eq, Show)
|
newtype AnyValue = AnyValue { getAnyValue :: Doc.Value }
|
||||||
|
deriving (Eq, Show)
|
||||||
|
|
||||||
instance Arbitrary AnyValue where
|
instance Arbitrary AnyValue
|
||||||
arbitrary = AnyValue <$> oneof
|
where
|
||||||
[ variableGen
|
arbitrary =
|
||||||
, Doc.Int <$> arbitrary
|
let variableGen :: Gen Doc.Value
|
||||||
, Doc.Float <$> arbitrary
|
variableGen = Doc.Variable . getAnyName <$> arbitrary
|
||||||
, Doc.String <$> (getAnyPrintableText <$> arbitrary)
|
listGen :: Gen [Doc.Node Doc.Value]
|
||||||
, Doc.Boolean <$> arbitrary
|
listGen = (resize 5 . listOf) nodeGen
|
||||||
, MkGen $ \_ _ -> Doc.Null
|
nodeGen :: Gen (Doc.Node Doc.Value)
|
||||||
, Doc.Enum <$> (getAnyName <$> arbitrary)
|
nodeGen = fmap getAnyNode arbitrary <&> fmap getAnyValue
|
||||||
, Doc.List <$> listGen
|
objectGen :: Gen [Doc.ObjectField Doc.Value]
|
||||||
, Doc.Object <$> objectGen
|
objectGen = resize 1
|
||||||
]
|
$ fmap getNonEmpty arbitrary
|
||||||
where
|
<&> map (fmap getAnyValue . getAnyObjectField)
|
||||||
variableGen :: Gen Doc.Value
|
in AnyValue <$> oneof
|
||||||
variableGen = Doc.Variable <$> (getAnyName <$> arbitrary)
|
[ variableGen
|
||||||
listGen :: Gen [Doc.Node Doc.Value]
|
, Doc.Int <$> arbitrary
|
||||||
listGen = (resize 5 . listOf) nodeGen
|
, Doc.Float <$> arbitrary
|
||||||
nodeGen = do
|
, Doc.String . getAnyPrintableText <$> arbitrary
|
||||||
node' <- getAnyNode <$> (arbitrary :: Gen (AnyNode AnyValue))
|
, Doc.Boolean <$> arbitrary
|
||||||
pure (getAnyValue <$> node')
|
, MkGen $ \_ _ -> Doc.Null
|
||||||
objectGen :: Gen [Doc.ObjectField Doc.Value]
|
, Doc.Enum . getAnyName <$> arbitrary
|
||||||
objectGen = resize 1 $ do
|
, Doc.List <$> listGen
|
||||||
list <- getNonEmpty <$> (arbitrary :: Gen (NonEmptyList (AnyObjectField AnyValue)))
|
, Doc.Object <$> objectGen
|
||||||
pure $ map (fmap getAnyValue . getAnyObjectField) list
|
]
|
||||||
|
|
||||||
newtype AnyArgument a = AnyArgument { getAnyArgument :: Doc.Argument } deriving (Eq, Show)
|
newtype AnyArgument a = AnyArgument { getAnyArgument :: Doc.Argument }
|
||||||
|
deriving (Eq, Show)
|
||||||
|
|
||||||
instance Arbitrary a => Arbitrary (AnyArgument a) where
|
instance Arbitrary a => Arbitrary (AnyArgument a) where
|
||||||
arbitrary = do
|
arbitrary = do
|
||||||
|
Reference in New Issue
Block a user