File: test_normalize_userinfo.py

package info (click to toggle)
url-normalize 2.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: python: 935; makefile: 16; sh: 8
file content (21 lines) | stat: -rw-r--r-- 571 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
"""Tests for normalize_userinfo function."""

import pytest

from url_normalize.url_normalize import normalize_userinfo


@pytest.mark.parametrize(
    ("userinfo", "expected"),
    [
        (":@", ""),
        ("", ""),
        ("@", ""),
        ("user:password@", "user:password@"),
        ("user@", "user@"),
    ],
)
def test_normalize_userinfo_result_is_expected(userinfo: str, expected: str) -> None:
    """Assert we got expected results from the normalize_userinfo function."""
    result = normalize_userinfo(userinfo)
    assert result == expected, userinfo