123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: Mike Place <mp@saltstack.com>
- """
- # Import Python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import copy
- import os
- import tempfile
- import pytest
- import salt.fileclient
- # Import Salt libs
- import salt.fileserver.roots as roots
- import salt.utils.files
- import salt.utils.hashutils
- import salt.utils.platform
- # Import Salt Testing libs
- from tests.support.mixins import (
- AdaptedConfigurationTestCaseMixin,
- LoaderModuleMockMixin,
- )
- from tests.support.mock import patch
- from tests.support.runtests import RUNTIME_VARS
- from tests.support.unit import TestCase
- try:
- import win32file
- except ImportError:
- pass
- UNICODE_FILENAME = "питон.txt"
- UNICODE_DIRNAME = UNICODE_ENVNAME = "соль"
- class RootsTest(TestCase, AdaptedConfigurationTestCaseMixin, LoaderModuleMockMixin):
- def setup_loader_modules(self):
- self.opts = self.get_temp_config("master")
- empty_dir = os.path.join(RUNTIME_VARS.TMP_STATE_TREE, "empty_dir")
- if not os.path.isdir(empty_dir):
- os.makedirs(empty_dir)
- return {roots: {"__opts__": self.opts}}
- @classmethod
- def setUpClass(cls):
- """
- Create special file_roots for symlink test on Windows
- """
- if salt.utils.platform.is_windows():
- root_dir = tempfile.mkdtemp(dir=RUNTIME_VARS.TMP)
- source_sym = os.path.join(root_dir, "source_sym")
- with salt.utils.files.fopen(source_sym, "w") as fp_:
- fp_.write("hello world!\n")
- cwd = os.getcwd()
- try:
- os.chdir(root_dir)
- win32file.CreateSymbolicLink("dest_sym", "source_sym", 0)
- finally:
- os.chdir(cwd)
- cls.test_symlink_list_file_roots = {"base": [root_dir]}
- else:
- dest_sym = os.path.join(RUNTIME_VARS.BASE_FILES, "dest_sym")
- if not os.path.islink(dest_sym):
- # Fix broken symlink by recreating it
- if os.path.exists(dest_sym):
- os.remove(dest_sym)
- os.symlink("source_sym", dest_sym)
- cls.test_symlink_list_file_roots = None
- cls.tmp_dir = tempfile.mkdtemp(dir=RUNTIME_VARS.TMP)
- full_path_to_file = os.path.join(RUNTIME_VARS.BASE_FILES, "testfile")
- with salt.utils.files.fopen(full_path_to_file, "rb") as s_fp:
- with salt.utils.files.fopen(
- os.path.join(cls.tmp_dir, "testfile"), "wb"
- ) as d_fp:
- for line in s_fp:
- d_fp.write(line)
- @classmethod
- def tearDownClass(cls):
- """
- Remove special file_roots for symlink test
- """
- if salt.utils.platform.is_windows():
- try:
- salt.utils.files.rm_rf(cls.test_symlink_list_file_roots["base"][0])
- except OSError:
- pass
- salt.utils.files.rm_rf(cls.tmp_dir)
- def tearDown(self):
- del self.opts
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_file_list(self):
- ret = roots.file_list({"saltenv": "base"})
- self.assertIn("testfile", ret)
- self.assertIn(UNICODE_FILENAME, ret)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_find_file(self):
- ret = roots.find_file("testfile")
- self.assertEqual("testfile", ret["rel"])
- full_path_to_file = os.path.join(RUNTIME_VARS.BASE_FILES, "testfile")
- self.assertEqual(full_path_to_file, ret["path"])
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_serve_file(self):
- with patch.dict(roots.__opts__, {"file_buffer_size": 262144}):
- load = {
- "saltenv": "base",
- "path": os.path.join(self.tmp_dir, "testfile"),
- "loc": 0,
- }
- fnd = {"path": os.path.join(self.tmp_dir, "testfile"), "rel": "testfile"}
- ret = roots.serve_file(load, fnd)
- with salt.utils.files.fopen(
- os.path.join(RUNTIME_VARS.BASE_FILES, "testfile"), "rb"
- ) as fp_:
- data = fp_.read()
- self.assertDictEqual(ret, {"data": data, "dest": "testfile"})
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_envs(self):
- opts = {"file_roots": copy.copy(self.opts["file_roots"])}
- opts["file_roots"][UNICODE_ENVNAME] = opts["file_roots"]["base"]
- with patch.dict(roots.__opts__, opts):
- ret = roots.envs()
- self.assertIn("base", ret)
- self.assertIn(UNICODE_ENVNAME, ret)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_file_hash(self):
- load = {
- "saltenv": "base",
- "path": os.path.join(self.tmp_dir, "testfile"),
- }
- fnd = {"path": os.path.join(self.tmp_dir, "testfile"), "rel": "testfile"}
- ret = roots.file_hash(load, fnd)
- # Hashes are different in Windows. May be how git translates line
- # endings
- with salt.utils.files.fopen(
- os.path.join(RUNTIME_VARS.BASE_FILES, "testfile"), "rb"
- ) as fp_:
- hsum = salt.utils.hashutils.sha256_digest(fp_.read())
- self.assertDictEqual(ret, {"hsum": hsum, "hash_type": "sha256"})
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_file_list_emptydirs(self):
- ret = roots.file_list_emptydirs({"saltenv": "base"})
- self.assertIn("empty_dir", ret)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_file_list_with_slash(self):
- opts = {"file_roots": copy.copy(self.opts["file_roots"])}
- opts["file_roots"]["foo/bar"] = opts["file_roots"]["base"]
- load = {
- "saltenv": "foo/bar",
- }
- with patch.dict(roots.__opts__, opts):
- ret = roots.file_list(load)
- self.assertIn("testfile", ret)
- self.assertIn(UNICODE_FILENAME, ret)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_dir_list(self):
- ret = roots.dir_list({"saltenv": "base"})
- self.assertIn("empty_dir", ret)
- self.assertIn(UNICODE_DIRNAME, ret)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_symlink_list(self):
- orig_file_roots = self.opts["file_roots"]
- try:
- if self.test_symlink_list_file_roots:
- self.opts["file_roots"] = self.test_symlink_list_file_roots
- ret = roots.symlink_list({"saltenv": "base"})
- self.assertDictEqual(ret, {"dest_sym": "source_sym"})
- finally:
- if self.test_symlink_list_file_roots:
- self.opts["file_roots"] = orig_file_roots
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_dynamic_file_roots(self):
- dyn_root_dir = tempfile.mkdtemp(dir=RUNTIME_VARS.TMP)
- top_sls = os.path.join(dyn_root_dir, "top.sls")
- with salt.utils.files.fopen(top_sls, "w") as fp_:
- fp_.write("{{saltenv}}:\n '*':\n - dynamo\n")
- dynamo_sls = os.path.join(dyn_root_dir, "dynamo.sls")
- with salt.utils.files.fopen(dynamo_sls, "w") as fp_:
- fp_.write("foo:\n test.nop\n")
- opts = {"file_roots": copy.copy(self.opts["file_roots"])}
- opts["file_roots"]["__env__"] = [dyn_root_dir]
- with patch.dict(roots.__opts__, opts):
- ret1 = roots.find_file("dynamo.sls", "dyn")
- ret2 = roots.file_list({"saltenv": "dyn"})
- self.assertEqual("dynamo.sls", ret1["rel"])
- self.assertIn("top.sls", ret2)
- self.assertIn("dynamo.sls", ret2)
|