summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem_tests.py
blob: 362b85dd99a04f74e5bcf7e2f68a39327837070c (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Copyright (C) 2012  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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import os
import shutil
import tempfile
import unittest

import morphlib


def touch(pathname):
    with open(pathname, 'w'):
        pass


def create_manual_project(srcdir):
    pass


def create_autotools_project(srcdir):
    touch(os.path.join(srcdir, 'configure.in'))


class ManualBuildSystem(unittest.TestCase):

    def setUp(self):
        self.bs = morphlib.buildsystem.ManualBuildSystem()
        self.tempdir = tempfile.mkdtemp()
        
    def tearDown(self):
        shutil.rmtree(self.tempdir)
        
    def test_does_not_autodetect_empty(self):
        create_manual_project(self.tempdir)
        self.assertFalse(self.bs.used_by_project(self.tempdir))
        
    def test_does_not_autodetect_autotools(self):
        create_autotools_project(self.tempdir)
        self.assertFalse(self.bs.used_by_project(self.tempdir))


class AutotoolsBuildSystem(unittest.TestCase):

    def setUp(self):
        self.bs = morphlib.buildsystem.ManualBuildSystem()
        self.tempdir = tempfile.mkdtemp()
        
    def tearDown(self):
        shutil.rmtree(self.tempdir)
        
    def test_does_not_autodetect_empty(self):
        create_manual_project(self.tempdir)
        self.assertFalse(self.bs.used_by_project(self.tempdir))
        
    def test_autodetects_autotools(self):
        create_autotools_project(self.tempdir)
        self.assertFalse(self.bs.used_by_project(self.tempdir))


class DetectBuildSystemTests(unittest.TestCase):

    def setUp(self):
        self.bs = morphlib.buildsystem.ManualBuildSystem()
        self.tempdir = tempfile.mkdtemp()
        
    def tearDown(self):
        shutil.rmtree(self.tempdir)

    def test_autodetects_manual(self):
        create_manual_project(self.tempdir)
        bs = morphlib.buildsystem.detect_build_system(self.tempdir)
        self.assertEqual(type(bs), morphlib.buildsystem.ManualBuildSystem)

    def test_autodetects_autotools(self):
        create_autotools_project(self.tempdir)
        bs = morphlib.buildsystem.detect_build_system(self.tempdir)
        self.assertEqual(type(bs), morphlib.buildsystem.AutotoolsBuildSystem)


class LookupBuildSystemTests(unittest.TestCase):

    def lookup(self, name):
        return morphlib.buildsystem.lookup_build_system(name)

    def test_raises_keyerror_for_unknown_name(self):
        self.assertRaises(KeyError, self.lookup, 'unkonwn')

    def test_looks_up_manual(self):
        self.assertEqual(type(self.lookup('manual')),
                         morphlib.buildsystem.ManualBuildSystem)