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
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Julien Moutinho
haskell-gargantext
Commits
b3cff82c
Commit
b3cff82c
authored
Jul 17, 2020
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Tests] crypto tests added
parent
0d2607c3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
79 additions
and
4 deletions
+79
-4
package.yaml
package.yaml
+1
-0
Distance.hs
src-test/Graph/Distance.hs
+28
-0
Main.hs
src-test/Main.hs
+3
-1
Crypto.hs
src-test/Utils/Crypto.hs
+44
-0
Utils.hs
src/Gargantext/Prelude/Utils.hs
+3
-3
No files found.
package.yaml
View file @
b3cff82c
...
@@ -56,6 +56,7 @@ library:
...
@@ -56,6 +56,7 @@ library:
-
Gargantext.Database.Admin.Types.Hyperdata
-
Gargantext.Database.Admin.Types.Hyperdata
-
Gargantext.Database.Admin.Types.Node
-
Gargantext.Database.Admin.Types.Node
-
Gargantext.Prelude
-
Gargantext.Prelude
-
Gargantext.Prelude.Utils
-
Gargantext.Text
-
Gargantext.Text
-
Gargantext.Text.Context
-
Gargantext.Text.Context
-
Gargantext.Text.Corpus.Parsers
-
Gargantext.Text.Corpus.Parsers
...
...
src-test/Graph/Distance.hs
0 → 100644
View file @
b3cff82c
{-|
Module : Graph.Distance
Description :
Copyright : (c) CNRS, 2017-Present
License : AGPL + CECILL v3
Maintainer : team@gargantext.org
Stability : experimental
Portability : POSIX
Here is a longer description of this module, containing some
commentary with @some markup@.
-}
module
Graph.Distance
where
import
Test.Hspec
import
Gargantext.Viz.Graph.Distances.Matrice
import
Gargantext.Prelude
test
::
IO
()
test
=
hspec
$
do
describe
"Cross"
$
do
let
result
=
cross'
$
matrix
3
([
1
,
1
..
]
::
[
Double
])
it
"compare"
$
do
shouldBe
result
(
matrix
3
([
2
,
2
..
]
::
[
Double
]))
src-test/Main.hs
View file @
b3cff82c
...
@@ -17,6 +17,7 @@ import qualified Ngrams.Lang.Occurrences as Occ
...
@@ -17,6 +17,7 @@ import qualified Ngrams.Lang.Occurrences as Occ
import
qualified
Ngrams.Metrics
as
Metrics
import
qualified
Ngrams.Metrics
as
Metrics
import
qualified
Parsers.Date
as
PD
import
qualified
Parsers.Date
as
PD
import
qualified
Graph.Distance
as
GD
import
qualified
Graph.Distance
as
GD
import
qualified
Utils.Crypto
as
Crypto
main
::
IO
()
main
::
IO
()
main
=
do
main
=
do
...
@@ -25,4 +26,5 @@ main = do
...
@@ -25,4 +26,5 @@ main = do
-- Lang.ngramsExtractionTest EN
-- Lang.ngramsExtractionTest EN
-- Metrics.main
-- Metrics.main
PD
.
testFromRFC3339
PD
.
testFromRFC3339
GD
.
test
-- GD.test
Crypto
.
test
src-test/Utils/Crypto.hs
0 → 100644
View file @
b3cff82c
{-|
Module : Utils.Crypto
Description :
Copyright : (c) CNRS, 2017-Present
License : AGPL + CECILL v3
Maintainer : team@gargantext.org
Stability : experimental
Portability : POSIX
-}
module
Utils.Crypto
where
import
Data.Text
(
Text
)
import
Test.Hspec
import
Gargantext.Prelude
import
Gargantext.Prelude.Utils
-- | Crypto Hash tests
test
::
IO
()
test
=
hspec
$
do
describe
"Hash String with frontend works"
$
do
let
text
=
"To hash with backend"
::
Text
let
hashed
=
"8a69a94d164279af2b7d1443ce08da6184b3d7e815406076e148159c284b53c3"
::
Hash
-- ^ hash from fronted with text above
it
"compare"
$
do
hash
text
`
shouldBe
`
hashed
describe
"Hash List with backend works"
$
do
let
list
=
[
"a"
,
"b"
]
::
[
Text
]
let
hashed
=
"ab19ec537f09499b26f0f62eed7aefad46ab9f498e06a7328ce8e8ef90da6d86"
::
Hash
-- ^ hash from frontend with text above
it
"compare"
$
do
hash
list
`
shouldBe
`
hashed
------------------------------------------------------------------------
-- | TODO property based tests
describe
"Hash works with any order of list"
$
do
let
hash1
=
hash
([
"a"
,
"b"
]
::
[
Text
])
let
hash2
=
hash
([
"b"
,
"a"
]
::
[
Text
])
it
"compare"
$
do
hash1
`
shouldBe
`
hash2
src/Gargantext/Prelude/Utils.hs
View file @
b3cff82c
...
@@ -54,7 +54,7 @@ instance IsHashable Char.ByteString where
...
@@ -54,7 +54,7 @@ instance IsHashable Char.ByteString where
.
SHA
.
showDigest
.
SHA
.
showDigest
.
SHA
.
sha256
.
SHA
.
sha256
instance
IsHashable
String
where
instance
{-# OVERLAPPING #-}
IsHashable
String
where
hash
=
hash
.
Char
.
pack
hash
=
hash
.
Char
.
pack
instance
IsHashable
Text
where
instance
IsHashable
Text
where
...
@@ -63,8 +63,8 @@ instance IsHashable Text where
...
@@ -63,8 +63,8 @@ instance IsHashable Text where
instance
IsHashable
(
Set
Hash
)
where
instance
IsHashable
(
Set
Hash
)
where
hash
=
hash
.
foldl
(
<>
)
""
.
Set
.
toList
hash
=
hash
.
foldl
(
<>
)
""
.
Set
.
toList
instance
IsHashable
[
Hash
]
where
instance
{-# OVERLAPPABLE #-}
IsHashable
a
=>
IsHashable
[
a
]
where
hash
=
hash
.
Set
.
fromList
hash
=
hash
.
Set
.
fromList
.
map
hash
--------------------------------------------------------------------------
--------------------------------------------------------------------------
data
NodeToHash
=
NodeToHash
{
nodeType
::
NodeType
data
NodeToHash
=
NodeToHash
{
nodeType
::
NodeType
...
...
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