docs: fix issues
[parser.git] / tosca2heat / tosca-parser-0.3.0 / toscaparser / tests / base.py
1 # -*- coding: utf-8 -*-
2
3 # Copyright 2010-2011 OpenStack Foundation
4 # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License"); you may
7 # not use this file except in compliance with the License. You may obtain
8 # a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 # License for the specific language governing permissions and limitations
16 # under the License.
17
18 import os
19
20 import fixtures
21 import testscenarios
22 import testtools
23
24 from toscaparser.tosca_template import ToscaTemplate
25
26 _TRUE_VALUES = ('True', 'true', '1', 'yes')
27
28
29 class TestCase(testscenarios.TestWithScenarios, testtools.TestCase):
30
31     """Test case base class for all unit tests."""
32
33     def setUp(self):
34         """Run before each test method to initialize test environment."""
35
36         super(TestCase, self).setUp()
37         test_timeout = os.environ.get('OS_TEST_TIMEOUT', 0)
38         try:
39             test_timeout = int(test_timeout)
40         except ValueError:
41             # If timeout value is invalid do not set a timeout.
42             test_timeout = 0
43         if test_timeout > 0:
44             self.useFixture(fixtures.Timeout(test_timeout, gentle=True))
45
46         self.useFixture(fixtures.NestedTempfile())
47         self.useFixture(fixtures.TempHomeDir())
48
49         if os.environ.get('OS_STDOUT_CAPTURE') in _TRUE_VALUES:
50             stdout = self.useFixture(fixtures.StringStream('stdout')).stream
51             self.useFixture(fixtures.MonkeyPatch('sys.stdout', stdout))
52         if os.environ.get('OS_STDERR_CAPTURE') in _TRUE_VALUES:
53             stderr = self.useFixture(fixtures.StringStream('stderr')).stream
54             self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr))
55
56         self.log_fixture = self.useFixture(fixtures.FakeLogger())
57
58     def _load_template(self, filename):
59         """Load a Tosca template from tests data folder.
60
61         :param filename: Tosca template file name to load.
62         :return: ToscaTemplate
63         """
64         return ToscaTemplate(os.path.join(
65             os.path.dirname(os.path.abspath(__file__)),
66             'data',
67             filename))