blob: 6c3163b4aae08c7f4a4768b65177af49fcfdb108 (
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
|
# pylint: disable=preferred-module # FIXME: remove once migrated per GH-725
import unittest
from ansiblelint.rules import RulesCollection
from ansiblelint.rules.RoleRelativePath import RoleRelativePath
from ansiblelint.testing import RunFromText
FAIL_TASKS = '''
- name: template example
template:
src: ../templates/foo.j2
dest: /etc/file.conf
- name: copy example
copy:
src: ../files/foo.conf
dest: /etc/foo.conf
- name: win_template example
win_template:
src: ../win_templates/file.conf.j2
dest: file.conf
- name: win_copy example
win_copy:
src: ../files/foo.conf
dest: renamed-foo.conf
'''
SUCCESS_TASKS = '''
- name: content example with no src
copy:
content: '# This file was moved to /etc/other.conf'
dest: /etc/mine.conf
- name: content example with no src
win_copy:
content: '# This file was moved to /etc/other.conf'
dest: /etc/mine.conf
'''
class TestRoleRelativePath(unittest.TestCase):
collection = RulesCollection()
collection.register(RoleRelativePath())
def setUp(self):
self.runner = RunFromText(self.collection)
def test_fail(self):
results = self.runner.run_role_tasks_main(FAIL_TASKS)
self.assertEqual(4, len(results))
def test_success(self):
results = self.runner.run_role_tasks_main(SUCCESS_TASKS)
self.assertEqual(0, len(results))
|