You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
#
|
|
# Copyright (c) Contributors to the Open 3D Engine Project.
|
|
# For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
#
|
|
#
|
|
|
|
import pytest
|
|
|
|
from o3de import utils
|
|
|
|
@pytest.mark.parametrize(
|
|
"value, expected_result", [
|
|
pytest.param('Game1', True),
|
|
pytest.param('0Game1', False),
|
|
pytest.param('the/Game1', False),
|
|
pytest.param('', False),
|
|
pytest.param('-test', False),
|
|
pytest.param('test-', True),
|
|
]
|
|
)
|
|
def test_validate_identifier(value, expected_result):
|
|
result = utils.validate_identifier(value)
|
|
assert result == expected_result
|
|
|
|
@pytest.mark.parametrize(
|
|
"value, expected_result", [
|
|
pytest.param('{018427ae-cd08-4ff1-ad3b-9b95256c17ca}', False),
|
|
pytest.param('', False),
|
|
pytest.param('{018427aecd084ff1ad3b9b95256c17ca}', False),
|
|
pytest.param('018427ae-cd08-4ff1-ad3b-9b95256c17ca', True),
|
|
pytest.param('018427aecd084ff1ad3b9b95256c17ca', False),
|
|
pytest.param('018427aecd084ff1ad3b9', False),
|
|
]
|
|
)
|
|
def test_validate_uuid4(value, expected_result):
|
|
result = utils.validate_uuid4(value)
|
|
assert result == expected_result
|