mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
Finished Graph and Tree implementation
This commit is contained in:
41
tests/unit/cli/meta/test_tree.py
Normal file
41
tests/unit/cli/meta/test_tree.py
Normal file
@@ -0,0 +1,41 @@
|
||||
import unittest
|
||||
import tempfile
|
||||
import shutil
|
||||
import os
|
||||
import json
|
||||
from cli.generate import tree
|
||||
|
||||
|
||||
class TestTreeMain(unittest.TestCase):
|
||||
def setUp(self):
|
||||
# Create a temporary roles directory with a fake role
|
||||
self.temp_dir = tempfile.mkdtemp()
|
||||
self.role_name = "testrole"
|
||||
self.role_path = os.path.join(self.temp_dir, self.role_name)
|
||||
os.makedirs(os.path.join(self.role_path, "meta"))
|
||||
|
||||
meta_path = os.path.join(self.role_path, "meta", "main.yml")
|
||||
with open(meta_path, 'w') as f:
|
||||
f.write("galaxy_info:\n author: test\n run_after: []\ndependencies: []\n")
|
||||
|
||||
def tearDown(self):
|
||||
shutil.rmtree(self.temp_dir)
|
||||
|
||||
def test_find_roles(self):
|
||||
roles = list(tree.find_roles(self.temp_dir))
|
||||
self.assertEqual(len(roles), 1)
|
||||
self.assertEqual(roles[0][0], self.role_name)
|
||||
|
||||
def test_main_execution_does_not_raise(self):
|
||||
# Mocking sys.argv and running main should not raise
|
||||
import sys
|
||||
old_argv = sys.argv
|
||||
sys.argv = ['tree.py', '-d', self.temp_dir, '-p']
|
||||
try:
|
||||
tree.main()
|
||||
finally:
|
||||
sys.argv = old_argv
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Reference in New Issue
Block a user