dosage/tests/test_dosage.py

55 lines
1.7 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2014-01-05 15:50:57 +00:00
# Copyright (C) 2013-2014 Bastian Kleineidam
# Copyright (C) 2016 Tobias Gruetzmacher
import pytest
import sys
2016-03-28 14:29:57 +00:00
from . import dosage_cmd, run_checked
2013-03-12 20:07:32 +00:00
def run_with_options(options, cmd=dosage_cmd):
2013-04-02 21:01:07 +00:00
"""Run dosage with given options."""
run_checked([sys.executable, cmd, '--allow-multiple'] + options)
class TestDosage(object):
"""Test the dosage commandline client."""
def test_list_comics(self):
for option in ("-l", "--list", "--singlelist"):
run_with_options([option])
def test_display_version(self):
run_with_options(["--version"])
def test_display_help(self):
for option in ("-h", "--help"):
run_with_options([option])
def test_module_help(self):
2015-04-18 10:34:33 +00:00
run_with_options(["-m", "xkcd"])
def test_no_comics_specified(self):
with pytest.raises(OSError):
run_with_options([])
def test_unknown_option(self):
with pytest.raises(OSError):
run_with_options(['--imadoofus'])
def test_multiple_comics_match(self):
with pytest.raises(OSError):
run_with_options(['Garfield'])
2016-03-28 14:29:57 +00:00
def test_fetch_html_and_rss(self, tmpdir):
run_with_options(["-n", "2", "-v", "-b", str(tmpdir), "-o", "html",
"-o", "rss", "xkcd"])
2016-03-28 14:29:57 +00:00
def test_fetch_html_and_rss_2(self, tmpdir):
run_with_options(["--numstrips", "2", "--baseurl", "bla",
2016-03-28 14:29:57 +00:00
"--basepath", str(tmpdir), "--output", "rss",
"--output", "html", "--adult", "oglaf"])
2016-03-28 14:29:57 +00:00
def test_fetch_indexed(self, tmpdir):
run_with_options(["-n", "2", "-v", "-b", str(tmpdir), "xkcd:303"])