File: test_import_error.py

package info (click to toggle)
qtile 0.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,004 kB
  • sloc: python: 49,959; ansic: 4,371; xml: 324; sh: 260; makefile: 218
file content (29 lines) | stat: -rw-r--r-- 926 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
import pytest

import libqtile.bar
import libqtile.config
from libqtile import widget


def bad_importer(*args, **kwargs):
    raise ImportError()


@pytest.mark.parametrize("position", ["top", "bottom", "left", "right"])
def test_importerrorwidget(monkeypatch, manager_nospawn, minimal_conf_noscreen, position):
    """Check we get an ImportError widget with missing import?"""
    monkeypatch.setattr("libqtile.utils.importlib.import_module", bad_importer)

    badwidget = widget.TextBox("I am a naughty widget.")

    config = minimal_conf_noscreen
    config.screens = [libqtile.config.Screen(**{position: libqtile.bar.Bar([badwidget], 10)})]

    manager_nospawn.start(config)

    testbar = manager_nospawn.c.bar[position]
    w = testbar.info()["widgets"][0]

    # Check that the widget has been replaced with an ImportError
    assert w["name"] == "importerrorwidget"
    assert w["text"] == "Import Error: TextBox"