Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
148
Issues
148
List
Board
Labels
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext
Commits
f1d668a0
Commit
f1d668a0
authored
Nov 07, 2023
by
Alfredo Di Napoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add old error format test
parent
3763d0dc
Pipeline
#5335
passed with stages
in 68 minutes and 26 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
0 deletions
+53
-0
gargantext.cabal
gargantext.cabal
+1
-0
API.hs
test/Test/API.hs
+2
-0
Errors.hs
test/Test/API/Errors.hs
+50
-0
No files found.
gargantext.cabal
View file @
f1d668a0
...
...
@@ -1003,6 +1003,7 @@ test-suite garg-test-hspec
other-modules:
Test.API
Test.API.Authentication
Test.API.Errors
Test.API.GraphQL
Test.API.Private
Test.API.Setup
...
...
test/Test/API.hs
View file @
f1d668a0
...
...
@@ -6,9 +6,11 @@ import Test.Hspec
import
qualified
Test.API.Authentication
as
Auth
import
qualified
Test.API.Private
as
Private
import
qualified
Test.API.GraphQL
as
GraphQL
import
qualified
Test.API.Errors
as
Errors
tests
::
Spec
tests
=
describe
"API"
$
do
Auth
.
tests
Private
.
tests
GraphQL
.
tests
Errors
.
tests
test/Test/API/Errors.hs
0 → 100644
View file @
f1d668a0
{-# LANGUAGE QuasiQuotes #-}
module
Test.API.Errors
(
tests
)
where
import
Gargantext.API.Routes
import
Gargantext.Core.Types.Individu
import
Gargantext.Prelude
hiding
(
get
)
import
Network.HTTP.Client
hiding
(
Proxy
)
import
Network.HTTP.Types
import
Network.Wai.Test
import
Servant
import
Servant.Auth.Client
()
import
Servant.Client
import
Test.API.Private
(
protected
,
withValidLogin
)
import
Test.API.Setup
(
withTestDBAndPort
,
setupEnvironment
,
mkUrl
,
createAliceAndBob
)
import
Test.Hspec
import
Test.Hspec.Wai.Internal
(
withApplication
)
import
Text.RawString.QQ
(
r
)
import
qualified
Servant.Auth.Client
as
SA
tests
::
Spec
tests
=
sequential
$
aroundAll
withTestDBAndPort
$
do
describe
"Errors API"
$
do
describe
"Prelude"
$
do
it
"setup DB triggers and users"
$
\
((
testEnv
,
port
),
_
)
->
do
setupEnvironment
testEnv
baseUrl
<-
parseBaseUrl
"http://localhost"
manager
<-
newManager
defaultManagerSettings
let
clientEnv
prt
=
mkClientEnv
manager
(
baseUrl
{
baseUrlPort
=
prt
})
createAliceAndBob
testEnv
let
(
roots_api
:<|>
_nodes_api
)
=
client
(
Proxy
::
Proxy
(
MkProtectedAPI
GargAdminAPI
))
(
SA
.
Token
"bogus"
)
let
(
admin_user_api_get
:<|>
_
)
=
roots_api
result
<-
runClientM
admin_user_api_get
(
clientEnv
port
)
length
result
`
shouldBe
`
0
describe
"GET /api/v1.0/node"
$
do
it
"returns the old error by default"
$
\
((
_testEnv
,
port
),
app
)
->
do
withApplication
app
$
do
withValidLogin
port
"gargantua"
(
GargPassword
"secret_key"
)
$
\
token
->
do
res
<-
protected
token
"GET"
(
mkUrl
port
"/node/99"
)
""
case
res
of
SResponse
{
..
}
|
Status
{
..
}
<-
simpleStatus
->
liftIO
$
do
statusCode
`
shouldBe
`
404
simpleBody
`
shouldBe
`
[
r
|
{"error":"Node does not exist (nodeId-99)"}
|]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment