mirror of https://github.com/ansible/ansible.git
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.
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright: Contributors to the Ansible project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from ansible.modules.get_url import parse_digest_lines
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("lines", "expected"),
|
|
[
|
|
pytest.param(
|
|
[
|
|
"a97e6837f60cec6da4491bab387296bbcd72bdba",
|
|
],
|
|
[("a97e6837f60cec6da4491bab387296bbcd72bdba", "sample.txt")],
|
|
id="single-line-digest",
|
|
),
|
|
pytest.param(
|
|
[
|
|
"a97e6837f60cec6da4491bab387296bbcd72bdba sample.txt",
|
|
],
|
|
[("a97e6837f60cec6da4491bab387296bbcd72bdba", "sample.txt")],
|
|
id="GNU-style-digest",
|
|
),
|
|
pytest.param(
|
|
[
|
|
"SHA256 (sample.txt) = b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006.",
|
|
],
|
|
[
|
|
(
|
|
"b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006.",
|
|
"sample.txt",
|
|
)
|
|
],
|
|
id="BSD-style-digest",
|
|
),
|
|
],
|
|
)
|
|
def test_parse_digest_lines(lines, expected):
|
|
filename = "sample.txt"
|
|
assert parse_digest_lines(filename, lines) == expected
|