summaryrefslogtreecommitdiff
path: root/src/tests/test_util.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-06-26 09:17:52 +0200
committerChristian Poessinger <christian@poessinger.com>2021-06-26 09:17:55 +0200
commit5303ec39f6f08ccf06f56ff6d5166fc572b2c735 (patch)
tree32a56b3339309972a2d91147b08b867712dd013c /src/tests/test_util.py
parent8108ca69e7d877f2af37bfce8c05a6054ed32775 (diff)
downloadvyos-1x-5303ec39f6f08ccf06f56ff6d5166fc572b2c735.tar.gz
vyos-1x-5303ec39f6f08ccf06f56ff6d5166fc572b2c735.zip
vyos.util: add new helper copy_file()
Copy a file from A -> B but also support adjusting Bs file permissions and creation of Bs base directory if required.
Diffstat (limited to 'src/tests/test_util.py')
-rw-r--r--src/tests/test_util.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/tests/test_util.py b/src/tests/test_util.py
index 22bc085c5..1efd4868f 100644
--- a/src/tests/test_util.py
+++ b/src/tests/test_util.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2020 VyOS maintainers and contributors
+# Copyright (C) 2020-2021 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from unittest import TestCase
-from vyos.util import mangle_dict_keys
+from vyos.util import *
class TestVyOSUtil(TestCase):
def test_key_mangline(self):
@@ -24,3 +24,9 @@ class TestVyOSUtil(TestCase):
new_data = mangle_dict_keys(data, '-', '_')
self.assertEqual(new_data, expected_data)
+ def test_copy_file(self):
+ source = '/proc/cmdline'
+ destination = '/tmp/foo/cmdline'
+ copy_file(source, destination, True)
+ self.assertEqual(read_file(source), read_file(destination))
+