File: test_apt_mark.py

package info (click to toggle)
bash-completion 1%3A2.16.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,424 kB
  • sloc: python: 11,241; makefile: 2,471; sh: 934; perl: 85; awk: 55; xml: 29; ansic: 7; java: 5; ruby: 2
file content (39 lines) | stat: -rw-r--r-- 1,217 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
36
37
38
39
import pytest


@pytest.mark.bashcomp(cmd="apt-mark")
class TestAptMark:
    @pytest.mark.complete("apt-mark ")
    def test_1(self, completion):
        assert all(
            x in completion
            for x in (
                "auto manual remove showinstall showremove "
                "hold minimize-manual showauto showmanual unhold install "
                "purge showhold showpurge"
            ).split()
        )

    @pytest.mark.complete("apt-mark minimize-manual ")
    def test_2(self, completion):
        assert not completion

    @pytest.mark.complete("apt-mark --file=", cwd="dpkg")
    def test_3(self, completion):
        assert (
            completion
            == "bash-completion-test-nonsubject.txt bash-completion-test-subject.deb".split()
        )

    @pytest.mark.complete("apt-mark --config-file ", cwd="apt-mark")
    def test_4(self, completion):
        assert completion == "example.conf"

    @pytest.mark.complete("apt-mark --option ")
    def test_5(self, completion):
        assert not completion

    @pytest.mark.complete("apt-mark --dont-fail-in-unset-mode")
    def test_unknown_option(self, completion):
        # Just see that it does not error out
        pass