
This patch addresses inconsistent code style and enforces it with a gate for future submissions. Separate work will be done in the future to address several of the PEP8 ignores for docstrings, and attempt to bring the tests directory to PEP8 compliance. This patch: 1. Updates .style.yapf to set the knobs desired for YAPF. 2. Updates tox.ini to allow one of the knobs to work. 3. Removes unused code from several __init__.py files. 4. Updates the YAPF version in test-requirements.txt to latest (this is needed for several knobs to work). 5. Stylistic changes to the python codebase in Pegleg. 6. Updates to tox.ini to run YAPF during PEP8 check. Change-Id: Ieaa0fdef2b601d01c875d64b840986e54df73abf
97 lines
3.4 KiB
Python
97 lines
3.4 KiB
Python
# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from pegleg.engine.util.cryptostring import CryptoString
|
|
import string
|
|
|
|
|
|
def test_cryptostring_default_len():
|
|
s_util = CryptoString()
|
|
s = s_util.get_crypto_string()
|
|
assert len(s) == 24
|
|
|
|
|
|
def test_cryptostring_short_len():
|
|
s_util = CryptoString()
|
|
s = s_util.get_crypto_string(0)
|
|
assert len(s) == 24
|
|
s = s_util.get_crypto_string(23)
|
|
assert len(s) == 24
|
|
s = s_util.get_crypto_string(-1)
|
|
assert len(s) == 24
|
|
|
|
|
|
def test_cryptostring_long_len():
|
|
s_util = CryptoString()
|
|
s = s_util.get_crypto_string(25)
|
|
assert len(s) == 25
|
|
s = s_util.get_crypto_string(128)
|
|
assert len(s) == 128
|
|
|
|
|
|
def test_cryptostring_has_upper():
|
|
s_util = CryptoString()
|
|
crypto_string = 'Th1sP@sswordH4sUppers!'
|
|
assert s_util.has_upper(crypto_string) is True
|
|
crypto_string = 'THISPASSWORDHASONLYUPPERS'
|
|
assert s_util.has_upper(crypto_string) is True
|
|
crypto_string = 'th1sp@sswordh4snouppers!'
|
|
assert s_util.has_upper(crypto_string) is False
|
|
|
|
|
|
def test_cryptostring_has_lower():
|
|
s_util = CryptoString()
|
|
crypto_string = 'Th1sP@sswordH4sLowers!'
|
|
assert s_util.has_lower(crypto_string) is True
|
|
crypto_string = 'thispasswordhasonlylowers'
|
|
assert s_util.has_lower(crypto_string) is True
|
|
crypto_string = 'TH1SP@SSWORDH4SNOLOWERS!'
|
|
assert s_util.has_lower(crypto_string) is False
|
|
|
|
|
|
def test_cryptostring_has_number():
|
|
s_util = CryptoString()
|
|
crypto_string = 'Th1sP@sswordH4sNumbers!'
|
|
assert s_util.has_number(crypto_string) is True
|
|
crypto_string = '123456789012345678901234567890'
|
|
assert s_util.has_number(crypto_string) is True
|
|
crypto_string = 'ThisP@sswordHasNoNumbers!'
|
|
assert s_util.has_number(crypto_string) is False
|
|
|
|
|
|
def test_cryptostring_has_symbol():
|
|
s_util = CryptoString()
|
|
crypto_string = 'Th1sP@sswordH4sSymbols!'
|
|
assert s_util.has_symbol(crypto_string) is True
|
|
crypto_string = '!@#$%^&*()[]\}{|<>?,./~`'
|
|
assert s_util.has_symbol(crypto_string) is True
|
|
crypto_string = 'ThisPasswordH4sNoSymbols'
|
|
assert s_util.has_symbol(crypto_string) is False
|
|
|
|
|
|
def test_cryptostring_has_all():
|
|
s_util = CryptoString()
|
|
crypto_string = s_util.get_crypto_string()
|
|
assert s_util.validate_crypto_str(crypto_string) is True
|
|
crypto_string = 'Th1sP@sswordH4sItAll!'
|
|
assert s_util.validate_crypto_str(crypto_string) is True
|
|
crypto_string = 'th1sp@sswordh4snouppers!'
|
|
assert s_util.validate_crypto_str(crypto_string) is False
|
|
crypto_string = 'TH1SP@SSWORDH4SNOLOWERS!'
|
|
assert s_util.validate_crypto_str(crypto_string) is False
|
|
crypto_string = 'ThisP@sswordHasNoNumbers!'
|
|
assert s_util.validate_crypto_str(crypto_string) is False
|
|
crypto_string = 'ThisPasswordH4sNoSymbols'
|
|
assert s_util.validate_crypto_str(crypto_string) is False
|