2018-12-17 16:09:40 -05:00
|
|
|
{-
|
|
|
|
|
|
|
|
passman
|
2020-12-14 22:10:14 -05:00
|
|
|
Copyright (C) 2018-2020 Jonathan Lamothe
|
2018-12-17 16:09:40 -05:00
|
|
|
<jlamothe1980@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this program. If not, see
|
|
|
|
<https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-}
|
|
|
|
|
2018-12-18 14:19:19 -05:00
|
|
|
module Spec.NewPWSalt (tests) where
|
2018-12-17 16:09:40 -05:00
|
|
|
|
2018-12-20 22:21:36 -05:00
|
|
|
import qualified Data.ByteString.Lazy as B
|
2018-12-17 16:09:40 -05:00
|
|
|
import System.Random (mkStdGen)
|
2018-12-17 20:20:08 -05:00
|
|
|
import Test.HUnit (Test(..), assertBool, (~?=))
|
2018-12-17 16:09:40 -05:00
|
|
|
|
|
|
|
import Password
|
|
|
|
|
2020-02-28 01:23:44 -05:00
|
|
|
tests :: Test
|
2018-12-18 14:19:19 -05:00
|
|
|
tests = TestLabel "newPWSalt" $ TestList
|
2018-12-17 20:20:08 -05:00
|
|
|
[ testLength salt
|
|
|
|
, testDiff salt salt'
|
|
|
|
] where
|
2018-12-18 14:19:19 -05:00
|
|
|
(salt, g') = newPWSalt g
|
|
|
|
(salt', _) = newPWSalt g'
|
2018-12-17 20:20:08 -05:00
|
|
|
g = mkStdGen 1
|
|
|
|
|
2020-02-28 01:23:44 -05:00
|
|
|
testLength :: PWSalt -> Test
|
|
|
|
testLength x = TestLabel "salt length" $
|
|
|
|
B.length (runPWSalt x) ~?= 32
|
2018-12-17 20:20:08 -05:00
|
|
|
|
2020-02-28 01:23:44 -05:00
|
|
|
testDiff :: PWSalt -> PWSalt -> Test
|
|
|
|
testDiff x y = TestLabel "different salts" $ TestCase $
|
2018-12-17 20:20:08 -05:00
|
|
|
assertBool "salts match" $ x /= y
|
2018-12-17 16:09:40 -05:00
|
|
|
|
|
|
|
--jl
|