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
e02bb62d
Commit
e02bb62d
authored
Mar 17, 2025
by
Alfredo Di Napoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more tests for the move API
parent
7f759ab4
Pipeline
#7454
passed with stages
in 49 minutes and 48 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
+37
-3
Prelude.hs
test/Test/API/Prelude.hs
+23
-3
Move.hs
test/Test/API/Private/Move.hs
+14
-0
No files found.
test/Test/API/Prelude.hs
View file @
e02bb62d
...
...
@@ -5,6 +5,7 @@ module Test.API.Prelude
,
newPrivateFolderForUser
,
newPublicFolderForUser
,
newFolderForUser
,
addFolderForUser
,
getRootPublicFolderIdForUser
,
getRootPrivateFolderIdForUser
,
myUserNodeId
...
...
@@ -16,11 +17,13 @@ import Data.Aeson qualified as JSON
import
Data.Text
qualified
as
T
import
Gargantext.API.Errors
import
Gargantext.Core.Types.Individu
import
Gargantext.Core.Types
(
NodeId
,
NodeType
(
..
))
import
Gargantext.Core.Types
(
NodeId
,
NodeType
(
..
)
,
ParentId
)
import
Gargantext.Core.Worker.Env
()
-- instance HasNodeError
import
Gargantext.Database.Action.User
import
Gargantext.Database.Admin.Types.Hyperdata.Corpus
import
Gargantext.Database.Prelude
import
Gargantext.Database.Query.Table.Node
import
Gargantext.Database.Query.Table.Node.Error
import
Gargantext.Database.Query.Table.Node.User
(
getUserByName
)
import
Gargantext.Database.Query.Tree.Root
import
Gargantext.Database.Schema.Node
(
_node_id
)
...
...
@@ -41,11 +44,28 @@ newCorpusForUser env uname = flip runReaderT env $ runTestMonad $ do
(
corpusId
:
_
)
<-
mk
(
Just
corpusName
)
(
Nothing
::
Maybe
HyperdataCorpus
)
parentId
uid
pure
corpusId
-- | Creates a new folder for the input user, nested under the given 'ParentId', if given.
newFolderForUser'
::
HasNodeError
err
=>
User
->
T
.
Text
->
ParentId
->
DBCmd
err
NodeId
newFolderForUser'
ur
folderName
parentId
=
do
uid
<-
getUserId
ur
insertNode
NodeFolder
(
Just
folderName
)
Nothing
parentId
uid
addFolderForUser
::
TestEnv
->
User
->
T
.
Text
->
ParentId
->
IO
NodeId
addFolderForUser
env
ur
folderName
parentId
=
flip
runReaderT
env
$
runTestMonad
$
do
newFolderForUser'
ur
folderName
parentId
newFolderForUser
::
TestEnv
->
T
.
Text
->
T
.
Text
->
IO
NodeId
newFolderForUser
env
uname
folderName
=
flip
runReaderT
env
$
runTestMonad
$
do
uid
<-
getUserId
(
UserName
uname
)
parentId
<-
getRootId
(
UserName
uname
)
insertNode
NodeFolder
(
Just
folderName
)
Nothing
parentId
ui
d
newFolderForUser'
(
UserName
uname
)
folderName
parentI
d
-- | Generate a 'Node' where we can append more data into, a bit reminiscent to the
-- \"Private\" root node we use in the real Gargantext.
...
...
test/Test/API/Private/Move.hs
View file @
e02bb62d
...
...
@@ -29,6 +29,20 @@ tests = sequential $ aroundAll withTestDBAndPort $ do
-- Let's create the Alice user.
void
$
createAliceAndBob
_sctx_env
describe
"Moving a node"
$
do
describe
"private to private moves"
$
do
it
"should allow moving one folder into another"
$
\
(
SpecContext
testEnv
serverPort
app
_
)
->
do
withApplication
app
$
do
withValidLogin
serverPort
"alice"
(
GargPassword
"alice"
)
$
\
clientEnv
token
->
liftIO
$
do
aliceRoot
<-
getRootPrivateFolderIdForUser
testEnv
(
UserName
"alice"
)
child1
<-
addFolderForUser
testEnv
(
UserName
"alice"
)
"child1"
aliceRoot
child2
<-
addFolderForUser
testEnv
(
UserName
"alice"
)
"child2"
aliceRoot
-- Test that moving child1 into child2 works.
res
<-
checkEither
$
runClientM
(
move_node
token
(
SourceId
child2
)
(
TargetId
child1
))
clientEnv
res
`
shouldBe
`
[
child2
]
describe
"Publishing a Corpus"
$
do
it
"should forbid moving a corpus node into another user Public folder"
$
\
(
SpecContext
testEnv
serverPort
app
_
)
->
do
...
...
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