File: test_relationship.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 (35 lines) | stat: -rw-r--r-- 1,105 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
35
# SPDX-FileCopyrightText: 2023 spdx contributors
#
# SPDX-License-Identifier: Apache-2.0

import pytest

from spdx_tools.spdx.model import Relationship, RelationshipType, SpdxNoAssertion


def test_correct_initialization():
    relationship = Relationship("id", RelationshipType.OTHER, SpdxNoAssertion(), "comment")
    assert relationship.spdx_element_id == "id"
    assert relationship.relationship_type == RelationshipType.OTHER
    assert relationship.related_spdx_element_id == SpdxNoAssertion()
    assert relationship.comment == "comment"


def test_wrong_type_in_spdx_element_id():
    with pytest.raises(TypeError):
        Relationship(SpdxNoAssertion(), RelationshipType.OTHER, "other_id")


def test_wrong_type_in_relationship_type():
    with pytest.raises(TypeError):
        Relationship("id", 42, "other_id")


def test_wrong_type_in_related_spdx_element_id():
    with pytest.raises(TypeError):
        Relationship("id", RelationshipType.OTHER, 42)


def test_wrong_type_in_comment():
    with pytest.raises(TypeError):
        Relationship("id", RelationshipType.OTHER, "other_id", 42)