passman/test/Spec.hs

69 lines
2.0 KiB
Haskell
Raw Normal View History

2018-12-06 14:31:36 -05:00
{-
passman
2021-01-05 21:08:41 -05:00
Copyright (C) 2018-2021 Jonathan Lamothe
2020-12-14 22:41:24 -05:00
<jonathan@jlamothe.net>
2018-12-06 14:31:36 -05:00
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/>.
-}
module Main where
import Control.Monad (when)
import System.Exit (exitFailure)
import Test.HUnit (errors, failures, runTestTT, Test(TestList))
2018-12-29 12:21:25 -05:00
import qualified Spec.JSON as JSON
2018-12-18 14:04:45 -05:00
import qualified Spec.NewPWData as NewPWData
2018-12-18 14:41:29 -05:00
import qualified Spec.NewPWDatabase as NewPWDatabase
import qualified Spec.NewPWPolicy as NewPWPolicy
import qualified Spec.NewPWSalt as NewPWSalt
2018-12-19 16:45:16 -05:00
import qualified Spec.PWGenerate as PWGenerate
2018-12-24 12:22:54 -05:00
import qualified Spec.PWGetService as PWGetService
2018-12-24 10:53:52 -05:00
import qualified Spec.PWHasService as PWHasService
2018-12-31 14:09:13 -05:00
import qualified Spec.PWRemoveService as PWRemoveService
2018-12-25 15:47:39 -05:00
import qualified Spec.PWSearch as PWSearch
2018-12-24 11:55:49 -05:00
import qualified Spec.PWSetService as PWSetService
2018-12-18 17:56:10 -05:00
import qualified Spec.ValidatePWData as ValidatePWData
2018-12-19 10:36:28 -05:00
import qualified Spec.ValidatePWDatabase as ValidatePWDatabase
2018-12-12 18:41:34 -05:00
import qualified Spec.ValidatePWPolicy as ValidatePWPolicy
2018-12-12 17:38:10 -05:00
main :: IO ()
2018-12-06 14:31:36 -05:00
main = do
counts <- runTestTT tests
when (failures counts > 0 || errors counts > 0)
exitFailure
tests :: Test
2018-12-13 13:23:56 -05:00
tests = TestList
2018-12-18 14:41:29 -05:00
[ NewPWDatabase.tests
, NewPWData.tests
, NewPWPolicy.tests
, NewPWSalt.tests
2018-12-19 10:36:28 -05:00
, ValidatePWDatabase.tests
2018-12-19 16:45:16 -05:00
, ValidatePWData.tests
, ValidatePWPolicy.tests
2018-12-21 17:33:15 -05:00
, PWGenerate.tests
2018-12-24 10:53:52 -05:00
, PWHasService.tests
2018-12-24 11:55:49 -05:00
, PWSetService.tests
2018-12-24 12:22:54 -05:00
, PWGetService.tests
2018-12-25 15:47:39 -05:00
, PWSearch.tests
2018-12-31 14:09:13 -05:00
, PWRemoveService.tests
2018-12-29 12:21:25 -05:00
, JSON.tests
2018-12-13 13:23:56 -05:00
]
2018-12-06 14:31:36 -05:00
--jl