36955618ae
Doing this allow for potential importing of the tests and is cleaner than having a side directory. Nova already does this, so let's move. Change-Id: I77fc9c5356f3962363fd355b8dbf44fbeec157ee
171 lines
5.9 KiB
Python
171 lines
5.9 KiB
Python
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright © 2012 eNovance <licensing@enovance.com>
|
|
#
|
|
# Author: Julien Danjou <julien@danjou.info>
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
import shutil
|
|
import signal
|
|
import subprocess
|
|
import threading
|
|
import time
|
|
|
|
import yaml
|
|
|
|
from ceilometer.openstack.common import fileutils
|
|
from ceilometer.openstack.common import test
|
|
from ceilometer import service
|
|
from ceilometer.tests import base
|
|
|
|
|
|
class ServiceTestCase(test.BaseTestCase):
|
|
def test_prepare_service(self):
|
|
service.prepare_service([])
|
|
|
|
|
|
#NOTE(Fengqian): I have to set up a thread to parse the ouput of
|
|
#subprocess.Popen. Because readline() may block the process in
|
|
#some conditions.
|
|
class ParseOutput(threading.Thread):
|
|
def __init__(self, input_stream, str_flag):
|
|
super(ParseOutput, self).__init__()
|
|
self.input_stream = input_stream
|
|
self.str_flag = str_flag
|
|
self.ret_stream = None
|
|
self.ret = False
|
|
self.thread_stop = False
|
|
|
|
def run(self):
|
|
while not self.thread_stop:
|
|
next_line = self.input_stream.readline()
|
|
if next_line == '':
|
|
break
|
|
if self.str_flag in next_line:
|
|
self.ret = True
|
|
self.ret_stream = next_line[(next_line.find(self.str_flag) +
|
|
len(self.str_flag)):]
|
|
self.stop()
|
|
|
|
def stop(self):
|
|
self.thread_stop = True
|
|
|
|
|
|
class ServiceRestartTest(base.BaseTestCase):
|
|
|
|
def setUp(self):
|
|
super(ServiceRestartTest, self).setUp()
|
|
self.pipeline_cfg_file = fileutils.write_to_tempfile(content='',
|
|
prefix='pipeline',
|
|
suffix='.yaml')
|
|
shutil.copy(self.path_get('etc/ceilometer/pipeline.yaml'),
|
|
self.pipeline_cfg_file)
|
|
self.pipelinecfg_read_from_file()
|
|
policy_file = self.path_get('etc/ceilometer/policy.json')
|
|
content = "[DEFAULT]\n"\
|
|
"rpc_backend=ceilometer.openstack.common.rpc.impl_fake\n"\
|
|
"auth_strategy=noauth\n"\
|
|
"debug=true\n"\
|
|
"pipeline_cfg_file={0}\n"\
|
|
"policy_file={1}\n"\
|
|
"[database]\n"\
|
|
"connection=log://localhost\n".format(self.pipeline_cfg_file,
|
|
policy_file)
|
|
|
|
self.tempfile = fileutils.write_to_tempfile(content=content,
|
|
prefix='ceilometer',
|
|
suffix='.conf')
|
|
|
|
def _modify_pipeline_file(self):
|
|
with open(self.pipeline_cfg_file, 'w') as pipe_fd:
|
|
pipe_fd.truncate()
|
|
pipe_fd.write(yaml.safe_dump(self.pipeline_cfg[1]))
|
|
|
|
def pipelinecfg_read_from_file(self):
|
|
with open(self.pipeline_cfg_file) as fd:
|
|
data = fd.read()
|
|
self.pipeline_cfg = yaml.safe_load(data)
|
|
|
|
def tearDown(self):
|
|
super(ServiceRestartTest, self).tearDown()
|
|
self.sub.kill()
|
|
self.sub.wait()
|
|
os.remove(self.pipeline_cfg_file)
|
|
os.remove(self.tempfile)
|
|
|
|
@staticmethod
|
|
def _check_process_alive(pid):
|
|
try:
|
|
with open("/proc/%d/status" % pid) as fd_proc:
|
|
for line in fd_proc.readlines():
|
|
if line.startswith("State:"):
|
|
state = line.split(":", 1)[1].strip().split(' ')[0]
|
|
return state not in ['Z', 'T', 'Z+']
|
|
except IOError:
|
|
return False
|
|
|
|
def check_process_alive(self):
|
|
cond = lambda: self._check_process_alive(self.sub.pid)
|
|
return self._wait(cond, 60)
|
|
|
|
def parse_output(self, str_flag, timeout=3):
|
|
parse = ParseOutput(self.sub.stderr, str_flag)
|
|
parse.start()
|
|
parse.join(timeout)
|
|
parse.stop()
|
|
return parse
|
|
|
|
@staticmethod
|
|
def _wait(cond, timeout):
|
|
start = time.time()
|
|
while not cond():
|
|
if time.time() - start > timeout:
|
|
break
|
|
time.sleep(.1)
|
|
return cond()
|
|
|
|
def _spawn_service(self, cmd, conf_file=None):
|
|
if conf_file is None:
|
|
conf_file = self.tempfile
|
|
self.sub = subprocess.Popen([cmd, '--config-file=%s' % conf_file],
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE)
|
|
#NOTE(Fengqian): Parse the output to see if the service started
|
|
self.assertTrue(self.parse_output("Starting").ret)
|
|
self.check_process_alive()
|
|
|
|
def _service_restart(self, cmd):
|
|
self._spawn_service(cmd)
|
|
|
|
self.assertTrue(self.sub.pid)
|
|
#NOTE(Fengqian): Modify the pipleline configure file to see
|
|
#if the file is reloaded correctly.
|
|
self._modify_pipeline_file()
|
|
self.pipelinecfg_read_from_file()
|
|
os.kill(self.sub.pid, signal.SIGHUP)
|
|
|
|
self.assertTrue(self.check_process_alive())
|
|
self.assertTrue(self.parse_output("Caught SIGHUP").ret)
|
|
self.assertEqual(self.pipeline_cfg,
|
|
yaml.safe_load(
|
|
self.parse_output("Pipeline config: ").ret_stream))
|
|
|
|
def test_compute_service_restart(self):
|
|
self._service_restart('ceilometer-agent-compute')
|
|
|
|
def test_central_service_restart(self):
|
|
self._service_restart('ceilometer-agent-central')
|