summaryrefslogtreecommitdiff
path: root/morphlib/morphologyloader_tests.py
blob: 33528086f5ee366fb440003464074062bdbd53e9 (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  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

import morphlib


class MorphologyLoaderTests(unittest.TestCase):

    def test_load_twice_verify_same_morph_object(self):
        settings = { 'git-base-url': '' }
        loader = morphlib.morphologyloader.MorphologyLoader(settings)
        loader._get_morph_text = self.get_morph_text
        
        class FakeTreeish(object):
            def __init__(self):
                self.original_repo = 'test-repo'
        faketreeish = FakeTreeish()
        
        morph1 = loader.load(faketreeish, 'foo.morph')
        morph2 = loader.load(faketreeish, 'foo.morph')
        self.assertEqual(morph1, morph2)

    def get_morph_text(self, treeish, filename):
        return '''
                {
                    "name": "foo",
                    "kind": "stratum",
                    "sources": [
                        {
                            "name": "bar",
                            "repo": "bar",
                            "ref": "master"
                        }
                    ]
                }'''