Statistics
| Branch: | Tag: | Revision:

root / test / hs / Test / Ganeti / Rpc.hs @ efa6dd08

History | View | Annotate | Download (2.7 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, 2013 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.Rpc (testRpc) where
30

    
31
import Test.QuickCheck
32
import Test.QuickCheck.Monadic (monadicIO, run, stop)
33

    
34
import Control.Applicative
35
import qualified Data.Map as Map
36

    
37
import Test.Ganeti.TestHelper
38
import Test.Ganeti.TestCommon
39
import Test.Ganeti.Objects ()
40

    
41
import qualified Ganeti.Rpc as Rpc
42
import qualified Ganeti.Objects as Objects
43

    
44
instance Arbitrary Rpc.RpcCallAllInstancesInfo where
45
  arbitrary = Rpc.RpcCallAllInstancesInfo <$> arbitrary
46

    
47
instance Arbitrary Rpc.RpcCallInstanceList where
48
  arbitrary = Rpc.RpcCallInstanceList <$> arbitrary
49

    
50
instance Arbitrary Rpc.RpcCallNodeInfo where
51
  arbitrary = Rpc.RpcCallNodeInfo <$> arbitrary <*> arbitrary <*>
52
                pure Map.empty
53

    
54
-- | Monadic check that, for an offline node and a call that does not
55
-- offline nodes, we get a OfflineNodeError response.
56
-- FIXME: We need a way of generalizing this, running it for
57
-- every call manually will soon get problematic
58
prop_noffl_request_allinstinfo :: Rpc.RpcCallAllInstancesInfo -> Property
59
prop_noffl_request_allinstinfo call =
60
  forAll (arbitrary `suchThat` Objects.nodeOffline) $ \node -> monadicIO $ do
61
      res <- run $ Rpc.executeRpcCall [node] call
62
      stop $ res ==? [(node, Left Rpc.OfflineNodeError)]
63

    
64
prop_noffl_request_instlist :: Rpc.RpcCallInstanceList -> Property
65
prop_noffl_request_instlist call =
66
  forAll (arbitrary `suchThat` Objects.nodeOffline) $ \node -> monadicIO $ do
67
      res <- run $ Rpc.executeRpcCall [node] call
68
      stop $ res ==? [(node, Left Rpc.OfflineNodeError)]
69

    
70
prop_noffl_request_nodeinfo :: Rpc.RpcCallNodeInfo -> Property
71
prop_noffl_request_nodeinfo call =
72
  forAll (arbitrary `suchThat` Objects.nodeOffline) $ \node -> monadicIO $ do
73
      res <- run $ Rpc.executeRpcCall [node] call
74
      stop $ res ==? [(node, Left Rpc.OfflineNodeError)]
75

    
76
testSuite "Rpc"
77
  [ 'prop_noffl_request_allinstinfo
78
  , 'prop_noffl_request_instlist
79
  , 'prop_noffl_request_nodeinfo
80
  ]