summaryrefslogtreecommitdiff
path: root/morphlib/source_tests.py
blob: 4f6006e932c6e4ee5a8fee329e45ef23a1068807 (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
# 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 SourceTests(unittest.TestCase):

    morphology_text = '''
            name: foo
            kind: chunk
    '''

    def setUp(self):
        self.repo_name = 'foo.repo'
        self.original_ref = 'original/ref'
        self.sha1 = 'CAFEF00D'
        self.tree = 'F000000D'
        loader = morphlib.morphloader.MorphologyLoader()
        self.morphology = loader.load_from_string(self.morphology_text)
        self.filename = 'foo.morph'
        self.source, = morphlib.source.make_sources(self.repo_name,
                                                    self.original_ref,
                                                    self.filename,
                                                    self.sha1, self.tree,
                                                    self.morphology)

    def test_sets_repo_name(self):
        self.assertEqual(self.source.repo_name, self.repo_name)

    def test_sets_repo_to_none_initially(self):
        self.assertEqual(self.source.repo, None)

    def test_sets_original_ref(self):
        self.assertEqual(self.source.original_ref, self.original_ref)

    def test_sets_sha1(self):
        self.assertEqual(self.source.sha1, self.sha1)

    def test_sets_morphology(self):
        self.assertEqual(self.source.morphology, self.morphology)

    def test_sets_filename(self):
        self.assertEqual(self.source.filename, self.filename)