~nova-coresec/nova/ppa-lucid

« back to all changes in this revision

Viewing changes to nova/tests/twistd_unittest.py

  • Committer: Soren Hansen
  • Date: 2010-10-20 02:31:51 UTC
  • mfrom: (195.1.88 ubuntu-packaging)
  • Revision ID: soren.hansen@rackspace.com-20101020023151-pzo6st38dd8xdo81
Merge ubuntu packaging branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 
2
 
 
3
# Copyright 2010 United States Government as represented by the
 
4
# Administrator of the National Aeronautics and Space Administration.
 
5
# All Rights Reserved.
 
6
#
 
7
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
8
#    not use this file except in compliance with the License. You may obtain
 
9
#    a copy of the License at
 
10
#
 
11
#         http://www.apache.org/licenses/LICENSE-2.0
 
12
#
 
13
#    Unless required by applicable law or agreed to in writing, software
 
14
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
15
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
16
#    License for the specific language governing permissions and limitations
 
17
#    under the License.
 
18
 
 
19
import StringIO
 
20
import sys
 
21
 
 
22
from nova import twistd
 
23
from nova import exception
 
24
from nova import flags
 
25
from nova import test
 
26
 
 
27
 
 
28
FLAGS = flags.FLAGS
 
29
 
 
30
 
 
31
class TwistdTestCase(test.TrialTestCase):
 
32
    def setUp(self):
 
33
        super(TwistdTestCase, self).setUp()
 
34
        self.Options = twistd.WrapTwistedOptions(twistd.TwistdServerOptions)
 
35
        sys.stdout = StringIO.StringIO()
 
36
 
 
37
    def tearDown(self):
 
38
        super(TwistdTestCase, self).tearDown()
 
39
        sys.stdout = sys.__stdout__
 
40
 
 
41
    def test_basic(self):
 
42
        options = self.Options()
 
43
        argv = options.parseOptions()
 
44
 
 
45
    def test_logfile(self):
 
46
        options = self.Options()
 
47
        argv = options.parseOptions(['--logfile=foo'])
 
48
        self.assertEqual(FLAGS.logfile, 'foo')
 
49
 
 
50
    def test_help(self):
 
51
        options = self.Options()
 
52
        self.assertRaises(SystemExit, options.parseOptions, ['--help'])
 
53
        self.assert_('pidfile' in sys.stdout.getvalue())