summaryrefslogtreecommitdiff
path: root/lib/spack/spack/test/llnl/llnl_string.py
blob: 9533212a595c8260969f3f5897ab385c5ad57981 (plain) (blame)
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
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
import pytest

import llnl.string


@pytest.mark.parametrize(
    "arguments,expected",
    [
        ((0, "thing"), "0 things"),
        ((1, "thing"), "1 thing"),
        ((2, "thing"), "2 things"),
        ((1, "thing", "wombats"), "1 thing"),
        ((2, "thing", "wombats"), "2 wombats"),
        ((2, "thing", "wombats", False), "wombats"),
    ],
)
def test_plural(arguments, expected):
    assert llnl.string.plural(*arguments) == expected


@pytest.mark.parametrize(
    "arguments,expected",
    [((["one", "two"],), ["'one'", "'two'"]), ((["one", "two"], "^"), ["^one^", "^two^"])],
)
def test_quote(arguments, expected):
    assert llnl.string.quote(*arguments) == expected


@pytest.mark.parametrize(
    "input,expected_and,expected_or",
    [
        (["foo"], "foo", "foo"),
        (["foo", "bar"], "foo and bar", "foo or bar"),
        (["foo", "bar", "baz"], "foo, bar, and baz", "foo, bar, or baz"),
    ],
)
def test_comma_and_or(input, expected_and, expected_or):
    assert llnl.string.comma_and(input) == expected_and
    assert llnl.string.comma_or(input) == expected_or