summaryrefslogtreecommitdiff
path: root/morphlib/morph2_tests.py
blob: 609175376716b708444f49282d0fde776d4689eb (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# 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 unittest

from morphlib.morph2 import Morphology


class MorphologyTests(unittest.TestCase):

    def test_parses_simple_chunk(self):
        m = Morphology('''
            {
                "name": "foo",
                "kind": "chunk",
                "build-system": "manual"
            }
        ''')

        self.assertEqual(m['name'], 'foo')
        self.assertEqual(m['kind'], 'chunk')
        self.assertEqual(m['build-system'], 'manual')
        self.assertEqual(m['configure-commands'], None)
        self.assertEqual(m['build-commands'], None)
        self.assertEqual(m['test-commands'], None)
        self.assertEqual(m['install-commands'], None)
        self.assertEqual(m['max-jobs'], None)
        self.assertEqual(m['chunks'], [])

    def test_sets_stratum_chunks_repo_and_morph_from_name(self):
        m = Morphology('''
            {
                "name": "foo",
                "kind": "stratum",
                "chunks": [
                    {
                        "name": "le-chunk",
                        "ref": "ref"
                    }
                ]
            }
        ''')

        self.assertEqual(m['chunks'][0]['repo'], 'le-chunk')
        self.assertEqual(m['chunks'][0]['morph'], 'le-chunk')
        self.assertEqual(m['chunks'][0]['build-depends'], None)

    def test_parses_system_disk_size(self):
        m = Morphology('''
            {
                "name": "foo",
                "kind": "system",
                "disk-size": "1g"
            }
        ''')

        self.assertEqual(m['disk-size'], 1024 ** 3)

    def test_returns_dict_keys(self):
        m = Morphology('''
            {
                "name": "foo",
                "kind": "system",
                "disk-size": "1g"
            }
        ''')

        self.assertTrue('name' in m.keys())
        self.assertTrue('kind' in m.keys())
        self.assertTrue('disk-size' in m.keys())

    def test_system_indexes_strata(self):
        m = Morphology('''
            {
                "kind": "system",
                "strata": [
                    {
                        "morph": "stratum1",
                        "repo": "repo",
                        "ref": "ref"
                    },
                    {
                        "alias": "aliased-stratum",
                        "morph": "stratum2",
                        "repo": "repo",
                        "ref": "ref"
                    }
                ]
            }
        ''')
        self.assertEqual(m.lookup_child_by_name('stratum1'),
                         {'morph': 'stratum1', 'repo': 'repo', 'ref': 'ref' })
        self.assertEqual(m.lookup_child_by_name('aliased-stratum'),
                         {'alias': 'aliased-stratum', 'morph': 'stratum2',
                          'repo': 'repo', 'ref': 'ref'})

    def test_stratum_indexes_chunks(self):
        m = Morphology('''
            {
                "kind": "stratum",
                "chunks": [
                    {
                        "name": "chunk",
                        "repo": "repo",
                        "ref": "ref"
                    }
                ]
            }
        ''')

        child = m.lookup_child_by_name('chunk')
        self.assertEqual(child['name'], 'chunk')
        self.assertEqual(child['repo'], 'repo')
        self.assertEqual(child['ref'], 'ref')

    def test_raises_error_when_child_lookup_fails(self):
        m = Morphology('''
            {
                "kind": "stratum",
                "chunks": [
                    {
                        "name": "chunk",
                        "repo": "repo",
                        "ref": "ref"
                    }
                ]
            }
        ''')

        self.assertRaises(KeyError, m.lookup_child_by_name, 'foo')

    ## Validation tests

    def test_makes_max_jobs_be_an_integer(self):
        m = Morphology('''
            {
                "name": "foo",
                "kind": "chunk",
                "max-jobs": "42"
            }
        ''')
        self.assertEqual(m['max-jobs'], 42)

    def test_stratum_names_must_be_unique_within_a_system(self):
        text = '''
            {
                "kind": "system",
                "strata": [
                    {
                        "morph": "stratum",
                        "repo": "test1",
                        "ref": "ref"
                    },
                    {
                        "morph": "stratum",
                        "repo": "test2",
                        "ref": "ref"
                    }
                ]
            }
        '''
        self.assertRaises(ValueError,
                          Morphology,
                          text)

    def test_chunk_names_must_be_unique_within_a_stratum(self):
        text = '''
            {
                "kind": "stratum",
                "chunks": [
                    {
                        "name": "chunk",
                        "repo": "test1",
                        "ref": "ref"
                    },
                    {
                        "name": "chunk",
                        "repo": "test2",
                        "ref": "ref"
                    }
                ]
            }
        '''
        self.assertRaises(ValueError,
                          Morphology,
                          text)