summaryrefslogtreecommitdiff
path: root/ick2/state_tests.py
blob: 098ad2d76e0d4a10fc1671c51ee1486ed0f0a537 (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
# Copyright (C) 2017  Lars Wirzenius


import os
import shutil
import tempfile
import unittest


import ick2


class ControllerStateTests(unittest.TestCase):

    def setUp(self):
        self.tempdir = tempfile.mkdtemp()
        self.statedir = os.path.join(self.tempdir, 'state/dir')

    def tearDown(self):
        shutil.rmtree(self.tempdir)

    def create_state(self):
        state = ick2.ControllerState()
        state.set_state_directory(self.statedir)
        return state

    def test_has_no_state_directory_initially(self):
        state = ick2.ControllerState()
        self.assertTrue(state.get_state_directory() is None)

    def test_sets_and_creates_state_directory(self):
        state = self.create_state()
        statedir = state.get_state_directory()
        self.assertEqual(statedir, self.statedir)
        self.assertTrue(os.path.exists(statedir))
    
    def test_has_not_projects_initially(self):
        state = self.create_state()
        self.assertEqual(state.get_projects(), [])

    def test_creates_project(self):
        project = {
            'project': 'foo',
            'shell_steps': ['build'],
        }
        state = self.create_state()
        state.add_project(project)
        self.assertEqual(state.get_projects(), [project])
        self.assertTrue(os.path.exists(state.get_project_filename('foo')))

    def test_loads_projects_from_state_directory(self):
        project = {
            'project': 'foo',
            'shell_steps': ['build'],
        }
        state = self.create_state()
        state.add_project(project)

        state2 = self.create_state()
        state2.load_projects()
        self.assertEqual(state2.get_projects(), [project])

    def test_gets_named_project(self):
        project = {
            'project': 'foo',
            'shell_steps': ['build'],
        }
        state = self.create_state()
        state.add_project(project)
        self.assertEqual(state.get_project('foo'), project)

    def test_updates_named_project(self):
        project_v1 = {
            'project': 'foo',
            'shell_steps': ['build'],
        }
        project_v2 = dict(project_v1)
        project_v2['shell_steps'] = ['build it using magic']
        state = self.create_state()
        state.add_project(project_v1)
        updated = state.update_project('foo', project_v2)
        self.assertEqual(updated, project_v2)
        self.assertEqual(state.get_project('foo'), project_v2)

    def test_deletes_named_project(self):
        project = {
            'project': 'foo',
            'shell_steps': ['build'],
        }
        state = self.create_state()
        state.add_project(project)
        state.remove_project('foo')
        self.assertEqual(state.get_projects(), [])
        with self.assertRaises(ick2.NotFound):
            state.get_project('foo')

    def test_raises_error_deleting_missing_project(self):
        state = self.create_state()
        with self.assertRaises(ick2.NotFound):
            state.remove_project('foo')