summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem_tests.py
blob: e834fd3f60aa192a052f54ffe2165bbb1eebd8a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright (C) 2012-2015  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program.  If not, see <http://www.gnu.org/licenses/>.


import unittest

import morphlib


class BuildSystemTests(unittest.TestCase):

    def setUp(self):
        self.bs = morphlib.buildsystem.BuildSystem()

    def test_has_configure_commands(self):
        self.assertEqual(self.bs['configure-commands'], [])

    def test_has_build_commands(self):
        self.assertEqual(self.bs['build-commands'], [])

    def test_has_test_commands(self):
        self.assertEqual(self.bs['test-commands'], [])

    def test_has_install_commands(self):
        self.assertEqual(self.bs['install-commands'], [])

    def test_returns_morphology(self):
        self.bs.name = 'fake'
        morph = self.bs.get_morphology('foobar')
        self.assertTrue(morph.__class__.__name__ == 'Morphology')

    def test_construct_from_dict(self):
        '''Test parsing a dict of information from a DEFAULTS file.'''

        commands_dict = {
             'configure-commands': 'foo'
        }
        self.bs.from_dict('test', commands_dict)
        self.assertEqual(self.bs.configure_commands, 'foo')