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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
# Copyright 2014-2016 Christoph Reiter
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
from __future__ import absolute_import
import os
import sys
import subprocess
import tarfile
import fnmatch
from distutils import dir_util
from .util import Command, get_dist_class
class test_cmd(Command):
description = "run automated tests"
user_options = [
("to-run=", None, "list of tests to run (default all)"),
("suite=", None, "test suite (folder) to run (default 'tests')"),
("strict", None, "make glib warnings / errors fatal"),
("all", None, "run all suites"),
("exitfirst", "x", "stop after first failing test"),
("no-network", "n", "skip tests requiring a network connection"),
("no-quality", "n", "skip tests for code quality"),
]
def initialize_options(self):
self.to_run = []
self.suite = None
self.strict = False
self.all = False
self.exitfirst = False
self.no_network = False
self.no_quality = False
def finalize_options(self):
if self.to_run:
self.to_run = self.to_run.split(",")
self.strict = bool(self.strict)
self.all = bool(self.all)
self.suite = self.suite and str(self.suite)
self.exitfirst = bool(self.exitfirst)
self.no_network = bool(self.no_network)
self.no_quality = bool(self.no_quality)
def run(self):
import tests
suite = self.suite
if self.all:
suite = None
status = tests.unit(run=self.to_run, suite=suite,
strict=self.strict, exitfirst=self.exitfirst,
network=(not self.no_network or self.all),
quality=(not self.no_quality or self.all))
if status != 0:
raise SystemExit(status)
class quality_cmd(Command):
description = "Run flake8/mypy tests"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import tests
status = tests.unit(suite="quality", quality=True)
if status != 0:
raise SystemExit(status)
sdist = get_dist_class("sdist")
class distcheck_cmd(sdist):
description = "run tests on a fresh sdist"
def _check_manifest(self):
assert self.get_archive_files()
# make sure MANIFEST.in includes all tracked files
if subprocess.call(["git", "status"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE) == 0:
# contains the packaged files after run() is finished
included_files = self.filelist.files
assert included_files
process = subprocess.Popen(
["git", "ls-tree", "-r", "HEAD", "--name-only"],
stdout=subprocess.PIPE, universal_newlines=True)
out, err = process.communicate()
assert process.returncode == 0
tracked_files = out.splitlines()
ignore_tracked = [
"dev-utils/*",
".github/*",
".ci/*",
".codecov.yml",
".editorconfig",
".git*",
]
tracked_files = [
p for p in tracked_files if not
any(fnmatch.fnmatch(p, i) for i in ignore_tracked)]
diff = set(tracked_files) - set(included_files)
assert not diff, (
"Not all tracked files included in tarball, check MANIFEST.in",
diff)
def _check_dist(self):
assert self.get_archive_files()
distcheck_dir = os.path.join(self.dist_dir, "distcheck")
if os.path.exists(distcheck_dir):
dir_util.remove_tree(distcheck_dir)
self.mkpath(distcheck_dir)
archive = self.get_archive_files()[0]
tfile = tarfile.open(archive, "r:gz")
tfile.extractall(distcheck_dir)
tfile.close()
name = self.distribution.get_fullname()
extract_dir = os.path.join(distcheck_dir, name)
old_pwd = os.getcwd()
os.chdir(extract_dir)
self.spawn([sys.executable, "setup.py", "test"])
self.spawn([sys.executable, "setup.py", "build"])
self.spawn([sys.executable, "setup.py", "build_sphinx"])
self.spawn([sys.executable, "setup.py", "install",
"--root", "../prefix", "--record", "../log.txt"])
os.chdir(old_pwd)
def run(self):
sdist.run(self)
self._check_manifest()
self._check_dist()
|