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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
# SPDX-FileCopyrightText: 2017 Free Software Foundation Europe e.V. <https://fsfe.org>
# SPDX-FileCopyrightText: 2022 Carmen Bianca Bakker <carmenbianca@fsfe.org>
# SPDX-FileCopyrightText: 2022 Florian Snow <florian@familysnow.net>
# SPDX-FileCopyrightText: 2022 Nico Rikken <nico.rikken@fsfe.org>
# SPDX-FileCopyrightText: 2022 Pietro Albini <pietro.albini@ferrous-systems.com>
# SPDX-FileCopyrightText: 2024 Rivos Inc.
# SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Tests for reuse.extract"""
import os
from inspect import cleandoc
from io import BytesIO
import pytest
from boolean.boolean import ParseError
from reuse import _LICENSING, ReuseInfo
from reuse.extract import (
decoded_text_from_binary,
detect_line_endings,
extract_reuse_info,
filter_ignore_block,
)
# REUSE-IgnoreStart
def test_extract_expression():
"""Parse various expressions."""
expressions = ["GPL-3.0+", "GPL-3.0 AND CC0-1.0", "nonsense"]
for expression in expressions:
result = extract_reuse_info(f"SPDX-License-Identifier: {expression}")
assert result.spdx_expressions == {_LICENSING.parse(expression)}
def test_extract_expression_from_ascii_art_frame():
"""Parse an expression from an ASCII art frame"""
result = extract_reuse_info(
cleandoc(
"""
/**********************************\\
|* SPDX-License-Identifier: MIT *|
\\**********************************/
"""
)
)
assert result.spdx_expressions == {_LICENSING.parse("MIT")}
def test_extract_erroneous_expression():
"""Parse an incorrect expression."""
expression = "SPDX-License-Identifier: GPL-3.0-or-later AND (MIT OR)"
with pytest.raises(ParseError):
extract_reuse_info(expression)
def test_extract_no_info():
"""Given a string without REUSE information, return an empty ReuseInfo
object.
"""
result = extract_reuse_info("")
assert result == ReuseInfo()
def test_extract_tab():
"""A tag followed by a tab is also valid."""
result = extract_reuse_info("SPDX-License-Identifier:\tMIT")
assert result.spdx_expressions == {_LICENSING.parse("MIT")}
def test_extract_many_whitespace():
"""When a tag is followed by a lot of whitespace, the whitespace should be
filtered out.
"""
result = extract_reuse_info("SPDX-License-Identifier: MIT")
assert result.spdx_expressions == {_LICENSING.parse("MIT")}
def test_extract_bibtex_comment():
"""A special case for BibTex comments."""
expression = "@Comment{SPDX-License-Identifier: GPL-3.0-or-later}"
result = extract_reuse_info(expression)
assert str(list(result.spdx_expressions)[0]) == "GPL-3.0-or-later"
def test_extract_copyright():
"""Given a file with copyright information, have it return that copyright
information.
"""
copyright_line = "SPDX-FileCopyrightText: 2019 Jane Doe"
result = extract_reuse_info(copyright_line)
assert result.copyright_lines == {copyright_line}
def test_extract_copyright_duplicate():
"""When a copyright line is duplicated, only yield one."""
copyright_line = "SPDX-FileCopyrightText: 2019 Jane Doe"
result = extract_reuse_info("\n".join((copyright_line, copyright_line)))
assert result.copyright_lines == {copyright_line}
def test_extract_copyright_tab():
"""A tag followed by a tab is also valid."""
copyright_line = "SPDX-FileCopyrightText:\t2019 Jane Doe"
result = extract_reuse_info(copyright_line)
assert result.copyright_lines == {copyright_line}
def test_extract_copyright_many_whitespace():
"""When a tag is followed by a lot of whitespace, that is also valid. The
whitespace is not filtered out.
"""
copyright_line = "SPDX-FileCopyrightText: 2019 Jane Doe"
result = extract_reuse_info(copyright_line)
assert result.copyright_lines == {copyright_line}
def test_extract_copyright_variations():
"""There are multiple ways to declare copyright. All should be detected."""
text = cleandoc(
"""
SPDX-FileCopyrightText: 2019 spdx
SPDX-FileCopyrightText: (C) 2019 spdx-c
SPDX-FileCopyrightText: © 2019 spdx-symbol
SPDX-FileCopyrightText: Copyright (C) 2019 spdx-string-c
SPDX-FileCopyrightText: Copyright © 2019 spdx-string-symbol
Copyright 2019 string
Copyright (C) 2019 string-c
Copyright © 2019 string-symbol
© 2019 symbol
"""
)
result = extract_reuse_info(text)
lines = text.splitlines()
for line in lines:
assert line in result.copyright_lines
assert len(lines) == len(result.copyright_lines)
def test_extract_with_ignore_block():
"""Ensure that the copyright and licensing information inside the ignore
block is actually ignored.
"""
text = cleandoc(
"""
SPDX-FileCopyrightText: 2019 Jane Doe
SPDX-License-Identifier: CC0-1.0
REUSE-IgnoreStart
SPDX-FileCopyrightText: 2019 John Doe
SPDX-License-Identifier: GPL-3.0-or-later
REUSE-IgnoreEnd
SPDX-FileCopyrightText: 2019 Eve
"""
)
result = extract_reuse_info(text)
assert len(result.copyright_lines) == 2
assert len(result.spdx_expressions) == 1
def test_extract_sameline_multiline():
"""When a copyright line is in a multi-line style comment on a single line,
do not include the comment end pattern as part of the copyright.
"""
text = "<!-- SPDX-FileCopyrightText: Jane Doe -->"
result = extract_reuse_info(text)
assert len(result.copyright_lines) == 1
assert result.copyright_lines == {"SPDX-FileCopyrightText: Jane Doe"}
def test_extract_special_endings():
"""Strip some non-comment-style endings from the end of copyright and
licensing information.
"""
text = cleandoc(
"""
<tag value="Copyright 2019 Jane Doe">
<tag value="Copyright 2019 John Doe" >
<tag value="Copyright 2019 Joe Somebody" />
<tag value='Copyright 2019 Alice'>
<tag value='Copyright 2019 Bob' >
<tag value='Copyright 2019 Eve' />
[Copyright 2019 Ajnulo] ::
"""
)
result = extract_reuse_info(text)
for item in result.copyright_lines:
assert ">" not in item
assert "] ::" not in item
def test_extract_contributors():
"""Correctly extract SPDX-FileContributor information from text."""
text = cleandoc(
"""
# SPDX-FileContributor: Jane Doe
"""
)
result = extract_reuse_info(text)
assert result.contributor_lines == {"Jane Doe"}
def test_filter_ignore_block_with_comment_style():
"""Test that the ignore block is properly removed if start and end markers
are in comment style.
"""
text = cleandoc(
"""
Relevant text
# REUSE-IgnoreStart
Ignored text
# REUSE-IgnoreEnd
Other relevant text
"""
)
expected = "Relevant text\n# \nOther relevant text"
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_non_comment_style():
"""Test that the ignore block is properly removed if start and end markers
are not comment style.
"""
text = cleandoc(
"""
Relevant text
REUSE-IgnoreStart
Ignored text
REUSE-IgnoreEnd
Other relevant text
"""
)
expected = cleandoc(
"""
Relevant text
Other relevant text
"""
)
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_with_ignored_information_on_same_line():
"""Test that the ignore block is properly removed if there is information to
be ignored on the same line.
"""
text = cleandoc(
"""
Relevant text
REUSE-IgnoreStart Copyright me
Ignored text
sdojfsdREUSE-IgnoreEnd
Other relevant text
"""
)
expected = cleandoc(
"""
Relevant text
Other relevant text
"""
)
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_with_relevant_information_on_same_line():
"""Test that the ignore block is properly removed if it has relevant
information on the same line.
"""
text = cleandoc(
"""
Relevant textREUSE-IgnoreStart
Ignored text
REUSE-IgnoreEndOther relevant text
"""
)
expected = "Relevant textOther relevant text"
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_with_beginning_and_end_on_same_line_correct_order(): # pylint: disable=line-too-long
"""Test that the ignore block is properly removed if it has relevant
information on the same line.
"""
text = cleandoc(
"""
Relevant textREUSE-IgnoreStartIgnored textREUSE-IgnoreEndOther
relevant text
"""
)
expected = cleandoc(
"""
Relevant textOther
relevant text
"""
)
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_with_beginning_and_end_on_same_line_wrong_order():
"""Test that the ignore block is properly removed if it has relevant
information on the same line.
"""
text = "Relevant textREUSE-IgnoreEndOther relevant textREUSE-IgnoreStartIgnored text" # pylint: disable=line-too-long
expected = "Relevant textREUSE-IgnoreEndOther relevant text"
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_without_end():
"""Test that the ignore block is properly removed if it has relevant
information on the same line.
"""
text = cleandoc(
"""
Relevant text
REUSE-IgnoreStart
Ignored text
Other ignored text
"""
)
expected = "Relevant text\n"
result = filter_ignore_block(text)
assert result == expected
def test_filter_ignore_block_with_multiple_ignore_blocks():
"""Test that the ignore block is properly removed if it has relevant
information on the same line.
"""
text = cleandoc(
"""
Relevant text
REUSE-IgnoreStart
Ignored text
REUSE-IgnoreEnd
Other relevant text
REUSE-IgnoreStart
Other ignored text
REUSE-IgnoreEnd
Even more relevant text
"""
)
expected = cleandoc(
"""
Relevant text
Other relevant text
Even more relevant text
"""
)
result = filter_ignore_block(text)
assert result == expected
def test_decoded_text_from_binary_simple():
"""A unicode string encoded as bytes object decodes back correctly."""
text = "Hello, world ☺"
encoded = text.encode("utf-8")
assert decoded_text_from_binary(BytesIO(encoded)) == text
def test_decoded_text_from_binary_size():
"""Only a given amount of bytes is decoded."""
text = "Hello, world ☺"
encoded = text.encode("utf-8")
assert decoded_text_from_binary(BytesIO(encoded), size=5) == "Hello"
def test_decoded_text_from_binary_crlf():
"""Given CRLF line endings, convert to LF."""
text = "Hello\r\nworld"
encoded = text.encode("utf-8")
assert decoded_text_from_binary(BytesIO(encoded)) == "Hello\nworld"
def test_detect_line_endings_windows():
"""Given a CRLF string, detect the line endings."""
assert detect_line_endings("hello\r\nworld") == "\r\n"
def test_detect_line_endings_mac():
"""Given a CR string, detect the line endings."""
assert detect_line_endings("hello\rworld") == "\r"
def test_detect_line_endings_linux():
"""Given a LF string, detect the line endings."""
assert detect_line_endings("hello\nworld") == "\n"
def test_detect_line_endings_no_newlines():
"""Given a file without line endings, default to os.linesep."""
assert detect_line_endings("hello world") == os.linesep
# Reuse-IgnoreEnd
|