Statistics
| Branch: | Tag: | Revision:

root / htest / Test / Ganeti / Jobs.hs @ 63b068c1

History | View | Annotate | Download (1.6 kB)

1
{-# LANGUAGE TemplateHaskell #-}
2
{-# OPTIONS_GHC -fno-warn-orphans #-}
3

    
4
{-| Unittests for ganeti-htools.
5

    
6
-}
7

    
8
{-
9

    
10
Copyright (C) 2009, 2010, 2011, 2012 Google Inc.
11

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

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

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

    
27
-}
28

    
29
module Test.Ganeti.Jobs (testJobs) where
30

    
31
import Test.QuickCheck
32

    
33
import Test.Ganeti.TestHelper
34
import Test.Ganeti.TestCommon
35

    
36
import qualified Ganeti.Jobs as Jobs
37

    
38
-- * Arbitrary instances
39

    
40
instance Arbitrary Jobs.OpStatus where
41
  arbitrary = elements [minBound..maxBound]
42

    
43
instance Arbitrary Jobs.JobStatus where
44
  arbitrary = elements [minBound..maxBound]
45

    
46
-- * Test cases
47

    
48
-- | Check that (queued) job\/opcode status serialization is idempotent.
49
prop_OpStatus_serialization :: Jobs.OpStatus -> Property
50
prop_OpStatus_serialization = testSerialisation
51

    
52
prop_JobStatus_serialization :: Jobs.JobStatus -> Property
53
prop_JobStatus_serialization = testSerialisation
54

    
55
testSuite "Jobs"
56
            [ 'prop_OpStatus_serialization
57
            , 'prop_JobStatus_serialization
58
            ]