mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import python libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
from salt.ext.six import text_type as text
|
|
|
|
# Import Salt Libs
|
|
from salt.utils.sanitizers import clean, mask_args_value
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import NO_MOCK, NO_MOCK_REASON
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class SanitizersTestCase(TestCase):
|
|
'''
|
|
TestCase for sanitizers
|
|
'''
|
|
def test_sanitized_trim(self):
|
|
'''
|
|
Test sanitized input for trimming
|
|
'''
|
|
value = ' sample '
|
|
response = clean.trim(value)
|
|
assert response == 'sample'
|
|
assert type(response) == text
|
|
|
|
def test_sanitized_filename(self):
|
|
'''
|
|
Test sanitized input for filename
|
|
'''
|
|
value = '/absolute/path/to/the/file.txt'
|
|
response = clean.filename(value)
|
|
assert response == 'file.txt'
|
|
|
|
value = '../relative/path/to/the/file.txt'
|
|
response = clean.filename(value)
|
|
assert response == 'file.txt'
|
|
|
|
def test_sanitized_hostname(self):
|
|
'''
|
|
Test sanitized input for hostname (id)
|
|
'''
|
|
value = ' ../ ../some/dubious/hostname '
|
|
response = clean.hostname(value)
|
|
assert response == 'somedubioushostname'
|
|
|
|
test_sanitized_id = test_sanitized_hostname
|
|
|
|
def test_value_masked(self):
|
|
'''
|
|
Test if the values are masked.
|
|
:return:
|
|
'''
|
|
out = mask_args_value('quantum: fluctuations', 'quant*')
|
|
assert out == 'quantum: ** hidden **'
|
|
|
|
def test_value_not_masked(self):
|
|
'''
|
|
Test if the values are not masked.
|
|
:return:
|
|
'''
|
|
out = mask_args_value('quantum fluctuations', 'quant*')
|
|
assert out == 'quantum fluctuations'
|