fuel-main/nailgun/nailgun/test/test_keepalive.py

73 lines
2.3 KiB
Python

# Copyright 2013 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# -*- coding: utf-8 -*-
import json
import time
from mock import patch
from nailgun.settings import settings
import nailgun
import nailgun.rpc as rpc
from nailgun.keepalive.watcher import KeepAliveThread
from nailgun.task.manager import DeploymentTaskManager
from nailgun.task.fake import FAKE_THREADS
from nailgun.test.base import BaseHandlers
from nailgun.test.base import reverse
from nailgun.api.models import Cluster, Attributes, Task, Notification, Node
from nailgun.api.models import IPAddr, NetworkGroup, Network
class TestKeepalive(BaseHandlers):
def setUp(self):
super(TestKeepalive, self).setUp()
self.watcher = KeepAliveThread(
interval=2,
timeout=1
)
self.watcher.start()
self.timeout = self.watcher.interval + 10
def tearDown(self):
self.watcher.join()
super(TestKeepalive, self).tearDown()
def check_online(self, node, online):
self.env.refresh_nodes()
return node.online == online
def test_node_becomes_offline(self):
node = self.env.create_node(status="discover",
role="controller",
name="Dead or alive")
self.assertEquals(node.online, True)
self.env.wait_for_true(
self.check_online,
args=[node, False],
timeout=self.timeout)
def test_provisioning_node_not_becomes_offline(self):
node = self.env.create_node(status="provisioning",
role="controller",
name="Dead or alive")
time.sleep(self.watcher.interval + 2)
self.env.refresh_nodes()
self.assertEqual(node.online, True)