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
5
Merge Requests
5
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
047df32b
Commit
047df32b
authored
Mar 10, 2025
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/adinapoli/test-ctrl-c-properly' into dev
parents
f71f36c3
1ad17efd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
12 deletions
+23
-12
gargantext.cabal
gargantext.cabal
+3
-1
Main.hs
test/drivers/hspec/Main.hs
+20
-11
No files found.
gargantext.cabal
View file @
047df32b
...
@@ -865,7 +865,9 @@ test-suite garg-test-hspec
...
@@ -865,7 +865,9 @@ test-suite garg-test-hspec
, commonTestDependencies
, commonTestDependencies
type: exitcode-stdio-1.0
type: exitcode-stdio-1.0
main-is: drivers/hspec/Main.hs
main-is: drivers/hspec/Main.hs
build-depends: process ^>= 1.6.18.0
build-depends:
process ^>= 1.6.18.0
, unix >= 2.7.3 && < 2.9
other-modules:
other-modules:
Paths_gargantext
Paths_gargantext
Test.API
Test.API
...
...
test/drivers/hspec/Main.hs
View file @
047df32b
...
@@ -6,9 +6,10 @@ import Control.Monad
...
@@ -6,9 +6,10 @@ import Control.Monad
import
Data.Text
(
isInfixOf
)
import
Data.Text
(
isInfixOf
)
import
Data.Text
qualified
as
T
import
Data.Text
qualified
as
T
import
Gargantext.Prelude
hiding
(
isInfixOf
)
import
Gargantext.Prelude
hiding
(
isInfixOf
)
import
Shelly
hiding
(
FilePath
)
import
System.IO
import
System.IO
import
System.Process
import
System.Process
import
System.Posix.Process
import
System.Posix.Signals
import
Test.API
qualified
as
API
import
Test.API
qualified
as
API
import
Test.Database.Operations
qualified
as
DB
import
Test.Database.Operations
qualified
as
DB
import
Test.Hspec
import
Test.Hspec
...
@@ -21,7 +22,13 @@ startCoreNLPServer = do
...
@@ -21,7 +22,13 @@ startCoreNLPServer = do
devNull
<-
openFile
"/dev/null"
WriteMode
devNull
<-
openFile
"/dev/null"
WriteMode
let
p
=
proc
"./startServer.sh"
[]
let
p
=
proc
"./startServer.sh"
[]
(
_
,
_
,
_
,
hdl
)
<-
(
createProcess
$
p
{
cwd
=
Just
"devops/coreNLP/stanford-corenlp-current"
(
_
,
_
,
_
,
hdl
)
<-
(
createProcess
$
p
{
cwd
=
Just
"devops/coreNLP/stanford-corenlp-current"
,
delegate_ctlc
=
True
-- NOTE(adn) Issue #451, this one has to stay disabled, because if we
-- turn it on, despite the confusing documentation on the `process` library
-- it will cause the Haskell RTS to completely ignore the Ctrl^c and instead
-- delegate it exclusively to the process here, which means that our CoreNLP
-- server will shut down correctly, but the test running will stop responding
-- to Ctrl^C requests.
,
delegate_ctlc
=
False
,
create_group
=
True
,
create_group
=
True
,
std_out
=
UseHandle
devNull
,
std_out
=
UseHandle
devNull
,
std_err
=
UseHandle
devNull
,
std_err
=
UseHandle
devNull
...
@@ -34,12 +41,14 @@ startCoreNLPServer = do
...
@@ -34,12 +41,14 @@ startCoreNLPServer = do
|
otherwise
->
throwIO
e
|
otherwise
->
throwIO
e
pure
hdl
pure
hdl
stopCoreNLPServer
::
ProcessHandle
->
IO
()
killProcessTree
::
ProcessHandle
->
IO
()
stopCoreNLPServer
ph
=
do
killProcessTree
ph
=
do
putText
"calling stop core nlp"
pid
<-
getPid
ph
interruptProcessGroupOf
ph
case
pid
of
putText
"calling stop core nlp - done"
Nothing
->
putText
"Process already terminated"
Just
p
->
do
pgid
<-
getProcessGroupIDOf
p
signalProcessGroup
keyboardSignal
pgid
-- It's especially important to use Hspec for DB tests, because,
-- It's especially important to use Hspec for DB tests, because,
-- unlike 'tasty', 'Hspec' has explicit control over parallelism,
-- unlike 'tasty', 'Hspec' has explicit control over parallelism,
...
@@ -55,9 +64,9 @@ stopCoreNLPServer ph = do
...
@@ -55,9 +64,9 @@ stopCoreNLPServer ph = do
main
::
IO
()
main
::
IO
()
main
=
do
main
=
do
hSetBuffering
stdout
NoBuffering
hSetBuffering
stdout
NoBuffering
-- TODO Ideally remove start/stop notifications and use
bracket
startCoreNLPServer
killProcessTree
(
const
run_tests
)
-- Test/API/Setup to initialize this in env
where
bracket
startCoreNLPServer
stopCoreNLPServer
$
\
_
->
hspec
$
sequential
$
do
run_tests
=
hspec
$
sequential
$
do
API
.
tests
API
.
tests
ReverseProxy
.
tests
ReverseProxy
.
tests
DB
.
tests
DB
.
tests
...
...
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