Esempio n. 1
0
    def perspective_node_verify(params):
        """Run a verify sequence on this node.

    """
        (what, cluster_name, hvparams, node_groups, groups_cfg) = params
        return backend.VerifyNode(what, cluster_name, hvparams, node_groups,
                                  groups_cfg)
Esempio n. 2
0
 def testMasterIPLocalhost(self):
   # this a real functional test, but requires localhost to be reachable
   local_data = (netutils.Hostname.GetSysName(),
                 constants.IP4_ADDRESS_LOCALHOST)
   result = backend.VerifyNode({constants.NV_MASTERIP: local_data},
                               None, {}, {}, {})
   self.failUnless(constants.NV_MASTERIP in result,
                   "Master IP data not returned")
   self.failUnless(result[constants.NV_MASTERIP], "Cannot reach localhost")
Esempio n. 3
0
 def testMasterIPUnreachable(self):
   # Network 192.0.2.0/24 is reserved for test/documentation as per
   # RFC 5737
   bad_data =  ("master.example.com", "192.0.2.1")
   # we just test that whatever TcpPing returns, VerifyNode returns too
   netutils.TcpPing = lambda a, b, source=None: False
   result = backend.VerifyNode({constants.NV_MASTERIP: bad_data},
                               None, {}, {}, {})
   self.failUnless(constants.NV_MASTERIP in result,
                   "Master IP data not returned")
   self.failIf(result[constants.NV_MASTERIP],
               "Result from netutils.TcpPing corrupted")