Statistics
| Branch: | Tag: | Revision:

root / test.hs @ 3fea6959

History | View | Annotate | Download (2.2 kB)

1
{-| Unittest runner for ganeti-htools
2

    
3
-}
4

    
5
{-
6

    
7
Copyright (C) 2009 Google Inc.
8

    
9
This program is free software; you can redistribute it and/or modify
10
it under the terms of the GNU General Public License as published by
11
the Free Software Foundation; either version 2 of the License, or
12
(at your option) any later version.
13

    
14
This program is distributed in the hope that it will be useful, but
15
WITHOUT ANY WARRANTY; without even the implied warranty of
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
General Public License for more details.
18

    
19
You should have received a copy of the GNU General Public License
20
along with this program; if not, write to the Free Software
21
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22
02110-1301, USA.
23

    
24
-}
25

    
26
module Main(main) where
27

    
28
import Data.IORef
29
import Test.QuickCheck.Batch
30
import System.IO
31
import System.Exit
32

    
33
import Ganeti.HTools.QC
34

    
35
fastOptions :: TestOptions
36
fastOptions = TestOptions
37
              { no_of_tests         = 500
38
              , length_of_tests     = 10
39
              , debug_tests         = False }
40

    
41
slowOptions :: TestOptions
42
slowOptions = TestOptions
43
              { no_of_tests         = 50
44
              , length_of_tests     = 100
45
              , debug_tests         = False }
46

    
47
incIORef :: IORef Int -> IO ()
48
incIORef ir = atomicModifyIORef ir (\x -> (x + 1, ()))
49

    
50
-- | Wrapper over a test runner with error counting
51
wrapTest :: IORef Int
52
         -> (TestOptions -> IO TestResult)
53
         -> TestOptions -> IO TestResult
54
wrapTest ir t to = do
55
    tr <- t to
56
    case tr of
57
      TestFailed _ _ -> incIORef ir
58
      TestAborted _ -> incIORef ir
59
      _ -> return ()
60
    return tr
61

    
62
main :: IO ()
63
main = do
64
  errs <- newIORef 0
65
  let wrap = map (wrapTest errs)
66
  runTests "PeerMap" fastOptions $ wrap testPeerMap
67
  runTests "Container" fastOptions $ wrap testContainer
68
  runTests "Instance" fastOptions $ wrap testInstance
69
  runTests "Node" fastOptions $ wrap testNode
70
  runTests "Text" fastOptions $ wrap testText
71
  runTests "Cluster" slowOptions $ wrap testCluster
72
  terr <- readIORef errs
73
  (if terr > 0
74
   then do
75
     hPutStrLn stderr $ "A total of " ++ show terr ++ " tests failed."
76
     exitWith $ ExitFailure 1
77
   else putStrLn "All tests succeeded.")