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
145
Issues
145
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
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
fd4b99ec
Commit
fd4b99ec
authored
Mar 25, 2025
by
Alfredo Di Napoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Test module for List API
parent
a5b3b3b3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
11 deletions
+39
-11
gargantext.cabal
gargantext.cabal
+2
-0
hie.yaml
hie.yaml
+5
-11
Private.hs
test/Test/API/Private.hs
+3
-0
List.hs
test/Test/API/Private/List.hs
+29
-0
No files found.
gargantext.cabal
View file @
fd4b99ec
...
...
@@ -805,6 +805,7 @@ test-suite garg-test-tasty
other-modules:
CLI.Phylo.Common
Paths_gargantext
Test.API.Private.List
Test.API.Private.Move
Test.API.Private.Remote
Test.API.Private.Share
...
...
@@ -879,6 +880,7 @@ test-suite garg-test-hspec
Test.API.GraphQL
Test.API.Notifications
Test.API.Private
Test.API.Private.List
Test.API.Private.Move
Test.API.Private.Remote
Test.API.Private.Share
...
...
hie.yaml
View file @
fd4b99ec
...
...
@@ -42,6 +42,9 @@ cradle:
-
path
:
"
./bin/gargantext-cli/CLI/Phylo/Profile.hs"
component
:
"
gargantext:exe:gargantext"
-
path
:
"
./bin/gargantext-cli/CLI/Server.hs"
component
:
"
gargantext:exe:gargantext"
-
path
:
"
./bin/gargantext-cli/CLI/Server/Routes.hs"
component
:
"
gargantext:exe:gargantext"
...
...
@@ -51,13 +54,10 @@ cradle:
-
path
:
"
./bin/gargantext-cli/CLI/Upgrade.hs"
component
:
"
gargantext:exe:gargantext"
-
path
:
"
./bin/gargantext-cli/Paths_gargantext.hs"
component
:
"
gargantext:exe:gargantext"
-
path
:
"
./bin/gargantext-server/Main.hs"
-
path
:
"
./bin/gargantext-cli/CLI/Worker.hs"
component
:
"
gargantext:exe:gargantext"
-
path
:
"
./bin/gargantext-
server
/Paths_gargantext.hs"
-
path
:
"
./bin/gargantext-
cli
/Paths_gargantext.hs"
component
:
"
gargantext:exe:gargantext"
-
path
:
"
./test"
...
...
@@ -68,9 +68,3 @@ cradle:
-
path
:
"
./test"
component
:
"
gargantext:test:garg-test-hspec"
-
path
:
"
./bench/Main.hs"
component
:
"
gargantext:bench:garg-bench"
-
path
:
"
./bench/Paths_gargantext.hs"
component
:
"
gargantext:bench:garg-bench"
test/Test/API/Private.hs
View file @
fd4b99ec
...
...
@@ -23,6 +23,7 @@ import Test.API.Private.Move qualified as Move
import
Test.API.Private.Remote
qualified
as
Remote
import
Test.API.Private.Share
qualified
as
Share
import
Test.API.Private.Table
qualified
as
Table
import
Test.API.Private.List
qualified
as
List
import
Test.API.Routes
(
mkUrl
,
get_node
,
get_tree
)
import
Test.API.Setup
(
withTestDBAndPort
,
dbEnvSetup
,
SpecContext
(
..
))
import
Test.Hspec
...
...
@@ -114,3 +115,5 @@ tests = sequential $ do
Move
.
tests
describe
"Remote API"
$
do
Remote
.
tests
describe
"List API"
$
do
List
.
tests
test/Test/API/Private/List.hs
0 → 100644
View file @
fd4b99ec
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
module
Test.API.Private.List
(
tests
)
where
import
Gargantext.Core.Types.Individu
import
Gargantext.Prelude
import
Test.API.Setup
import
Test.Hspec
(
Spec
,
it
,
aroundAll
,
describe
,
sequential
)
import
Test.Hspec.Wai.Internal
(
withApplication
)
import
Test.Utils
tests
::
Spec
tests
=
sequential
$
aroundAll
withTestDBAndPort
$
do
describe
"Prelude"
$
do
it
"setup DB triggers"
$
\
SpecContext
{
..
}
->
do
setupEnvironment
_sctx_env
-- Let's create the Alice user.
void
$
createAliceAndBob
_sctx_env
describe
"Importing terms as TSV"
$
do
it
"should work for the simplest case"
$
\
(
SpecContext
_testEnv
serverPort
app
_
)
->
do
withApplication
app
$
do
withValidLogin
serverPort
"alice"
(
GargPassword
"alice"
)
$
\
_clientEnv
_token
->
do
pure
()
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