File: test_quickstart.py

package info (click to toggle)
blag 2.3.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 520 kB
  • sloc: python: 1,037; makefile: 71
file content (47 lines) | stat: -rw-r--r-- 1,287 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
40
41
42
43
44
45
46
47
"""Tests for the quickstart module."""

import os

from pytest import MonkeyPatch

from blag.quickstart import get_input, quickstart


def test_get_input_default_answer(monkeypatch: MonkeyPatch) -> None:
    """Test get_input with default answer."""
    monkeypatch.setattr("builtins.input", lambda x: "")
    answer = get_input("foo", "bar")
    assert answer == "bar"


def test_get_input(monkeypatch: MonkeyPatch) -> None:
    """Test get_input."""
    monkeypatch.setattr("builtins.input", lambda x: "baz")
    answer = get_input("foo", "bar")
    assert answer == "baz"


def test_quickstart(cleandir: str, monkeypatch: MonkeyPatch) -> None:
    """Test quickstart."""
    monkeypatch.setattr("builtins.input", lambda x: "foo")
    quickstart(None)
    with open("config.ini") as fh:
        data = fh.read()
    assert "base_url = foo" in data
    assert "title = foo" in data
    assert "description = foo" in data
    assert "author = foo" in data

    for template in (
        "archive.html",
        "article.html",
        "base.html",
        "index.html",
        "page.html",
        "tag.html",
        "tags.html",
    ):
        assert os.path.exists(f"templates/{template}")

    for directory in "build", "content", "static":
        assert os.path.exists(directory)