File: test_external_identifier.py

package info (click to toggle)
python-spdx-tools 0.8.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,084 kB
  • sloc: python: 18,675; xml: 12,553; sh: 46; makefile: 7
file content (34 lines) | stat: -rw-r--r-- 1,371 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# SPDX-FileCopyrightText: 2023 spdx contributors
#
# SPDX-License-Identifier: Apache-2.0
import pytest

from spdx_tools.spdx3.model import ExternalIdentifier, ExternalIdentifierType
from tests.spdx3.fixtures import external_identifier_fixture
from tests.spdx3.model.model_test_utils import get_property_names


def test_correct_initialization():
    external_identifier = external_identifier_fixture()

    for property_name in get_property_names(ExternalIdentifier):
        assert getattr(external_identifier, property_name) is not None

    assert external_identifier.external_identifier_type == ExternalIdentifierType.OTHER
    assert external_identifier.identifier == "externalIdentifierIdentifier"
    assert external_identifier.comment == "externalIdentifierComment"
    assert external_identifier.identifier_locator == [
        "https://spdx.test/tools-python/external_identifier_identifier_locator"
    ]
    assert (
        external_identifier.issuing_authority == "https://spdx.test/tools-python/external_identifier_issuing_authority"
    )


def test_invalid_initialization():
    with pytest.raises(TypeError) as err:
        ExternalIdentifier("CPE22", ["identifier", "another_identifier"], 34, "locator", True)

    assert len(err.value.args[0]) == 5
    for error in err.value.args[0]:
        assert error.startswith("SetterError ExternalIdentifier:")