gnu: Use PACKAGE/INHERIT in more places.
[jackhill/guix/guix.git] / gnu / packages / check.scm
CommitLineData
233e7676
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
ac257f12 3;;; Copyright © 2014 David Thompson <davet@gnu.org>
4ac696c6 4;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
ac257f12
RW
5;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org>
6;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
7;;; Copyright © 2015, 2017 Cyril Roelandt <tipecaml@gmail.com>
8;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
28edab7a 9;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
f58e491f 10;;; Copyright © 2015, 2016, 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
ac257f12
RW
11;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
12;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
13;;; Copyright © 2016, 2017 Danny Milosavljevic <dannym+a@scratchpost.org>
dd6e70f9 14;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
762b5a89
RW
15;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
16;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
5f6aba6b 17;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
ac257f12 18;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
b8f0d11f 19;;; Copyright © 2016–2021 Tobias Geerinckx-Rice <me@tobias.gr>
ac257f12
RW
20;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
21;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
b19a960f 22;;; Copyright © 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
ac257f12 23;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com>
10511c41 24;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com>
8e91cecd 25;;; Copyright © 2017, 2019 Kei Kebreau <kkebreau@posteo.net>
3c986a7d 26;;; Copyright © 2017 Nikita <nikita@n0.is>
a17e1b9e 27;;; Copyright © 2015, 2017, 2018, 2020 Ricardo Wurmus <rekado@elephly.net>
3293fad2 28;;; Copyright © 2016, 2017, 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
5e61de24 29;;; Copyright © 2017, 2018, 2020 Ludovic Courtès <ludo@gnu.org>
9268a3c4 30;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
e57fb285 31;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
968e86bd 32;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
4edefc50 33;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
135c1e0e 34;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
8b27771b 35;;; Copyright © 2020 Josh Marshall <joshua.r.marshall.1991@gmail.com>
bf2ffbcd 36;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
100f7f9d 37;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
d4732deb 38;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
d8989c23 39;;;
233e7676 40;;; This file is part of GNU Guix.
d8989c23 41;;;
233e7676 42;;; GNU Guix is free software; you can redistribute it and/or modify it
d8989c23
NK
43;;; under the terms of the GNU General Public License as published by
44;;; the Free Software Foundation; either version 3 of the License, or (at
45;;; your option) any later version.
46;;;
233e7676 47;;; GNU Guix is distributed in the hope that it will be useful, but
d8989c23
NK
48;;; WITHOUT ANY WARRANTY; without even the implied warranty of
49;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
50;;; GNU General Public License for more details.
51;;;
52;;; You should have received a copy of the GNU General Public License
233e7676 53;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
d8989c23 54
1ffa7090 55(define-module (gnu packages check)
59a43334 56 #:use-module (gnu packages)
f767bcca 57 #:use-module (gnu packages autotools)
bd9d3db6 58 #:use-module (gnu packages base)
ac257f12
RW
59 #:use-module (gnu packages bash)
60 #:use-module (gnu packages compression)
bd9d3db6 61 #:use-module (gnu packages linux)
40899635 62 #:use-module (gnu packages llvm)
bd9d3db6
RW
63 #:use-module (gnu packages glib)
64 #:use-module (gnu packages gnome)
8d54ace7 65 #:use-module (gnu packages golang)
bd9d3db6 66 #:use-module (gnu packages gtk)
85b28320 67 #:use-module (gnu packages perl)
bd9d3db6 68 #:use-module (gnu packages pkg-config)
5f6aba6b 69 #:use-module (gnu packages python)
dbcd2050 70 #:use-module (gnu packages python-build)
ac257f12 71 #:use-module (gnu packages python-web)
44d10b1f 72 #:use-module (gnu packages python-xyz)
33dc54b0 73 #:use-module (gnu packages time)
c5d39909 74 #:use-module (gnu packages xml)
5be2931c 75 #:use-module (guix utils)
ac257f12 76 #:use-module ((guix licenses) #:prefix license:)
d8989c23
NK
77 #:use-module (guix packages)
78 #:use-module (guix download)
3bfc99c7 79 #:use-module (guix git-download)
2259442b 80 #:use-module (guix build-system cmake)
c648fa41 81 #:use-module (guix build-system glib-or-gtk)
3bfc99c7 82 #:use-module (guix build-system gnu)
38ea84d8 83 #:use-module (guix build-system go)
986aea0c 84 #:use-module (guix build-system meson)
cd669fde 85 #:use-module (guix build-system python)
d4732deb
MC
86 #:use-module (guix build-system trivial)
87 #:use-module (srfi srfi-1))
d8989c23 88
c648fa41
RG
89(define-public pedansee
90 (package
91 (name "pedansee")
92 (version "0.0.3")
93 (source
94 (origin
95 (method url-fetch)
96 (uri
97 (string-append "https://www.flyn.org/projects/"
98 name "/" name "-" version ".tar.gz"))
99 (sha256
100 (base32 "0lsg791x6n95pxg6vif8qfc46nqcamhjq3g0dl5xqf6imy7n3acd"))))
101 (build-system glib-or-gtk-build-system)
102 (native-inputs
103 `(("clang" ,clang)
104 ("pkg-config" ,pkg-config)
105 ("python" ,python-wrapper)))
106 (inputs
107 `(("glib" ,glib)))
108 (synopsis "Code checker for C")
109 (description "Pedansee checks C source files for compliance with a particular
110programming style. The style is currently defined by the pedansee source code
111in the form of functions which walk each source file’s syntax tree. You can
112modify some aspects of this style through the use of regular expressions.")
113 (home-page "https://www.flyn.org/projects/pedansee/")
114 (license license:gpl3+)))
115
986aea0c
RG
116(define-public mutest
117 (package
118 (name "mutest")
119 (version "0.0.0")
120 (source
121 (origin
122 (method git-fetch)
123 (uri
124 (git-reference
8ed4c468 125 (url "https://github.com/ebassi/mutest")
986aea0c
RG
126 (commit "e6246c9")))
127 (file-name (git-file-name name version))
128 (sha256
129 (base32 "0gdqwq6fvk06wld4rhnw5752hahrvhd69zrci045x25rwx90x26q"))))
130 (build-system meson-build-system)
131 (synopsis "Small C testing library")
132 (description "Mutest aims to be a small unit testing library for C projects,
133with an API heavily modelled on high level Behavior-Driver Development frameworks
134like Jasmine or Mocha.")
135 (home-page "https://ebassi.github.io/mutest/mutest.md.html")
136 (license license:expat)))
137
d8989c23
NK
138(define-public check
139 (package
140 (name "check")
3bb9ba15 141 (version "0.15.2")
d8989c23
NK
142 (source
143 (origin
144 (method url-fetch)
dfdf8d74
MB
145 (uri (string-append "https://github.com/libcheck/check/releases/download/"
146 version "/check-" version ".tar.gz"))
d8989c23
NK
147 (sha256
148 (base32
3bb9ba15 149 "02m25y9m46pb6n46s51av62kpd936lkfv3b13kfpckgvmh5lxpm8"))))
d8989c23 150 (build-system gnu-build-system)
f4d9339c 151 (home-page "https://libcheck.github.io/check/")
35b9e423 152 (synopsis "Unit test framework for C")
d8989c23 153 (description
35b9e423 154 "Check is a unit testing framework for C. It features a simple
d8989c23
NK
155interface for defining unit tests, putting little in the way of the
156developer. Tests are run in a separate address space, so Check can
157catch both assertion failures and code errors that cause segmentation
35b9e423 158faults or other signals. The output from unit tests can be used within
d8989c23 159source code editors and IDEs.")
ac257f12 160 (license license:lgpl2.1+)))
34352662 161
e1409c76
MB
162;; Some packages require older versions. Removed once no longer needed.
163(define-public check-0.14
164 (package
165 (inherit check)
166 (version "0.14.0")
167 (source (origin
168 (method url-fetch)
169 (uri (string-append "https://github.com/libcheck/check/releases"
170 "/download/" version "/check-" version ".tar.gz"))
171 (sha256
172 (base32
173 "02zkfiyklckmivrfvdsrlzvzphkdsgjrz3igncw05dv5pshhq3xx"))))))
174
2a84b550 175(define-public check-0.12
29961439
MB
176 (package
177 (inherit check)
2a84b550
MB
178 (version "0.12.0")
179 (source (origin
180 (method url-fetch)
181 (uri (string-append "https://github.com/libcheck/check/releases"
182 "/download/" version "/check-" version ".tar.gz"))
183 (sha256
184 (base32
185 "0d22h8xshmbpl9hba9ch3xj8vb9ybm5akpsbbh7yj07fic4h2hj6"))))))
186
544df98c
MB
187(define-public clitest
188 (package
189 (name "clitest")
190 (version "0.3.0")
191 (home-page "https://github.com/aureliojargas/clitest")
192 (source (origin
193 (method git-fetch)
194 (uri (git-reference
195 (url home-page)
196 (commit (string-append "v" version))))
197 (file-name (git-file-name name version))
198 (sha256
199 (base32
200 "0zw5wra9hc717srmcar1wm4i34kyj8c49ny4bb7y3nrvkjp2pdb5"))))
201 (build-system gnu-build-system)
202 (arguments
203 `(#:phases
204 (modify-phases %standard-phases
205 ;; This package is distributed as a single shell script and comes
206 ;; without a proper build system.
207 (delete 'configure)
208 (delete 'build)
209 (replace 'check
210 (lambda _
211 (substitute* "test.md"
212 ;; One test looks for an error from grep in the form "grep: foo",
213 ;; but our grep returns the absolute file name on errors. Adjust
214 ;; the test to cope with that.
215 (("sed 's/\\^e\\*grep: \\.\\*/")
216 "sed 's/.*e*grep: .*/"))
217
218 (setenv "HOME" "/tmp")
219 (invoke "./clitest" "test.md")))
220 (replace 'install
221 (lambda* (#:key outputs #:allow-other-keys)
222 (let ((out (assoc-ref outputs "out")))
223 (install-file "clitest" (string-append out "/bin"))
224 (install-file "README.md"
225 (string-append out "/share/doc/clitest-" ,version))
226 #t))))))
227 (native-inputs
228 `(("perl" ,perl))) ;for tests
229 (synopsis "Command line test tool")
230 (description
231 "@command{clitest} is a portable shell script that performs automatic
232testing of Unix command lines.")
233 (license license:expat)))
234
f767bcca
RW
235(define-public cunit
236 (package
237 (name "cunit")
238 (version "2.1-3")
239 (source
240 (origin
241 (method url-fetch)
242 (uri (string-append "mirror://sourceforge/cunit/CUnit/"
243 version "/CUnit-" version ".tar.bz2"))
244 (sha256
245 (base32
246 "057j82da9vv4li4z5ri3227ybd18nzyq81f6gsvhifs5z0vr3cpm"))))
247 (build-system gnu-build-system)
248 (arguments '(#:phases
911c42de 249 (modify-phases %standard-phases
7aa37aa0
RW
250 ;; XXX: The "bootstrap" phase detects the "bootstrap"
251 ;; script, but fails to execute it, so we bootstrap
252 ;; manually.
253 (replace 'bootstrap
254 (lambda _ (invoke "autoreconf" "-vfi"))))))
f767bcca
RW
255 (native-inputs
256 `(("automake" ,automake)
257 ("autoconf" ,autoconf)
258 ("libtool" ,libtool)))
259 (home-page "http://cunit.sourceforge.net/")
260 (synopsis "Automated testing framework for C")
261 (description
262 "CUnit is a lightweight system for writing, administering, and running
263unit tests in C. It provides C programmers with basic testing functionality
264with a flexible variety of user interfaces.")
ac257f12 265 (license license:gpl2+)))
f767bcca 266
34352662
JD
267(define-public cppunit
268 (package
269 (name "cppunit")
7982e250 270 (version "1.15.1")
34352662
JD
271 (source (origin
272 (method url-fetch)
34a6f4dc
EF
273 (uri (string-append "http://dev-www.libreoffice.org/src/"
274 name "-" version ".tar.gz"))
34352662
JD
275 (sha256
276 (base32
7982e250 277 "19qpqzy66bq76wcyadmi3zahk5v1ll2kig1nvg96zx9padkcdic9"))))
28edab7a
AE
278 ;; Explicitly link with libdl. This is expected to be done by packages
279 ;; relying on cppunit for their tests. However, not all of them do.
280 ;; If we added the linker flag to such packages, we would pollute all
281 ;; binaries, not only those used for testing.
282 (arguments
283 `(#:make-flags '("LDFLAGS=-ldl")))
34352662 284 (build-system gnu-build-system)
34a6f4dc 285 (home-page "https://wiki.freedesktop.org/www/Software/cppunit/")
34352662
JD
286 (synopsis "Unit testing framework for C++")
287 (description "CppUnit is the C++ port of the famous JUnit framework for
72b030c0 288unit testing. Test output is in XML for automatic testing and GUI based for
34352662 289supervised tests.")
ac257f12 290 (license license:lgpl2.1))) ; no copyright notices. LGPL2.1 is in the tarball
3bfc99c7 291
f58e491f
EF
292(define-public shunit2
293 (package
294 (name "shunit2")
295 (version "2.1.8")
296 (source (origin
297 (method git-fetch)
298 (uri (git-reference
299 (url "https://github.com/kward/shunit2")
300 (commit (string-append "v" version))))
301 (file-name (git-file-name name version))
302 (sha256
303 (base32
304 "08vs0jjl3pfh100sjlw31x4638xj7fghr0j2g1zfikba8n1f9491"))))
305 (build-system gnu-build-system)
306 (arguments
307 `(#:phases
308 (modify-phases %standard-phases
309 (delete 'configure) ; no configure script
310 (delete 'build)
311 (add-after 'patch-source-shebangs 'patch-more-shebangs
312 (lambda _
313 (substitute* "shunit2"
314 (("#! /bin/sh") (string-append "#! " (which "sh")))
315 (("/usr/bin/od") (which "od")))
316 (substitute* "test_runner"
317 (("/bin/sh") (which "sh"))
318 (("/bin/bash") (which "bash")))
319 #t))
320 (replace 'check
321 (lambda* (#:key tests? #:allow-other-keys)
322 (when tests?
323 ;; This test is buggy in the build container.
324 (delete-file "shunit2_misc_test.sh")
325 (invoke "sh" "test_runner"))
326 #t))
327 (replace 'install
328 (lambda* (#:key outputs #:allow-other-keys)
329 (install-file "shunit2"
330 (string-append (assoc-ref outputs "out")
331 "/bin"))
332 #t)))))
333 (home-page "https://github.com/kward/shunit2")
334 (synopsis "@code{xUnit} based unit testing for Unix shell scripts")
335 (description "@code{shUnit2} was originally developed to provide a
336consistent testing solution for @code{log4sh}, a shell based logging framework
337similar to @code{log4j}. It is designed to work in a similar manner to JUnit,
338PyUnit and others.")
339 (license license:asl2.0)))
340
56e72c00
FT
341;; When dependent packages upgraded to use newer version of catch, this one should
342;; be removed.
3bfc99c7
EB
343(define-public catch-framework
344 (package
345 (name "catch")
a232ce42 346 (version "1.3.5") ;Sub-minor is the build number
3bfc99c7
EB
347 (source (origin
348 (method git-fetch)
349 (uri (git-reference
350 (url "https://github.com/philsquared/Catch")
14a17ef6 351 ;; Semi-arbitrary.
a232ce42 352 (commit "ae5ee2cf63d6d67bd1369b512d2a7b60b571c907")))
3bfc99c7
EB
353 (file-name (string-append name "-" version))
354 (sha256
355 (base32
a232ce42 356 "1yfb3lxv929szqy1nw9xw3d45wzkppziqshkjxvrb1fdmf46x564"))))
3bfc99c7
EB
357 (build-system trivial-build-system)
358 (arguments
359 `(#:modules ((guix build utils))
360 #:builder (begin
361 (use-modules (guix build utils))
362 (let* ((source (assoc-ref %build-inputs "source"))
363 (output (assoc-ref %outputs "out"))
364 (incdir (string-append output "/include"))
365 (docdir (string-append output "/share/doc/catch-"
366 ,version)))
e3cfef22
MW
367 (for-each mkdir-p (list incdir docdir))
368 (install-file (string-append source
369 "/single_include/catch.hpp")
370 incdir)
371 (copy-recursively (string-append source "/docs")
372 docdir)
373 #t))))
3bfc99c7
EB
374 (home-page "http://catch-lib.net/")
375 (synopsis "Automated test framework for C++ and Objective-C")
376 (description
377 "Catch stands for C++ Automated Test Cases in Headers and is a
378multi-paradigm automated test framework for C++ and Objective-C.")
ac257f12 379 (license license:boost1.0)))
2259442b 380
8aa59a54 381(define-public catch-framework2-1
56e72c00
FT
382 (package
383 (name "catch2")
384 (version "1.12.2")
385 (home-page "https://github.com/catchorg/Catch2")
386 (source (origin
28bcf809
EF
387 (method git-fetch)
388 (uri (git-reference
389 (url "https://github.com/catchorg/Catch2")
390 (commit (string-append "v" version))))
391 (file-name (git-file-name name version))
56e72c00
FT
392 (sha256
393 (base32
28bcf809 394 "1gdp5wm8khn02g2miz381llw3191k7309qj8s3jd6sasj01rhf23"))))
56e72c00
FT
395 (build-system cmake-build-system)
396 (synopsis "Automated test framework for C++ and Objective-C")
397 (description "Catch2 stands for C++ Automated Test Cases in Headers and is
398a multi-paradigm automated test framework for C++ and Objective-C.")
399 (license license:boost1.0)))
8aa59a54
RW
400
401(define-public catch-framework2
402 (package
403 (name "catch2")
4e395c74 404 (version "2.13.2")
8aa59a54
RW
405 (home-page "https://github.com/catchorg/Catch2")
406 (source (origin
407 (method git-fetch)
408 (uri (git-reference
409 (url "https://github.com/catchorg/Catch2")
410 (commit (string-append "v" version))))
411 (file-name (git-file-name name version))
412 (sha256
413 (base32
4e395c74 414 "100r0kmra8jmra2hv92lzvwcmphpaiccwvq3lpdsa5b7hailhach"))))
8aa59a54
RW
415 (build-system cmake-build-system)
416 (inputs
417 `(("python" ,python-wrapper)))
418 (synopsis "Automated test framework for C++ and Objective-C")
419 (description "Catch2 stands for C++ Automated Test Cases in Headers and is
420a multi-paradigm automated test framework for C++ and Objective-C.")
421 (license license:boost1.0)))
56e72c00 422
cd669fde
KK
423(define-public cmdtest
424 (package
425 (name "cmdtest")
d4f5e68e 426 (version "0.32")
cd669fde
KK
427 (source (origin
428 (method url-fetch)
429 (uri (string-append "http://git.liw.fi/cmdtest/snapshot/"
430 name "-" version ".tar.gz"))
431 (sha256
432 (base32
d4f5e68e 433 "1jmfiyrrqmpvwdb273bkb8hjaf4rwx9njblx29pmr7giyahskwi5"))))
cd669fde
KK
434 (build-system python-build-system)
435 (arguments
436 `(#:python ,python-2
437 #:phases
438 (modify-phases %standard-phases
439 ;; check phase needs to be run before the build phase. If not, the
440 ;; coverage test runner looks for tests for the built source files,
441 ;; and fails.
442 (delete 'check)
443 (add-before 'build 'check
444 (lambda _
445 (substitute* "yarn"
446 (("/bin/sh") (which "sh")))
447 ;; yarn uses python2-ttystatus to print messages.
448 ;; python2-ttystatus requires /dev/tty which is not present in
449 ;; the build environment. Hence assuming-failure test fails.
450 (delete-file "yarn.tests/assuming-failure.script")
451 (delete-file "yarn.tests/assuming-failure.stdout")
29594404 452 (invoke "python" "setup.py" "check"))))))
cd669fde
KK
453 (native-inputs
454 `(("python2-coverage-test-runner" ,python2-coverage-test-runner)))
455 (propagated-inputs
456 `(("python2-cliapp" ,python2-cliapp)
457 ("python2-markdown" ,python2-markdown)
458 ("python2-ttystatus" ,python2-ttystatus)))
459 (home-page "https://liw.fi/cmdtest/")
460 (synopsis "Black box Unix program tester")
461 (description
462 "@code{cmdtest} black box tests Unix command line tools. Roughly, it is
463given a command line and input files, and the expected output, and it verifies
464that the command line produces the expected output. If not, it reports a
465problem, and shows the differences.")
ac257f12 466 (license license:gpl3+)))
cd669fde 467
2259442b
EF
468(define-public cmocka
469 (package
470 (name "cmocka")
1b6c5e80 471 (version "1.1.5")
2259442b
EF
472 (source (origin
473 (method url-fetch)
5be2931c
EF
474 (uri (string-append "https://cmocka.org/files/"
475 (version-major+minor version) "/cmocka-"
2259442b
EF
476 version ".tar.xz"))
477 (sha256
478 (base32
1b6c5e80 479 "1dm8pdvkyfa8dsbz9bpq7wwgixjij4sii9bbn5sgvqjm5ljdik7h"))))
2259442b
EF
480 (build-system cmake-build-system)
481 (arguments
0c048c11 482 `(#:tests? #f)) ; no test target
2259442b
EF
483 (home-page "https://cmocka.org/")
484 (synopsis "Unit testing framework for C")
485 (description "Cmocka is a unit testing framework for C with support for
486mock objects. It only requires the standard C library, and works with
487different compilers. Cmocka supports several different message output formats
488like Test Anything Protocol, Subunit, xUnit XML or the original cmockery output
489format.")
ac257f12 490 (license license:asl2.0)))
dd6e70f9
RJ
491
492(define-public cppcheck
493 (package
494 (name "cppcheck")
b000a0b3 495 (version "2.3")
dd6e70f9 496 (source (origin
fa44d3a6
EF
497 (method git-fetch)
498 (uri (git-reference
499 (url "https://github.com/danmar/cppcheck")
500 (commit version)))
501 (file-name (git-file-name name version))
dd6e70f9 502 (sha256
b000a0b3 503 (base32 "03ic5mig3ryzkf85r95ryagf84s7y5nd6sqr915l3zj30apnifvz"))))
dd6e70f9 504 (build-system cmake-build-system)
4241cb9c
EF
505 (arguments
506 '(#:configure-flags '("-DBUILD_TESTS=ON")))
dd6e70f9
RJ
507 (home-page "http://cppcheck.sourceforge.net")
508 (synopsis "Static C/C++ code analyzer")
509 (description "Cppcheck is a static code analyzer for C and C++. Unlike
510C/C++ compilers and many other analysis tools it does not detect syntax errors
511in the code. Cppcheck primarily detects the types of bugs that the compilers
512normally do not detect. The goal is to detect only real errors in the code
513(i.e. have zero false positives).")
ac257f12 514 (license license:gpl3+)))
5f6aba6b 515
8e91cecd
KK
516(define-public cxxtest
517 (package
518 (name "cxxtest")
519 (version "4.4")
520 (source (origin
521 (method url-fetch)
522 (uri (string-append "mirror://sourceforge/cxxtest/cxxtest/"
523 version "/cxxtest-" version ".tar.gz"))
524 (sha256
525 (base32
526 "1n7pbj4z9ivx005hqvivj9ddhq8awynzg6jishfbypf6j7ply58w"))))
527 (build-system python-build-system)
528 (arguments
529 '(#:phases
530 (modify-phases %standard-phases
531 (add-after 'unpack 'chdir-to-source
532 (lambda _
533 (chdir "python")
534 #t))
535 (add-after 'install 'install-headers
536 (lambda* (#:key outputs #:allow-other-keys)
537 (let* ((out (assoc-ref outputs "out"))
538 (include-dir (string-append out "/include/cxxtest")))
539 (for-each (lambda (header-file)
540 (install-file header-file include-dir))
541 (find-files "../cxxtest"))
542 #t)))
543 (add-after 'install 'install-doc
544 (lambda* (#:key outputs #:allow-other-keys)
545 (let* ((out (assoc-ref outputs "out"))
546 (doc-dir (string-append out "/share/doc/cxxtest")))
547 (install-file "../README" doc-dir)
548 (install-file "../doc/guide.txt" doc-dir)
549 (copy-recursively "../sample" (string-append doc-dir "/sample"))
550 #t))))))
551 (propagated-inputs
552 `(("python-ply" ,python-ply)))
553 (home-page "https://cxxtest.com/")
554 (synopsis "Unit testing framework for C++")
555 (description "CxxTest is a unit testing framework for C++ that is similar
556in spirit to JUnit, CppUnit, and xUnit. CxxTest does not require precompiling
557a CxxTest testing library, it employs no advanced features of C++ (e.g. RTTI)
558and it supports a very flexible form of test discovery.")
559 (license license:lgpl3+)))
560
e14d8dcf
MB
561(define-public doctest
562 (package
563 (name "doctest")
b8f0d11f 564 (version "2.4.5")
e14d8dcf
MB
565 (home-page "https://github.com/onqtam/doctest")
566 (source (origin
567 (method git-fetch)
568 (uri (git-reference (url home-page) (commit version)))
569 (file-name (git-file-name name version))
570 (sha256
571 (base32
b8f0d11f 572 "1pc34dvpgdzx3paqdf0khgs87kvjncx27yn434f5ic33r1lwr9r4"))))
e14d8dcf
MB
573 (build-system cmake-build-system)
574 (synopsis "C++ test framework")
575 (description
576 "doctest is a single-header testing framework for C++11 and later. It
577has been designed to be fast, light and unintrusive.")
578 (license license:expat)))
579
38ea84d8 580(define-public go-gopkg.in-check.v1
19ef857c
LF
581 (let ((commit "788fd78401277ebd861206a03c884797c6ec5541")
582 (revision "1"))
38ea84d8
CB
583 (package
584 (name "go-gopkg.in-check.v1")
585 (version (git-version "0.0.0" revision commit))
586 (source (origin
587 (method git-fetch)
588 (uri (git-reference
b0e7b699 589 (url "https://github.com/go-check/check")
38ea84d8
CB
590 (commit commit)))
591 (file-name (git-file-name name version))
592 (sha256
593 (base32
19ef857c 594 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a"))))
38ea84d8
CB
595 (build-system go-build-system)
596 (arguments
597 '(#:import-path "gopkg.in/check.v1"))
19ef857c
LF
598 (propagated-inputs
599 `(("go-github-com-kr-pretty" ,go-github-com-kr-pretty)))
38ea84d8
CB
600 (synopsis "Rich testing extension for Go's testing package")
601 (description
602 "@code{check} is a rich testing extension for Go's testing package.")
603 (home-page "https://github.com/go-check/check")
604 (license license:bsd-2))))
605
bee30125
CB
606(define-public go-github.com-smartystreets-gunit
607 (package
608 (name "go-github.com-smartystreets-gunit")
609 (version "1.0.0")
610 (source (origin
611 (method git-fetch)
612 (uri (git-reference
613 (url "https://github.com/smartystreets/gunit")
614 (commit version)))
615 (file-name (git-file-name name version))
616 (sha256
617 (base32
618 "00m4zg0kdj49mnpmf9klb44ba71p966xsk6zknrzqgfc8119f35z"))))
619 (build-system go-build-system)
620 (arguments
621 '(;; TODO: This package depends on go-github.com-smartystreets-assertions
622 ;; for running the tests, but go-github.com-smartystreets-assertions
623 ;; depends on this package, so break this loop by not running the tests
624 ;; for this package.
625 #:tests? #f
626 #:import-path "github.com/smartystreets/gunit"))
627 (synopsis "Testing tool for Go, in the style of xUnit")
628 (description
629 "@code{gunit} allows the test author to use a struct as the scope for a
630group of related test cases, in the style of xUnit fixtures. This makes
631extraction of setup/teardown behavior (as well as invoking the system under
632test) much simpler.")
633 (home-page "https://github.com/smartystreets/gunit")
634 (license license:expat)))
635
7952804c
CB
636(define-public go-github.com-smartystreets-assertions
637 (package
638 (name "go-github.com-smartystreets-assertions")
639 (version "1.8.1")
640 (source (origin
641 (method git-fetch)
642 (uri (git-reference
643 (url "https://github.com/smartystreets/assertions")
644 (commit version)))
645 (file-name (git-file-name name version))
646 (sha256
647 (base32
648 "1j0adgbykl55rf2945g0n5bmqdsnjcqlx5dcmpfh4chki43hiwg9"))))
649 (build-system go-build-system)
650 (arguments
651 '(#:import-path "github.com/smartystreets/assertions"))
652 (native-inputs
653 `(("go-github.com-smartystreets-gunit" ,go-github.com-smartystreets-gunit)))
654 (synopsis "Assertions for testing with Go")
655 (description
7fef0800 656 "The @code{assertions} package provides convenient assertion functions
7952804c
CB
657for writing tests in Go.")
658 (home-page "https://github.com/smartystreets/assertions")
659 (license license:expat)))
660
8d54ace7
CB
661(define-public go-github.com-smartystreets-goconvey
662 (package
663 (name "go-github.com-smartystreets-goconvey")
664 (version "1.6.3")
665 (source (origin
666 (method git-fetch)
667 (uri (git-reference
668 (url "https://github.com/smartystreets/goconvey")
669 (commit version)))
670 (file-name (git-file-name name version))
671 (sha256
672 (base32
673 "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh"))))
674 (build-system go-build-system)
675 (arguments
676 '(#:import-path "github.com/smartystreets/goconvey"))
677 (propagated-inputs
678 `(("go-github.com-jtolds-gls" ,go-github.com-jtolds-gls)
679 ("go-github.com-smartystreets-assertions" ,go-github.com-smartystreets-assertions)))
680 (synopsis "Go testing tool with both a web and terminal user interface")
681 (description
682 "GoConvey is a testing tool for Go. It integrates with go test, can show
683test coverage and has a web user interface that will refresh automatically.")
684 (home-page "https://github.com/smartystreets/goconvey")
685 (license license:expat)))
686
5f6aba6b
LG
687(define-public googletest
688 (package
689 (name "googletest")
3293fad2 690 (version "1.10.0")
5f6aba6b
LG
691 (source
692 (origin
d5640c58
EF
693 (method git-fetch)
694 (uri (git-reference
b0e7b699 695 (url "https://github.com/google/googletest")
3b39f09f 696 (commit (string-append "release-" version))))
d5640c58 697 (file-name (git-file-name name version))
5f6aba6b 698 (sha256
3293fad2 699 (base32 "1zbmab9295scgg4z2vclgfgjchfjailjnvzc6f5x9jvlsdi3dpwz"))))
84e36a56 700 (build-system cmake-build-system)
2d5bf32b
MR
701 (arguments
702 `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
5f6aba6b 703 (native-inputs
183fd207 704 `(("python" ,python-wrapper)))
5f6aba6b
LG
705 (home-page "https://github.com/google/googletest/")
706 (synopsis "Test discovery and XUnit test framework")
707 (description "Google Test features an XUnit test framework, automated test
708discovery, death tests, assertions, parameterized tests and XML test report
709generation.")
ac257f12 710 (license license:bsd-3)))
c61794cf 711
3293fad2
MB
712(define-public googletest-1.8
713 (package/inherit
714 googletest
715 (version "1.8.1")
716 (source (origin
717 (method git-fetch)
718 (uri (git-reference
b0e7b699 719 (url "https://github.com/google/googletest")
3293fad2
MB
720 (commit (string-append "release-" version))))
721 (file-name (git-file-name "googletest" version))
722 (sha256
723 (base32
724 "0270msj6n7mggh4xqqjp54kswbl7mkcc8px1p5dqdpmw5ngh9fzk"))))))
725
c61794cf 726(define-public cpputest
727 (package
728 (name "cpputest")
729 (version "3.8")
730 (source
731 (origin
732 (method url-fetch)
733 (uri (string-append "https://github.com/cpputest/cpputest/releases/download/v"
734 version "/cpputest-" version ".tar.gz"))
735 (sha256
736 (base32
737 "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8"))))
738 (build-system gnu-build-system)
739 (native-inputs
740 `(("googletest" ,googletest)))
741 (home-page "https://cpputest.github.io/")
742 (synopsis "Unit testing and mocking framework for C/C++")
743 (description
744 "CppUTest is a C/C++ based unit xUnit test framework. It is written in
745C++ but is used in C and C++ projects and frequently used in embedded systems
746but it works for any C/C++ project.")
ac257f12 747 (license license:bsd-3)))
63aa8558
RW
748
749(define-public python-parameterized
750 (package
751 (name "python-parameterized")
507278f7 752 (version "0.7.4")
63aa8558
RW
753 (source
754 (origin
755 (method url-fetch)
756 (uri (pypi-uri "parameterized" version))
757 (sha256
507278f7 758 (base32 "1444fdz5bj0k10nmhxv0bv2gfrfisi7hfzqdndb0pvhf4g3qq3qr"))))
63aa8558 759 (build-system python-build-system)
ae3909eb
MB
760 (arguments
761 '(#:phases (modify-phases %standard-phases
762 (replace 'check
763 (lambda* (#:key tests? #:allow-other-keys)
764 (if tests?
765 (invoke "nosetests" "-v")
766 (format #t "test suite not run~%"))
767 #t)))))
768 (native-inputs
769 `(("python-mock" ,python-mock)
770 ("python-nose" ,python-nose)))
63aa8558
RW
771 (home-page "https://github.com/wolever/parameterized")
772 (synopsis "Parameterized testing with any Python test framework")
773 (description
774 "Parameterized is a Python library that aims to fix parameterized testing
775for every Python test framework. It supports nose, py.test, and unittest.")
ae3909eb 776 (properties `((python2-variant . ,(delay python2-parameterized))))
ac257f12 777 (license license:bsd-2)))
63aa8558
RW
778
779(define-public python2-parameterized
ae3909eb
MB
780 (let ((base (package-with-python2 (strip-python2-variant
781 python-parameterized))))
782 (package/inherit
783 base
784 (source
785 (origin
786 (inherit (package-source base))
787 (patches (search-patches "python2-parameterized-docstring-test.patch")))))))
ac257f12 788
e57fb285
PL
789(define-public python-minimock
790 (package
791 (name "python-minimock")
792 (version "1.2.8")
793 (source
794 (origin
795 (method url-fetch)
796 (uri (pypi-uri "MiniMock" version))
797 (sha256
798 (base32
799 "0k2sxb1ibnyg05iblz7zhbv825f1zk9906rab7883iqgvzmdzpsz"))))
800 (build-system python-build-system)
801 (home-page "https://pypi.org/project/MiniMock")
802 (synopsis "Simple Python library for using mock objects")
803 (description "MiniMock is a simple library for building mock objects with
804doctest.")
805 (license license:expat)))
806
807(define-public python2-minimock
808 (package-with-python2 python-minimock))
809
ac257f12
RW
810(define-public python-mock
811 (package
812 (name "python-mock")
dab41b95 813 (version "3.0.5")
ac257f12
RW
814 (source
815 (origin
816 (method url-fetch)
817 (uri (pypi-uri "mock" version))
818 (sha256
819 (base32
dab41b95 820 "1hrp6j0yrx2xzylfv02qa8kph661m6yq4p0mc8fnimch9j4psrc3"))))
2dd12924 821 (propagated-inputs
dab41b95 822 `(("python-six" ,python-six)))
ac257f12 823 (build-system python-build-system)
2dd12924 824 (arguments
dab41b95
MB
825 ;; FIXME: Tests require "pytest", which depends on this package.
826 '(#:tests? #f))
ac257f12
RW
827 (home-page "https://github.com/testing-cabal/mock")
828 (synopsis "Python mocking and patching library for testing")
829 (description
830 "Mock is a library for testing in Python. It allows you to replace parts
831of your system under test with mock objects and make assertions about how they
832have been used.")
2dd12924 833 (properties `((python2-variant . ,(delay python2-mock))))
ac257f12
RW
834 (license license:expat)))
835
836(define-public python2-mock
2dd12924
MB
837 (let ((base (package-with-python2
838 (strip-python2-variant python-mock))))
1a265842 839 (package/inherit base
2dd12924
MB
840 (propagated-inputs
841 `(("python2-functools32" ,python2-functools32)
842 ("python2-funcsigs" ,python2-funcsigs)
843 ,@(package-propagated-inputs base))))))
ac257f12
RW
844
845(define-public python-nose
846 (package
847 (name "python-nose")
848 (version "1.3.7")
849 (source
850 (origin
851 (method url-fetch)
852 (uri (pypi-uri "nose" version))
853 (sha256
854 (base32
855 "164a43k7k2wsqqk1s6vavcdamvss4mz0vd6pwzv2h9n8rgwzxgzi"))))
856 (build-system python-build-system)
857 (arguments
858 '(#:tests? #f)) ; FIXME: test suite fails
859 (home-page "http://readthedocs.org/docs/nose/")
860 (synopsis "Python testing library")
861 (description
862 "Nose extends the unittest library to make testing easier.")
863 (license license:lgpl2.0+)))
864
865(define-public python2-nose
866 (package-with-python2 python-nose))
867
868(define-public python-nose2
869 (package
870 (name "python-nose2")
cd773f11 871 (version "0.9.2")
ac257f12
RW
872 (source
873 (origin
874 (method url-fetch)
875 (uri (pypi-uri "nose2" version))
876 (sha256
877 (base32
cd773f11 878 "0pmbb6nk31yhgh4zkcblzxsznml7f7pf5q1ihgrwvbxv4mwzfql7"))))
ac257f12
RW
879 (build-system python-build-system)
880 (arguments `(#:tests? #f)) ; 'module' object has no attribute 'collector'
881 (propagated-inputs
882 `(("python-cov-core" ,python-cov-core)
883 ("python-pytest-cov" ,python-pytest-cov)
884 ("python-six" ,python-six)))
885 (home-page "https://github.com/nose-devs/nose2")
886 (synopsis "Next generation of nicer testing for Python")
887 (description
888 "Nose2 is the next generation of nicer testing for Python, based on the
889plugins branch of unittest2. Nose2 aims to improve on nose by providing a
890better plugin api, being easier for users to configure, and simplifying internal
891interfaces and processes.")
892 (license license:bsd-2)))
893
894(define-public python2-nose2
895 (package-with-python2 python-nose2))
896
897(define-public python-unittest2
898 (package
899 (name "python-unittest2")
2dd12924 900 (version "1.1.0")
ac257f12
RW
901 (source
902 (origin
903 (method url-fetch)
2dd12924
MB
904 (uri (pypi-uri "unittest2" version))
905 (patches
906 (search-patches "python-unittest2-python3-compat.patch"
907 "python-unittest2-remove-argparse.patch"))
ac257f12
RW
908 (sha256
909 (base32
2dd12924 910 "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212"))))
ac257f12 911 (build-system python-build-system)
2dd12924
MB
912 (arguments
913 '(#:phases
914 (modify-phases %standard-phases
915 (replace 'check
916 (lambda _
917 (zero? (system* "python" "-m" "unittest2" "discover" "--verbose")))))))
918 (propagated-inputs
919 `(("python-six" ,python-six)
920 ("python-traceback2" ,python-traceback2)))
e85af137 921 (home-page "https://pypi.org/project/unittest2/")
ac257f12
RW
922 (synopsis "Python unit testing library")
923 (description
924 "Unittest2 is a replacement for the unittest module in the Python
925standard library.")
926 (license license:psfl)))
927
928(define-public python2-unittest2
2dd12924 929 (package-with-python2 python-unittest2))
ac257f12
RW
930
931(define-public python-pytest
932 (package
933 (name "python-pytest")
b8f4d3f4 934 (version "5.3.5")
ac257f12
RW
935 (source
936 (origin
937 (method url-fetch)
2dd12924 938 (uri (pypi-uri "pytest" version))
ac257f12
RW
939 (sha256
940 (base32
b8f4d3f4 941 "139i9cjhrv5aici3skq8iihvfb3lq0d8xb5j7qycr2hlk8cfjpqd"))))
ac257f12 942 (build-system python-build-system)
2dd12924
MB
943 (arguments
944 `(#:phases
945 (modify-phases %standard-phases
1a246c01 946 (replace 'check
c5d39909
MB
947 (lambda* (#:key (tests? #t) #:allow-other-keys)
948 (if tests?
949 (invoke "pytest" "-vv" "-k"
950 (string-append
951 ;; These tests involve the /usr directory, and fails.
952 "not test_remove_dir_prefix"
953 " and not test_argcomplete"
954 ;; This test tries to override PYTHONPATH, and
955 ;; subsequently fails to locate the test libraries.
956 " and not test_collection"))
957 (format #t "test suite not run~%"))
958 #t)))))
ac257f12 959 (propagated-inputs
a9ae30b7
MB
960 `(("python-atomicwrites" ,python-atomicwrites)
961 ("python-attrs" ,python-attrs-bootstrap)
7ad5c6dd 962 ("python-more-itertools" ,python-more-itertools)
c5d39909 963 ("python-packaging" ,python-packaging-bootstrap)
7ad5c6dd
AI
964 ("python-pluggy" ,python-pluggy)
965 ("python-py" ,python-py)
c5d39909
MB
966 ("python-six" ,python-six-bootstrap)
967 ("python-wcwidth" ,python-wcwidth)))
ac257f12
RW
968 (native-inputs
969 `(;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
970 ("bash" ,bash)
2dd12924 971 ("python-hypothesis" ,python-hypothesis)
ac257f12 972 ("python-nose" ,python-nose)
2dd12924 973 ("python-mock" ,python-mock)
4750b3a2 974 ("python-pytest" ,python-pytest-bootstrap)
c5d39909
MB
975 ("python-setuptools-scm" ,python-setuptools-scm)
976 ("python-xmlschema" ,python-xmlschema)))
aefa2912 977 (home-page "https://docs.pytest.org/en/latest/")
ac257f12
RW
978 (synopsis "Python testing library")
979 (description
980 "Pytest is a testing tool that provides auto-discovery of test modules
981and functions, detailed info on failing assert statements, modular fixtures,
982and many external plugins.")
7ad5c6dd
AI
983 (license license:expat)
984 (properties `((python2-variant . ,(delay python2-pytest))))))
ac257f12 985
d4732deb
MC
986(define-public python-pytest-6
987 (package
988 (inherit (strip-python2-variant python-pytest))
989 (version "6.1.2")
990 (source
991 (origin
992 (method url-fetch)
993 (uri (pypi-uri "pytest" version))
994 (sha256
995 (base32
996 "0gl2sdm322vzmsh5k4f8kj9raiq2y7kdinnca4m45ifvii5fk9y0"))))
997 (arguments
998 `(#:phases
999 (modify-phases %standard-phases
1000 (replace 'check
1001 (lambda* (#:key (tests? #t) #:allow-other-keys)
1002 (setenv "TERM" "dumb") ;attempt disabling markup tests
1003 (if tests?
1004 (invoke "pytest" "-vv" "-k"
1005 (string-append
1006 ;; This test involve the /usr directory, and fails.
1007 " not test_argcomplete"
1008 ;; These test do not honor the isatty detection and
1009 ;; fail.
1010 " and not test_code_highlight"
1011 " and not test_color_yes"))
1012 (format #t "test suite not run~%"))
1013 #t)))))
1014 (propagated-inputs
1015 (append (alist-delete "python-py"
1016 (package-propagated-inputs python-pytest))
1017 `(("python-py" ,python-py-next))))
1018 (native-inputs
1019 (append (alist-delete "python-pytest"
1020 (package-native-inputs python-pytest))
1021 `(("python-pytest" ,python-pytest-6-bootstrap)
1022 ("python-toml" ,python-toml)
1023 ("python-iniconfig" ,python-iniconfig))))))
1024
c5d39909 1025;; Pytest 4.x are the last versions that support Python 2.
ac257f12 1026(define-public python2-pytest
c5d39909
MB
1027 (package
1028 (inherit (strip-python2-variant python-pytest))
1029 (name "python2-pytest")
327c1d3a 1030 (version "4.6.11")
c5d39909
MB
1031 (source (origin
1032 (method url-fetch)
1033 (uri (pypi-uri "pytest" version))
1034 (sha256
1035 (base32
327c1d3a 1036 "0ls3pqr86xgif6bphsb6wrww9r2vc7p7a2naq8zcq8115wwq5yjh"))))
c5d39909
MB
1037 (build-system python-build-system)
1038 (arguments
1039 `(#:python ,python-2
1040 ,@(package-arguments python-pytest)))
1041 (propagated-inputs
1042 `(("python-atomicwrites" ,python2-atomicwrites)
1043 ("python-attrs" ,python2-attrs-bootstrap)
1044 ("python-funcsigs" ,python2-funcsigs)
0ae97f5d 1045 ("python-importlib-metadata" ,python2-importlib-metadata-bootstrap)
c5d39909 1046 ("python-more-itertools" ,python2-more-itertools)
0ae97f5d 1047 ("python-packaging" ,python2-packaging-bootstrap)
c5d39909
MB
1048 ("python-pathlib2" ,python2-pathlib2)
1049 ("python-pluggy" ,python2-pluggy)
1050 ("python-py" ,python2-py)
0ae97f5d
MB
1051 ("python-six" ,python2-six-bootstrap)
1052 ("python-wcwidth" ,python2-wcwidth)))
c5d39909
MB
1053 (native-inputs
1054 `(("bash" ,bash) ;tests require 'compgen'
1055 ("python-hypothesis" ,python2-hypothesis)
1056 ("python-nose" ,python2-nose)
1057 ("python-mock" ,python2-mock)
1058 ("python-pytest" ,python2-pytest-bootstrap)
1059 ("python-setuptools-scm" ,python2-setuptools-scm)))))
ac257f12 1060
2dd12924 1061(define-public python-pytest-bootstrap
ac257f12 1062 (package
7ad5c6dd 1063 (inherit (strip-python2-variant python-pytest))
2dd12924
MB
1064 (name "python-pytest-bootstrap")
1065 (native-inputs `(("python-setuptools-scm" ,python-setuptools-scm)))
7ad5c6dd
AI
1066 (arguments `(#:tests? #f))
1067 (properties `((python2-variant . ,(delay python2-pytest-bootstrap))))))
ac257f12 1068
d4732deb
MC
1069(define-public python-pytest-6-bootstrap
1070 (package
1071 (inherit (strip-python2-variant python-pytest-6))
1072 (name "python-pytest-bootstrap")
1073 (arguments `(#:tests? #f))
1074 (native-inputs
1075 `(("python-setuptools-scm" ,python-setuptools-scm)
1076 ("python-toml" ,python-toml)))))
1077
2dd12924 1078(define-public python2-pytest-bootstrap
c5d39909
MB
1079 (hidden-package
1080 (package/inherit
1081 python2-pytest
1082 (name "python2-pytest-bootstrap")
1083 (arguments
1084 (substitute-keyword-arguments (package-arguments python2-pytest)
1085 ((#:tests? _ #f) #f)))
1086 (native-inputs
1087 `(("python-setuptools-scm" ,python2-setuptools-scm)))
1088 (propagated-inputs
1089 `(("python-atomicwrites" ,python2-atomicwrites)
1090 ("python-attrs" ,python2-attrs-bootstrap)
1091 ("python-funcsigs" ,python2-funcsigs-bootstrap)
0ae97f5d 1092 ("python-importlib-metadata" ,python2-importlib-metadata-bootstrap)
c5d39909 1093 ("python-more-itertools" ,python2-more-itertools)
0ae97f5d 1094 ("python-packaging" ,python2-packaging-bootstrap)
c5d39909 1095 ("python-pathlib2" ,python2-pathlib2-bootstrap)
0ae97f5d
MB
1096 ("python-pluggy" ,python2-pluggy-bootstrap)
1097 ("python-py" ,python2-py)
1098 ("python-wcwidth" ,python2-wcwidth))))))
ac257f12
RW
1099
1100(define-public python-pytest-cov
1101 (package
1102 (name "python-pytest-cov")
cc63d8cf 1103 (version "2.8.1")
ac257f12
RW
1104 (source
1105 (origin
1106 (method url-fetch)
1107 (uri (pypi-uri "pytest-cov" version))
1108 (sha256
cc63d8cf 1109 (base32 "0avzlk9p4nc44k7lpx9109dybq71xqnggxb9f4hp0l64pbc44ryc"))))
ac257f12
RW
1110 (build-system python-build-system)
1111 (arguments
1112 `(#:phases
1113 (modify-phases %standard-phases
1114 (replace 'check
1115 (lambda _
123d92ea 1116 ;; Options taken from tox.ini.
ac257f12 1117 ;; TODO: make "--restructuredtext" tests pass. They currently fail
123d92ea 1118 ;; with "Duplicate implicit target name".
29594404
MW
1119 (invoke "python" "./setup.py" "check"
1120 "--strict" "--metadata"))))))
ac257f12
RW
1121 (propagated-inputs
1122 `(("python-coverage" ,python-coverage)
1123 ("python-pytest" ,python-pytest)))
1124 (home-page "https://github.com/pytest-dev/pytest-cov")
1125 (synopsis "Pytest plugin for measuring coverage")
1126 (description
1127 "Pytest-cov produces coverage reports. It supports centralised testing and
1128distributed testing in both @code{load} and @code{each} modes. It also
1129supports coverage of subprocesses.")
1130 (license license:expat)))
1131
1132(define-public python2-pytest-cov
1133 (package-with-python2 python-pytest-cov))
1134
1135(define-public python-pytest-runner
1136 (package
1137 (name "python-pytest-runner")
861a2659 1138 (version "5.2")
ac257f12
RW
1139 (source
1140 (origin
1141 (method url-fetch)
1142 (uri (pypi-uri "pytest-runner" version))
1143 (sha256
1144 (base32
861a2659 1145 "0awll1bva5zy8cspsxcpv7pjcrdf5c6pf56nqn4f74vvmlzfgiwn"))))
ac257f12 1146 (build-system python-build-system)
861a2659
MB
1147 (arguments
1148 '(;; FIXME: The test suite requires 'python-flake8' and 'python-black',
1149 ;; but that introduces a circular dependency.
1150 #:tests? #f
1151 #:phases (modify-phases %standard-phases
1152 (replace 'check
1153 (lambda* (#:key tests? #:allow-other-keys)
1154 (if tests?
1155 (invoke "pytest" "-vv")
1156 (format #t "test suite not run~%"))
1157 #t)))))
ac257f12 1158 (native-inputs
861a2659 1159 `(("python-setuptools-scm" ,python-setuptools-scm)))
ac257f12
RW
1160 (home-page "https://github.com/pytest-dev/pytest-runner")
1161 (synopsis "Invoke py.test as a distutils command")
1162 (description
1163 "This package provides a @command{pytest-runner} command that
1164@file{setup.py} files can use to run tests.")
1165 (license license:expat)))
1166
1167(define-public python2-pytest-runner
1168 (package-with-python2 python-pytest-runner))
1169
ff0efc8f
MB
1170;; python-bleach 3.1.0 requires this ancient version of pytest-runner.
1171;; Remove once no longer needed.
1172(define-public python-pytest-runner-2
1173 (package/inherit
1174 python-pytest-runner
1175 (version "2.12.2")
1176 (source (origin
1177 (method url-fetch)
1178 (uri (pypi-uri "pytest-runner" version))
1179 (sha256
1180 (base32
1181 "11ivjj9hfphkv4yfb2g74av4yy86y8gcbf7gbif0p1hcdfnxg3w6"))))))
1182
1183(define-public python2-pytest-runner-2
1184 (package-with-python2 python-pytest-runner-2))
1185
bf2ffbcd
VM
1186(define-public python-pytest-lazy-fixture
1187 (package
1188 (name "python-pytest-lazy-fixture")
1189 (version "0.6.3")
1190 (source
1191 (origin
1192 (method url-fetch)
1193 (uri (pypi-uri "pytest-lazy-fixture" version))
1194 (sha256
1195 (base32 "1b0hmnsxw4s2wf9pks8dg6dfy5cx3zcbzs8517lfccxsfizhqz8f"))))
1196 (build-system python-build-system)
1197 (arguments
1198 '(#:phases
1199 (modify-phases %standard-phases
1200 (replace 'check
1201 (lambda* (#:key inputs outputs #:allow-other-keys)
1202 ;; Make the installed plugin discoverable by Pytest.
1203 (add-installed-pythonpath inputs outputs)
1204 (invoke "pytest" "-vv"))))))
1205 (propagated-inputs
1206 `(("python-pytest" ,python-pytest)))
1207 (home-page "https://github.com/tvorog/pytest-lazy-fixture")
1208 (synopsis "Use fixtures in @code{pytest.mark.parametrize}")
1209 (description "This plugin helps to use fixtures in
1210@code{pytest.mark.parametrize}.")
1211 (license license:expat)))
1212
ac257f12
RW
1213(define-public python-pytest-mock
1214 (package
1215 (name "python-pytest-mock")
71fb3263 1216 (version "1.10.1")
ac257f12
RW
1217 (source
1218 (origin
1219 (method url-fetch)
f7bd4f23 1220 (uri (pypi-uri "pytest-mock" version))
ac257f12
RW
1221 (sha256
1222 (base32
71fb3263 1223 "1i5mg3ff1qk0wqfcxfz60hwy3q5dskdp36i10ckigkzffg8hc3ad"))))
ac257f12
RW
1224 (build-system python-build-system)
1225 (native-inputs
f7bd4f23 1226 `(("python-setuptools-scm" ,python-setuptools-scm)))
ac257f12
RW
1227 (propagated-inputs
1228 `(("python-pytest" ,python-pytest)))
1229 (home-page "https://github.com/pytest-dev/pytest-mock/")
1230 (synopsis "Thin-wrapper around the mock package for easier use with py.test")
1231 (description
1232 "This plugin installs a @code{mocker} fixture which is a thin-wrapper
1233around the patching API provided by the @code{mock} package, but with the
1234benefit of not having to worry about undoing patches at the end of a test.
1235The mocker fixture has the same API as @code{mock.patch}, supporting the
1236same arguments.")
1237 (properties `((python2-variant . ,(delay python2-pytest-mock))))
1238 (license license:expat)))
1239
1240(define-public python2-pytest-mock
1241 (let ((base (package-with-python2
1242 (strip-python2-variant python-pytest-mock))))
1a265842 1243 (package/inherit base
ac257f12
RW
1244 (propagated-inputs
1245 `(("python2-mock" ,python2-mock)
1246 ,@(package-propagated-inputs base))))))
1247
1248(define-public python-pytest-xdist
1249 (package
1250 (name "python-pytest-xdist")
ed72e558 1251 (version "2.1.0")
ac257f12
RW
1252 (source
1253 (origin
1254 (method url-fetch)
d70cb3e0 1255 (uri (pypi-uri "pytest-xdist" version))
ac257f12
RW
1256 (sha256
1257 (base32
ed72e558 1258 "0wh6pn66nncfs6ay0n863bgyriwsgppn8flx5l7551j1lbqkinc2"))
ac257f12
RW
1259 (modules '((guix build utils)))
1260 (snippet
1261 '(begin
1262 ;; Remove pre-compiled .pyc files from source.
1263 (for-each delete-file-recursively
1264 (find-files "." "__pycache__" #:directories? #t))
1265 (for-each delete-file (find-files "." "\\.pyc$"))
1266 #t))))
1267 (build-system python-build-system)
1268 (arguments
1269 '(#:tests? #f)) ;FIXME: Some tests are failing.
1270 ;; #:phases
1271 ;; (modify-phases %standard-phases
1272 ;; (delete 'check)
1273 ;; (add-after 'install 'check
1274 ;; (lambda* (#:key inputs outputs #:allow-other-keys)
1275 ;; (add-installed-pythonpath inputs outputs)
1276 ;; (zero? (system* "py.test" "-v")))))
1277 (native-inputs
d70cb3e0 1278 `(("python-setuptools-scm" ,python-setuptools-scm)))
ac257f12
RW
1279 (propagated-inputs
1280 `(("python-execnet" ,python-execnet)
1281 ("python-pytest" ,python-pytest)
1282 ("python-py" ,python-py)))
1283 (home-page
1284 "https://github.com/pytest-dev/pytest-xdist")
1285 (synopsis
1286 "Plugin for py.test with distributed testing and loop-on-failing modes")
1287 (description
1288 "The pytest-xdist plugin extends py.test with some unique test execution
1289modes: parallelization, running tests in boxed subprocesses, the ability
1290to run tests repeatedly when failed, and the ability to run tests on multiple
1291Python interpreters or platforms. It uses rsync to copy the existing
1292program code to a remote location, executes there, and then syncs the
1293result back.")
1294 (license license:expat)))
1295
1296(define-public python2-pytest-xdist
1297 (package-with-python2 python-pytest-xdist))
1298
90afa80d
RW
1299(define-public python-pytest-timeout
1300 (package
1301 (name "python-pytest-timeout")
5e579676 1302 (version "1.3.4")
90afa80d
RW
1303 (source
1304 (origin
1305 (method url-fetch)
1306 (uri (pypi-uri "pytest-timeout" version))
1307 (sha256
1308 (base32
5e579676 1309 "13n42azbvs5slvy2n1a9nw17r4qdq10dd68nln3jp925safa3yl0"))))
90afa80d 1310 (build-system python-build-system)
5e579676
MB
1311 (arguments
1312 '(#:phases (modify-phases %standard-phases
1313 (replace 'check
1314 (lambda* (#:key inputs outputs #:allow-other-keys)
1315 ;; Make the installed plugin discoverable by Pytest.
1316 (add-installed-pythonpath inputs outputs)
1317 (invoke "pytest" "-vv"))))))
90afa80d
RW
1318 (propagated-inputs
1319 `(("python-pytest" ,python-pytest)))
5e579676
MB
1320 (native-inputs
1321 `(("python-pexpect" ,python-pexpect)))
d3bb41a7 1322 (home-page "https://github.com/pytest-dev/pytest-timeout")
90afa80d
RW
1323 (synopsis "Plugin for py.test to abort hanging tests")
1324 (description
1325 "This package provides a py.test plugin that aborts hanging tests after a
1326timeout has been exceeded.")
1327 (license license:expat)))
1328
b27a0dd4
LDB
1329(define-public python-pytest-forked
1330 (package
1331 (name "python-pytest-forked")
1332 (version "1.1.3")
1333 (source
1334 (origin
1335 (method url-fetch)
1336 (uri (pypi-uri "pytest-forked" version))
1337 (sha256
1338 (base32
1339 "000i4q7my2fq4l49n8idx2c812dql97qv6qpm2vhrrn9v6g6j18q"))))
1340 (build-system python-build-system)
1341 (propagated-inputs
1342 `(("python-pytest" ,python-pytest)))
1343 (native-inputs
1344 `(("python-setuptools-scm" ,python-setuptools-scm)))
1345 (home-page
1346 "https://github.com/pytest-dev/pytest-forked")
1347 (synopsis
1348 "Run tests in isolated forked subprocesses")
1349 (description
1350 "Pytest plugin which will run each test in a subprocess and will report if
1351a test crashed the process.")
1352 (license license:expat)))
1353
ac257f12
RW
1354(define-public python-scripttest
1355 (package
1356 (name "python-scripttest")
1357 (version "1.3")
1358 (source
1359 (origin
1360 (method url-fetch)
5af020bb 1361 (uri (pypi-uri "scripttest" version))
ac257f12
RW
1362 (sha256
1363 (base32
1364 "0f4w84k8ck82syys7yg9maz93mqzc8p5ymis941x034v44jzq74m"))))
1365 (build-system python-build-system)
1366 (native-inputs
1367 `(("python-pytest" ,python-pytest)))
63b06670
TGR
1368 (home-page (string-append "https://web.archive.org/web/20161029233413/"
1369 "http://pythonpaste.org/scripttest/"))
ac257f12
RW
1370 (synopsis "Python library to test command-line scripts")
1371 (description "Scripttest is a Python helper library for testing
1372interactive command-line applications. With it you can run a script in a
1373subprocess and see the output as well as any file modifications.")
1374 (license license:expat)))
1375
1376(define-public python2-scripttest
1377 (package-with-python2 python-scripttest))
1378
8b93f7e4 1379(define-public python-testtools-bootstrap
ac257f12 1380 (package
8b93f7e4
MB
1381 (name "python-testtools-bootstrap")
1382 (version "2.3.0")
ac257f12
RW
1383 (source
1384 (origin
1385 (method url-fetch)
1386 (uri (pypi-uri "testtools" version))
1387 (sha256
1388 (base32
0ea6af99
EF
1389 "0n8519lk8aaa91vymz842831181wf7fss98hyllhygi3z1nfq9sq"))
1390 (patches (search-patches "python-testtools.patch"))))
ac257f12 1391 (build-system python-build-system)
8b93f7e4 1392 (arguments '(#:tests? #f))
ac257f12 1393 (propagated-inputs
8b93f7e4
MB
1394 `(("python-extras" ,python-extras)
1395 ("python-fixtures" ,python-fixtures-bootstrap)
1396 ("python-mimeparse" ,python-mimeparse)
1397 ("python-pbr" ,python-pbr-minimal)
1398 ("python-six" ,python-six)
1399 ("python-traceback2" ,python-traceback2)
1400 ("python-unittest2" ,python-unittest2)))
ac257f12
RW
1401 (home-page "https://github.com/testing-cabal/testtools")
1402 (synopsis
1403 "Extensions to the Python standard library unit testing framework")
8b93f7e4
MB
1404 (description
1405 "This package is only for bootstrapping. Do not use this.")
1406 (license license:psfl)))
1407
8b93f7e4
MB
1408(define-public python-testtools
1409 (package
1410 (inherit python-testtools-bootstrap)
1411 (name "python-testtools")
1412 (arguments
1413 `(#:phases (modify-phases %standard-phases
1414 (replace 'check
1415 (lambda _
1416 (invoke "python" "-m" "testtools.run"
1417 "testtools.tests.test_suite"))))))
1418 (propagated-inputs
1419 `(("python-extras" ,python-extras)
1420 ("python-fixtures" ,python-fixtures)
1421 ("python-mimeparse" ,python-mimeparse)
1422 ("python-pbr" ,python-pbr)
1423 ("python-six" ,python-six)
1424 ("python-traceback2" ,python-traceback2)
1425 ("python-unittest2" ,python-unittest2)))
1426 (native-inputs
1427 `(("python-testscenarios" ,python-testscenarios-bootstrap)))
ac257f12
RW
1428 (description
1429 "Testtools extends the Python standard library unit testing framework to
1430provide matchers, more debugging information, and cross-Python
8b93f7e4 1431compatibility.")))
ac257f12 1432
8b93f7e4 1433(define-public python-testscenarios-bootstrap
ac257f12 1434 (package
8b93f7e4 1435 (name "python-testscenarios-bootstrap")
ae565a9a 1436 (version "0.5.0")
ac257f12
RW
1437 (source
1438 (origin
1439 (method url-fetch)
ae565a9a 1440 (uri (pypi-uri "testscenarios" version))
ac257f12
RW
1441 (sha256
1442 (base32
ae565a9a 1443 "1dm2aydqpv76vnsk1pw7k8n42hq58cfi4n1ixy7nyzpaj1mwnmy2"))))
ac257f12 1444 (build-system python-build-system)
ae565a9a
MB
1445 (arguments
1446 `(#:phases (modify-phases %standard-phases
1447 (replace 'check
1448 (lambda _
1449 (invoke "python" "-m" "testtools.run"
1450 "testscenarios.test_suite"))))))
ac257f12 1451 (propagated-inputs
ae565a9a
MB
1452 `(("python-pbr" ,python-pbr-minimal)
1453 ("python-testtools" ,python-testtools-bootstrap)))
ac257f12
RW
1454 (home-page "https://launchpad.net/testscenarios")
1455 (synopsis "Pyunit extension for dependency injection")
1456 (description
8b93f7e4 1457 "This package is only for bootstrapping. Don't use this.")
ac257f12
RW
1458 (license (list license:bsd-3 license:asl2.0)))) ; at the user's option
1459
8b93f7e4
MB
1460(define-public python-testscenarios
1461 (package
1462 (inherit python-testscenarios-bootstrap)
1463 (name "python-testscenarios")
1464 (propagated-inputs
ae565a9a
MB
1465 `(("python-pbr" ,python-pbr)
1466 ("python-testtools" ,python-testtools)))
8b93f7e4
MB
1467 (description
1468 "Testscenarios provides clean dependency injection for Python unittest
1469style tests.")))
1470
bc69104a
MB
1471;; Testresources requires python-pbr at runtime, but pbr needs it for its
1472;; own tests. Hence this bootstrap variant.
1473(define-public python-testresources-bootstrap
ac257f12 1474 (package
bc69104a
MB
1475 (name "python-testresources-bootstrap")
1476 (version "2.0.1")
1477 (source (origin
1478 (method url-fetch)
1479 (uri (pypi-uri "testresources" version))
1480 (sha256
1481 (base32
1482 "05s4dsli9g17m1r3b1gvwicbbgq011hnpb2b9qnj27ja2n11k7gf"))))
ac257f12 1483 (build-system python-build-system)
bc69104a
MB
1484 (arguments '(#:tests? #f))
1485 (propagated-inputs
1486 `(("python-pbr" ,python-pbr-minimal)))
ac257f12
RW
1487 (home-page "https://launchpad.net/testresources")
1488 (synopsis
1489 "Pyunit extension for managing test resources")
1490 (description
bc69104a
MB
1491 "This package is only here for bootstrapping purposes. Use the regular
1492testresources package instead.")
ac257f12
RW
1493 (license (list license:bsd-3 license:asl2.0)))) ; at the user's option
1494
bc69104a
MB
1495(define-public python-testresources
1496 (package
1497 (inherit python-testresources-bootstrap)
1498 (name "python-testresources")
1499 (propagated-inputs
1500 `(("python-pbr" ,python-pbr)))
1501 (arguments '())
1502 (native-inputs
1503 `(("python-fixtures" ,python-fixtures)
1504 ("python-testtols" ,python-testtools)))
1505 (description
1506 "Testresources is an extension to Python's unittest to allow declarative
1507use of resources by test cases.")))
1508
8b93f7e4 1509(define-public python-subunit-bootstrap
ac257f12 1510 (package
8b93f7e4 1511 (name "python-subunit-bootstrap")
e8d1637b 1512 (version "1.4.0")
ac257f12
RW
1513 (source
1514 (origin
1515 (method url-fetch)
8b93f7e4 1516 (uri (pypi-uri "python-subunit" version))
ac257f12
RW
1517 (sha256
1518 (base32
e8d1637b 1519 "0j0ymmnc5nfxi1qzvy59j27viqca7l7xd0y9x29g7yr0h693j804"))))
ac257f12
RW
1520 (build-system python-build-system)
1521 (propagated-inputs
1522 `(("python-extras" ,python-extras)
8b93f7e4 1523 ("python-testtools" ,python-testtools-bootstrap)))
ac257f12 1524 (native-inputs
151f32a7
MB
1525 `(("python-fixtures" ,python-fixtures-bootstrap)
1526 ("python-hypothesis" ,python-hypothesis)
8b93f7e4 1527 ("python-testscenarios" ,python-testscenarios-bootstrap)))
4df24531 1528 (home-page "https://launchpad.net/subunit")
ac257f12
RW
1529 (synopsis "Python implementation of the subunit protocol")
1530 (description
8b93f7e4
MB
1531 "This package is here for bootstrapping purposes only. Use the regular
1532python-subunit package instead.")
ac257f12
RW
1533 (license (list license:bsd-3 license:asl2.0)))) ; at the user's option
1534
8b93f7e4
MB
1535(define-public python-subunit
1536 (package
1537 (inherit python-subunit-bootstrap)
1538 (name "python-subunit")
1539 (propagated-inputs
1540 `(("python-extras" ,python-extras)
1541 ("python-testtools" ,python-testtools)))
1542 (native-inputs
1543 `(("python-fixtures" ,python-fixtures)
1544 ("python-hypothesis" ,python-hypothesis)
1545 ("python-testscenarios" ,python-testscenarios)))
1546 (description
1547 "Python-subunit is a Python implementation of the subunit test streaming
1548protocol.")))
1549
335c9e39
MB
1550;; Fixtures requires python-pbr at runtime, but pbr uses fixtures for its
1551;; own tests. Hence this bootstrap variant.
1552(define-public python-fixtures-bootstrap
ac257f12 1553 (package
335c9e39 1554 (name "python-fixtures-bootstrap")
9c77852e 1555 (version "3.0.0")
335c9e39
MB
1556 (source (origin
1557 (method url-fetch)
1558 (uri (pypi-uri "fixtures" version))
1559 (sha256
1560 (base32
9c77852e 1561 "1vxj29bzz3rd4pcy51d05wng9q9dh4jq6wx92yklsm7i6h1ddw7w"))))
ac257f12 1562 (build-system python-build-system)
335c9e39
MB
1563 (arguments `(#:tests? #f))
1564 (propagated-inputs
1565 `(("python-pbr-minimal" ,python-pbr-minimal)
1566 ("python-six" ,python-six)))
1567 (home-page "https://launchpad.net/python-fixtures")
1568 (synopsis "Python test fixture library")
1569 (description
1570 "This package is only used for bootstrapping. Use the regular
1571python-fixtures package instead.")
1572 (license (list license:bsd-3 license:asl2.0)))) ; at user's option
1573
335c9e39
MB
1574(define-public python-fixtures
1575 (package
1576 (inherit python-fixtures-bootstrap)
1577 (name "python-fixtures")
ac257f12
RW
1578 (arguments
1579 '(#:phases
1580 (modify-phases %standard-phases
1581 (replace 'check
1582 (lambda _
29594404
MW
1583 (invoke "python" "-m" "testtools.run"
1584 "fixtures.test_suite"))))))
ac257f12 1585 (propagated-inputs
335c9e39
MB
1586 ;; Fixtures uses pbr at runtime to check versions, etc.
1587 `(("python-pbr" ,python-pbr)
1588 ("python-six" ,python-six)))
ac257f12
RW
1589 (native-inputs
1590 `(("python-mock" ,python-mock)
8b93f7e4 1591 ("python-testtools" ,python-testtools-bootstrap)))
ac257f12
RW
1592 (description
1593 "Fixtures provides a way to create reusable state, useful when writing
335c9e39 1594Python tests.")))
ac257f12 1595
335c9e39 1596(define-public python-testrepository-bootstrap
ac257f12 1597 (package
335c9e39
MB
1598 (name "python-testrepository-bootstrap")
1599 (version "0.0.20")
ac257f12
RW
1600 (source
1601 (origin
1602 (method url-fetch)
9fcedf07 1603 (uri (pypi-uri "testrepository" version))
ac257f12
RW
1604 (sha256
1605 (base32
1606 "1ssqb07c277010i6gzzkbdd46gd9mrj0bi0i8vn560n2k2y4j93m"))))
1607 (build-system python-build-system)
335c9e39
MB
1608 (arguments '(#:tests? #f))
1609 (propagated-inputs
1610 `(("python-fixtures" ,python-fixtures-bootstrap)
8b93f7e4
MB
1611 ("python-subunit" ,python-subunit-bootstrap)
1612 ("python-testtools" ,python-testtools-bootstrap)))
335c9e39
MB
1613 (native-inputs
1614 `(("python-mimeparse" ,python-mimeparse)))
1615 (home-page "https://launchpad.net/testrepository")
1616 (synopsis "Database for Python test results")
1617 (description
1618 "Bootstrap package for python-testrepository. Don't use this.")
1619 (license (list license:bsd-3 license:asl2.0)))) ; at user's option
1620
335c9e39
MB
1621(define-public python-testrepository
1622 (package
1623 (inherit python-testrepository-bootstrap)
1624 (name "python-testrepository")
ac257f12
RW
1625 (arguments
1626 ;; FIXME: Many tests are failing.
1627 '(#:tests? #f))
1628 (propagated-inputs
1629 `(("python-fixtures" ,python-fixtures)
1630 ("python-subunit" ,python-subunit)
1631 ("python-testtools" ,python-testtools)))
1632 (native-inputs
335c9e39 1633 `(("python-mimeparse" ,python-mimeparse)))
ac257f12
RW
1634 (description "Testrepository provides a database of test results which can
1635be used as part of a developer's workflow to check things such as what tests
335c9e39 1636have failed since the last commit or what tests are currently failing.")))
ac257f12 1637
ac257f12
RW
1638(define-public python-coverage
1639 (package
1640 (name "python-coverage")
7f8ed249 1641 (version "5.2.1")
ac257f12
RW
1642 (source
1643 (origin
1644 (method url-fetch)
1645 (uri (pypi-uri "coverage" version))
1646 (sha256
1647 (base32
7f8ed249 1648 "16z8i18msgs8k74n73dj9x49wzkl0vk4vq8k5pl1bsj70y7b4k53"))))
ac257f12
RW
1649 (build-system python-build-system)
1650 (arguments
1651 ;; FIXME: 95 tests failed, 539 passed, 6 skipped, 2 errors.
1652 '(#:tests? #f))
ee091ff6 1653 (home-page "https://coverage.readthedocs.io")
ac257f12
RW
1654 (synopsis "Code coverage measurement for Python")
1655 (description
1656 "Coverage measures code coverage, typically during test execution. It
1657uses the code analysis tools and tracing hooks provided in the Python standard
1658library to determine which lines are executable, and which have been
1659executed.")
1660 (license license:bsd-3)))
1661
1662(define-public python2-coverage
1663 (package-with-python2 python-coverage))
1664
8b27771b
JM
1665(define-public python-pytest-asyncio
1666 (package
1667 (name "python-pytest-asyncio")
1668 (version "0.10.0")
1669 (source
1670 (origin
1671 (method url-fetch)
1672 (uri (pypi-uri "pytest-asyncio" version))
1673 (sha256
1674 (base32 "1bysy4nii13bm7h345wxf8fxcjhab7l374pqdv7vwv3izl053b4z"))))
1675 (build-system python-build-system)
1676 (native-inputs
1677 `(("python-coverage" ,python-coverage)
1678 ("python-async-generator" ,python-async-generator)
1679 ("python-hypothesis" ,python-hypothesis)
1680 ("python-pytest" ,python-pytest)))
1681 (home-page "https://github.com/pytest-dev/pytest-asyncio")
1682 (synopsis "Pytest support for asyncio")
1683 (description "Python asyncio code is usually written in the form of
1684coroutines, which makes it slightly more difficult to test using normal
1685testing tools. @code{pytest-asyncio} provides useful fixtures and markers
1686to make testing async code easier.")
1687 (license license:asl2.0)))
1688
ac257f12
RW
1689(define-public python-cov-core
1690 (package
1691 (name "python-cov-core")
1692 (version "1.15.0")
1693 (source
1694 (origin
1695 (method url-fetch)
1696 (uri (pypi-uri "cov-core" version))
1697 (sha256
1698 (base32
1699 "0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a"))))
1700 (build-system python-build-system)
1701 (propagated-inputs
1702 `(("python-coverage" ,python-coverage)))
1703 (home-page "https://github.com/schlamar/cov-core")
1704 (synopsis "Coverage plugin core for pytest-cov, nose-cov and nose2-cov")
1705 (description
1706 "This is a library package for use by @code{pytest-cov}, @code{nose-cov}
1707and @code{nose2-cov}. It is useful for developing coverage plugins for these
1708testing frameworks.")
1709 (license license:expat)))
1710
1711(define-public python2-cov-core
1712 (package-with-python2 python-cov-core))
1713
c3f9a6ce
EF
1714(define-public python-codecov
1715 (package
1716 (name "python-codecov")
1717 (version "2.0.15")
1718 (source
1719 (origin
1720 (method url-fetch)
1721 (uri (pypi-uri "codecov" version))
1722 (sha256
1723 (base32
1724 "1217c0vqf7ii65635gvl27a5pfhv0r7zhrpdp9cx640hg73bgn4f"))))
1725 (build-system python-build-system)
1726 (native-inputs
1727 `(("python-unittest2" ,python-unittest2)))
1728 (propagated-inputs
1729 `(("python-coverage" ,python-coverage)
1730 ("python-requests" ,python-requests)))
702a1012 1731 (home-page "https://github.com/codecov/codecov-python")
c3f9a6ce
EF
1732 (synopsis "Upload code coverage reports to @code{codecov.io}")
1733 (description
1734 "Codecov collects code coverage reports from code written in Python, Java,
1735C/C++, R, and more, and uploads it to the @code{codecov.io} service.")
1736 (license license:asl2.0)))
1737
ac257f12
RW
1738(define-public python-testpath
1739 (package
1740 (name "python-testpath")
1741 (version "0.2")
1742 (source
1743 (origin
52305b0a
EF
1744 (method git-fetch)
1745 (uri (git-reference
1746 (url "https://github.com/jupyter/testpath")
1747 (commit version)))
1748 (file-name (git-file-name name version))
ac257f12
RW
1749 (sha256
1750 (base32
52305b0a 1751 "0r4iiizjql6ny1ln7ciw7rrbjadz1s9zrf2hl0xkgnh3ypd8936f"))))
ac257f12
RW
1752 (build-system python-build-system)
1753 (arguments
1754 `(#:tests? #f ; this package does not even have a setup.py
1755 #:modules ((guix build python-build-system)
1756 (guix build utils)
1757 (srfi srfi-1))
ac257f12
RW
1758 #:phases
1759 (modify-phases %standard-phases
1760 (delete 'install)
1761 (replace 'build
1762 (lambda* (#:key inputs outputs #:allow-other-keys)
1763 (let* ((version (last
1764 (string-split (assoc-ref inputs "python") #\-)))
1765 (x.y (string-join (take (string-split version #\.) 2)
1766 "."))
1767 (dir (string-append
1768 (assoc-ref outputs "out")
1769 "/lib/python" x.y "/site-packages/testpath")))
1770 (mkdir-p dir)
1771 (copy-recursively "testpath" dir))
1772 #t)))))
1773 (home-page "https://github.com/takluyver/testpath")
1774 (synopsis "Test utilities for code working with files and commands")
1775 (description
1776 "Testpath is a collection of utilities for Python code working with files
162a1374 1777and commands. It contains functions to check things on the file system, and
ac257f12
RW
1778tools for mocking system commands and recording calls to those.")
1779 (license license:expat)))
1780
1781(define-public python2-testpath
1782 (package-with-python2 python-testpath))
1783
1784(define-public python-testlib
1785 (package
1786 (name "python-testlib")
1787 (version "0.6.5")
1788 (source
1789 (origin
1790 (method url-fetch)
cb539b7c 1791 (uri (pypi-uri "testlib" version ".zip"))
ac257f12
RW
1792 (sha256
1793 (base32 "1mz26cxn4x8bbgv0rn0mvj2z05y31rkc8009nvdlb3lam5b4mj3y"))))
1794 (build-system python-build-system)
1795 (native-inputs
1796 `(("unzip" ,unzip))) ; for unpacking the source
1797 (synopsis "Python micro test suite harness")
1798 (description "A micro unittest suite harness for Python.")
1799 (home-page "https://github.com/trentm/testlib")
1800 (license license:expat)))
1801
1802(define-public python2-testlib
1803 (package-with-python2 python-testlib))
1804
1805;;; The software provided by this package was integrated into pytest 2.8.
1806(define-public python-pytest-cache
1807 (package
1808 (name "python-pytest-cache")
1809 (version "1.0")
1810 (source (origin
1811 (method url-fetch)
1812 (uri (pypi-uri "pytest-cache" version))
1813 (sha256
1814 (base32
1815 "1a873fihw4rhshc722j4h6j7g3nj7xpgsna9hhg3zn6ksknnhx5y"))))
1816 (build-system python-build-system)
1817 (propagated-inputs
1818 `(("python-apipkg" ,python-apipkg)
1819 ("python-execnet" ,python-execnet)
1820 ("python-py" ,python-py)
1821 ("python-pytest" ,python-pytest)))
1822 (synopsis "Py.test plugin with mechanisms for caching across test runs")
1823 (description "The pytest-cache plugin provides tools to rerun failures from
1824the last py.test invocation.")
1825 (home-page "https://bitbucket.org/hpk42/pytest-cache/")
1826 (license license:expat)))
1827
1828(define-public python2-pytest-cache
1829 (package-with-python2 python-pytest-cache))
1830
1831(define-public python-pytest-localserver
1832 (package
1833 (name "python-pytest-localserver")
74854d11 1834 (version "0.5.0")
ac257f12 1835 (source (origin
74854d11
EF
1836 (method url-fetch)
1837 (uri (pypi-uri "pytest-localserver" version))
1838 (sha256
1839 (base32
1840 "1hpgpxrpfq5c731ndnsay2lc0y9nh2wy9fn1f83s3z8xkn82fm1s"))))
ac257f12
RW
1841 (build-system python-build-system)
1842 (arguments
45a2346f
EF
1843 '(#:phases
1844 (modify-phases %standard-phases
ac257f12
RW
1845 (replace 'check
1846 (lambda _
45a2346f 1847 (invoke "py.test" "-v"))))))
ac257f12
RW
1848 (native-inputs
1849 `(("python-pytest" ,python-pytest)
1850 ("python-requests" ,python-requests)
1851 ("python-six" ,python-six)))
1852 (propagated-inputs
1853 `(("python-werkzeug" ,python-werkzeug)))
1854 (synopsis "Py.test plugin to test server connections locally")
1855 (description "Pytest-localserver is a plugin for the pytest testing
1856framework which enables you to test server connections locally.")
e85af137 1857 (home-page "https://pypi.org/project/pytest-localserver/")
ac257f12
RW
1858 (license license:expat)))
1859
1860(define-public python-pytest-xprocess
1861 (package
1862 (name "python-pytest-xprocess")
1863 (version "0.9.1")
1864 (source (origin
1865 (method url-fetch)
1866 (uri (pypi-uri "pytest-xprocess" version))
1867 (sha256
1868 (base32
1869 "17zlql1xqw3ywcgwwbqmw633aly99lab12hm02asr8awvg5603pp"))))
1870 (build-system python-build-system)
1871 (propagated-inputs
1872 `(("python-pytest" ,python-pytest)
1873 ("python-pytest-cache" ,python-pytest-cache)
1874 ("python-psutil" ,python-psutil)))
1875 (synopsis "Pytest plugin to manage external processes across test runs")
1876 (description "Pytest-xprocess is an experimental py.test plugin for managing
1877processes across test runs.")
1878 (home-page "https://bitbucket.org/pytest-dev/pytest-xprocess")
1879 (license license:expat)))
1880
1881(define-public python-pytest-subtesthack
1882 (package
1883 (name "python-pytest-subtesthack")
1884 (version "0.1.1")
1885 (source (origin
1886 (method url-fetch)
1887 (uri (pypi-uri "pytest-subtesthack" version))
1888 (sha256
1889 (base32
1890 "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"))))
1891 (build-system python-build-system)
1892 (propagated-inputs
1893 `(("python-pytest" ,python-pytest)))
1894 (synopsis "Set-up and tear-down fixtures for unit tests")
1895 (description "This plugin allows you to set up and tear down fixtures within
1896unit test functions that use @code{py.test}. This is useful for using
1897@command{hypothesis} inside py.test, as @command{hypothesis} will call the test
1898function multiple times, without setting up or tearing down fixture state as is
1899normally the case.")
1900 (home-page "https://github.com/untitaker/pytest-subtesthack/")
1901 (license license:unlicense)))
1902
1903(define-public python2-pytest-subtesthack
1904 (package-with-python2 python-pytest-subtesthack))
1905
7600513a
CB
1906(define-public python-pytest-sugar
1907 (package
1908 (name "python-pytest-sugar")
5098b90b 1909 (version "0.9.3")
7600513a
CB
1910 (source
1911 (origin
1912 (method url-fetch)
1913 (uri (pypi-uri "pytest-sugar" version))
1914 (sha256
5098b90b 1915 (base32 "1i0hv3h49zvl62jbiyjag84carbrp3zprqzxffdr291nxavvac0n"))))
7600513a
CB
1916 (build-system python-build-system)
1917 (propagated-inputs
1918 `(("python-packaging" ,python-packaging)
1919 ("python-pytest" ,python-pytest)
1920 ("python-termcolor" ,python-termcolor)))
1921 (home-page "https://pivotfinland.com/pytest-sugar/")
1922 (synopsis "Plugin for pytest that changes the default look and feel")
1923 (description
1924 "@code{pytest-sugar} is a plugin for py.test that changes the default
1925look and feel of py.test, using a progress bar and showing failures and errors
1926instantly.")
1927 (license license:bsd-3)))
1928
ac257f12
RW
1929(define-public python-hypothesis
1930 (package
1931 (name "python-hypothesis")
916f1d55 1932 (version "5.4.1")
ac257f12
RW
1933 (source (origin
1934 (method url-fetch)
1935 (uri (pypi-uri "hypothesis" version))
1936 (sha256
1937 (base32
916f1d55 1938 "0zn09bn6hadk4vxl6jy8bkjr5fz8mrhin3z46w7pq5qgbaycr89p"))))
ac257f12 1939 (build-system python-build-system)
3b5378a8
MB
1940 (arguments
1941 ;; XXX: Tests are not distributed with the PyPI archive.
1942 '(#:tests? #f))
b19a960f
AI
1943 (propagated-inputs
1944 `(("python-attrs" ,python-attrs-bootstrap)
3b5378a8 1945 ("python-sortedcontainers" ,python-sortedcontainers)))
ac257f12
RW
1946 (synopsis "Library for property based testing")
1947 (description "Hypothesis is a library for testing your Python code against a
1948much larger range of examples than you would ever want to write by hand. It’s
1949based on the Haskell library, Quickcheck, and is designed to integrate
1950seamlessly into your existing Python unit testing work flow.")
b19a960f 1951 (home-page "https://github.com/HypothesisWorks/hypothesis-python")
ac257f12
RW
1952 (license license:mpl2.0)
1953 (properties `((python2-variant . ,(delay python2-hypothesis))))))
1954
100f7f9d
TLC
1955(define-public python-hypothesis-5.23
1956 (package
1957 (inherit python-hypothesis)
1958 (version "5.23.0")
1959 (source (origin
1960 (method url-fetch)
1961 (uri (pypi-uri "hypothesis" version))
1962 (sha256
1963 (base32
1964 "0sy1v6nyxg4rjcf3rlr8nalb7wqd9nccpb2lzkchbj5an13ysf1h"))))
1965 (home-page "https://github.com/HypothesisWorks/hypothesis")))
1966
3b5378a8 1967;; This is the last version of Hypothesis that supports Python 2.
ac257f12
RW
1968(define-public python2-hypothesis
1969 (let ((hypothesis (package-with-python2
1970 (strip-python2-variant python-hypothesis))))
1971 (package (inherit hypothesis)
3b5378a8
MB
1972 (version "4.57.1")
1973 (source (origin
1974 (method url-fetch)
1975 (uri (pypi-uri "hypothesis" version))
1976 (sha256
1977 (base32
1978 "183gpxbfcdhdqzlahkji5a71n6lmvgqsbkcb0ihqad51n2j6jhrw"))))
ac257f12
RW
1979 (propagated-inputs
1980 `(("python2-enum34" ,python2-enum34)
1981 ,@(package-propagated-inputs hypothesis))))))
1982
fdc61e32
TLC
1983(define-public python-hypothesmith
1984 (package
1985 (name "python-hypothesmith")
1986 (version "0.1.2")
1987 (source
1988 (origin
1989 (method url-fetch)
1990 (uri (pypi-uri "hypothesmith" version))
1991 (sha256
1992 (base32
1993 "09331sspknv459xcyn1k0lx5flqlc6gmnwp9370pfvg4kg1zmss6"))))
1994 (build-system python-build-system)
1995 (propagated-inputs
1996 `(("python-hypothesis" ,python-hypothesis-5.23)
1997 ("python-lark-parser" ,python-lark-parser)
1998 ("python-libcst" ,python-libcst)))
1999 (home-page "https://github.com/Zac-HD/hypothesmith")
2000 (synopsis "Strategies for generating Python programs")
2001 (description
2002 "This package contains hypothesis strategies for generating Python
2003programs, something like CSmith, a random generator of C programs.")
2004 (license license:mpl2.0)))
2005
ac257f12
RW
2006(define-public python-lit
2007 (package
2008 (name "python-lit")
8c2781f0 2009 (version "0.5.1")
ac257f12
RW
2010 (source
2011 (origin
2012 (method url-fetch)
2013 (uri (pypi-uri "lit" version))
2014 (sha256
2015 (base32
8c2781f0 2016 "0z651m3vkbk85y41larnsjxrszkbi58x9gzml3lb6ga7qwcrsg97"))))
ac257f12 2017 (build-system python-build-system)
39afd2a8
DM
2018 (arguments
2019 `(#:phases
2020 (modify-phases %standard-phases
2021 (replace 'check
2022 (lambda _
40899635 2023 (invoke "python" "lit.py" "tests"))))))
39afd2a8 2024 (native-inputs
40899635 2025 `(("llvm" ,llvm)))
ac97dce1 2026 (home-page "https://llvm.org/")
ac257f12
RW
2027 (synopsis "LLVM Software Testing Tool")
2028 (description "@code{lit} is a portable tool for executing LLVM and Clang
2029style test suites, summarizing their results, and providing indication of
2030failures.")
2031 (license license:ncsa)))
2032
2033(define-public python2-lit
2034 (package-with-python2 python-lit))
2035
2036(define-public python-pytest-pep8
2037 (package
2038 (name "python-pytest-pep8")
2039 (version "1.0.6")
2040 (source (origin
2041 (method url-fetch)
2042 (uri (pypi-uri "pytest-pep8" version))
2043 (sha256
2044 (base32
2045 "06032agzhw1i9d9qlhfblnl3dw5hcyxhagn7b120zhrszbjzfbh3"))))
2046 (build-system python-build-system)
2047 (arguments
2048 `(#:tests? #f)) ; Fails with recent pytest and pep8. See upstream issues #8 and #12.
2049 (native-inputs
2050 `(("python-pytest" ,python-pytest)))
2051 (propagated-inputs
2052 `(("python-pep8" ,python-pep8)))
2053 (home-page "https://bitbucket.org/pytest-dev/pytest-pep8")
2054 (synopsis "Py.test plugin to check PEP8 requirements")
2055 (description "Pytest plugin for checking PEP8 compliance.")
2056 (license license:expat)))
2057
2058(define-public python2-pytest-pep8
2059 (package-with-python2 python-pytest-pep8))
2060
2061(define-public python-pytest-flakes
2062 (package
2063 (name "python-pytest-flakes")
c1a326e7 2064 (version "4.0.1")
ac257f12
RW
2065 (source (origin
2066 (method url-fetch)
2067 (uri (pypi-uri "pytest-flakes" version))
2068 (sha256
2069 (base32
c1a326e7 2070 "0045h3hnrkn2jwr42jgy2j98npx4amwr6wxzi9j0nppaqz33l49p"))))
ac257f12
RW
2071 (build-system python-build-system)
2072 (arguments
2073 `(#:phases
2074 (modify-phases %standard-phases
2075 (delete 'check)
2076 (add-after 'install 'check
2077 (lambda* (#:key outputs inputs #:allow-other-keys)
2078 ;; It's easier to run tests after install.
2079 ;; Make installed package available for running the tests
2080 (add-installed-pythonpath inputs outputs)
a17e1b9e 2081 (invoke "py.test" "-vv" "-k" "not test_syntax_error"))))))
ac257f12
RW
2082 (native-inputs
2083 `(("python-coverage" ,python-coverage)
2084 ("python-pytest" ,python-pytest)
2085 ("python-pytest-cache" ,python-pytest-cache)
2086 ("python-pytest-pep8" ,python-pytest-pep8)))
2087 (propagated-inputs
2088 `(("python-pyflakes" ,python-pyflakes)))
2089 (home-page "https://github.com/fschulze/pytest-flakes")
2090 (synopsis "Py.test plugin to check source code with pyflakes")
2091 (description "Pytest plugin for checking Python source code with pyflakes.")
2092 (license license:expat)))
2093
2094(define-public python2-pytest-flakes
2095 (package-with-python2 python-pytest-flakes))
2096
2097(define-public python2-coverage-test-runner
2098 (package
2099 (name "python2-coverage-test-runner")
6a46a06c 2100 (version "1.15")
ac257f12
RW
2101 (source
2102 (origin
2103 (method url-fetch)
2104 (uri (string-append
2105 "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/"
2106 "coverage-test-runner/snapshot/coverage-test-runner-"
2107 version ".tar.gz"))
2108 (sha256
2109 (base32
6a46a06c 2110 "1kjjb9llckycnfxag8zcvqsn4z1s3dwyw6b1n0avxydihgf30rny"))))
ac257f12
RW
2111 (build-system python-build-system)
2112 (arguments
2113 `(#:python ,python-2
2114 #:phases
2115 (modify-phases %standard-phases
2116 (replace 'check
2117 (lambda _
29594404 2118 (invoke "./testrun"))))))
ac257f12
RW
2119 (propagated-inputs
2120 `(("python2-coverage" ,python2-coverage)))
2121 (home-page "https://liw.fi/coverage-test-runner/")
2122 (synopsis "Python module for running unit tests")
2123 (description "@code{CoverageTestRunner} is a python module for running
2124unit tests and failing them if the unit test module does not exercise all
2125statements in the module it tests.")
2126 (license license:gpl3+)))
2127
2128(define-public python-pylint
2129 (package
2130 (name "python-pylint")
96484ab9 2131 (version "2.5.3")
ac257f12
RW
2132 (source
2133 (origin
10511c41
MO
2134 (method git-fetch)
2135 (uri (git-reference
2136 (url "https://github.com/PyCQA/pylint")
2137 (commit (string-append "pylint-" version))))
2138 (file-name (git-file-name name version))
ac257f12 2139 (sha256
96484ab9 2140 (base32 "04cgbh2z1mygar63plzziyz34yg6bdr4i0g63jp256fgnqwb1bi3"))))
ac257f12 2141 (build-system python-build-system)
ceac05b8
TGR
2142 ;; FIXME: Tests are failing since version 2.4.3, see:
2143 ;; https://github.com/PyCQA/pylint/issues/3198.
2144 (arguments '(#:tests? #f))
ac257f12
RW
2145 (native-inputs
2146 `(("python-pytest" ,python-pytest)
2147 ("python-pytest-runner" ,python-pytest-runner)
2148 ("python-tox" ,python-tox)))
2149 (propagated-inputs
2150 `(("python-astroid" ,python-astroid)
2151 ("python-isort" ,python-isort)
2152 ("python-mccabe" ,python-mccabe)
9c12c277
TGR
2153 ("python-six" ,python-six)
2154 ("python-toml" ,python-toml)))
ac257f12
RW
2155 (home-page "https://github.com/PyCQA/pylint")
2156 (synopsis "Python source code analyzer which looks for coding standard
2157errors")
2158 (description "Pylint is a Python source code analyzer which looks
2159for programming errors, helps enforcing a coding standard and sniffs
2160for some code smells (as defined in Martin Fowler's Refactoring book).
2161
2162Pylint has many rules enabled by default, way too much to silence them
2163all on a minimally sized program. It's highly configurable and handle
2164pragmas to control it from within your code. Additionally, it is
2165possible to write plugins to add your own checks.")
ac257f12
RW
2166 (license license:gpl2+)))
2167
ac257f12
RW
2168(define-public python-paramunittest
2169 (package
2170 (name "python-paramunittest")
2171 (version "0.2")
2172 (source
2173 (origin
2174 (method url-fetch)
2175 (uri (pypi-uri "ParamUnittest" version))
2176 (sha256
2177 (base32
2178 "0kp793hws5xv1wvycxq7jw2pwy36f35k39jg8hx5qikij5a0jid1"))))
2179 (build-system python-build-system)
2180 (home-page
2181 "https://github.com/rik0/ParamUnittest")
2182 (synopsis
2183 "Simple extension to have parametrized unit tests")
2184 (description
4d72d02b
VC
2185 "This package creates parameterized unit-tests that work with the standard
2186unittest package. A parameterized test case is automatically converted to multiple test
ac257f12
RW
2187cases. Since they are TestCase subclasses, they work with other test suites that
2188recognize TestCases.")
2189 (license license:bsd-2)))
2190
2191(define-public python2-python-paramunittest
2192 (package-with-python2 python-paramunittest))
2193
2194(define-public python-pytest-warnings
2195 (package
2196 (name "python-pytest-warnings")
2197 (version "0.2.0")
2198 (source
2199 (origin
2200 (method url-fetch)
2201 (uri (pypi-uri "pytest-warnings" version))
2202 (sha256
2203 (base32
2204 "0gf2dpahpl5igb7jh1sr9acj3z3gp7zahqdqb69nk6wx01c8kc1g"))))
2205 (build-system python-build-system)
2206 (propagated-inputs
2dd12924 2207 `(("pytest" ,python-pytest)))
ac257f12
RW
2208 (home-page "https://github.com/fschulze/pytest-warnings")
2209 (synopsis "Pytest plugin to list Python warnings in pytest report")
2210 (description
2211 "Python-pytest-warnings is a pytest plugin to list Python warnings in
2212pytest report.")
29f25f29
MB
2213 (license license:expat)
2214 (properties `((python2-variant . ,(delay python2-pytest-warnings))
2215 ;; This package is part of pytest as of version 3.1.0.
2216 (superseded . ,python-pytest)))))
ac257f12
RW
2217
2218(define-public python2-pytest-warnings
29f25f29
MB
2219 (package (inherit (package-with-python2
2220 (strip-python2-variant python-pytest-warnings)))
2221 (properties `((superseded . ,python2-pytest)))))
ac257f12
RW
2222
2223(define-public python-pytest-capturelog
2224 (package
2225 (name "python-pytest-capturelog")
2226 (version "0.7")
2227 (source
2228 (origin
2229 (method url-fetch)
2230 (uri (pypi-uri "pytest-capturelog" version ".tar.gz"))
2231 (sha256
2232 (base32
2233 "038049nyjl7di59ycnxvc9nydivc5m8np3hqq84j2iirkccdbs5n"))))
2234 (build-system python-build-system)
2235 (propagated-inputs
2dd12924 2236 `(("pytest" ,python-pytest)))
a7f27da7 2237 (home-page "https://bitbucket.org/memedough/pytest-capturelog/overview")
ac257f12
RW
2238 (synopsis "Pytest plugin to catch log messages")
2239 (description
2240 "Python-pytest-catchlog is a pytest plugin to catch log messages.")
2241 (license license:expat)))
2242
2243(define-public python2-pytest-capturelog
2244 (package-with-python2 python-pytest-capturelog))
2245
2246(define-public python-pytest-catchlog
2247 (package
2248 (name "python-pytest-catchlog")
2249 (version "1.2.2")
2250 (source
2251 (origin
2252 (method url-fetch)
2253 (uri (pypi-uri "pytest-catchlog" version ".zip"))
2254 (sha256
2255 (base32
2256 "1w7wxh27sbqwm4jgwrjr9c2gy384aca5jzw9c0wzhl0pmk2mvqab"))))
2257 (build-system python-build-system)
2258 (native-inputs
2259 `(("unzip" ,unzip)))
2260 (propagated-inputs
2dd12924 2261 `(("pytest" ,python-pytest)))
ac257f12
RW
2262 (home-page "https://github.com/eisensheng/pytest-catchlog")
2263 (synopsis "Pytest plugin to catch log messages")
2264 (description
2265 "Python-pytest-catchlog is a pytest plugin to catch log messages. This is
2266a fork of pytest-capturelog.")
2267 (license license:expat)))
2268
2269(define-public python2-pytest-catchlog
2270 (package-with-python2 python-pytest-catchlog))
2271
2272(define-public python-nosexcover
2273 (package
2274 (name "python-nosexcover")
2275 (version "1.0.11")
2276 (source (origin
2277 (method url-fetch)
2278 (uri (pypi-uri "nosexcover" version))
2279 (sha256
2280 (base32
2281 "10xqr12qv62k2flxwqhh8cr00cjhn7sfjrm6p35gd1x5bmjkr319"))))
2282 (build-system python-build-system)
2283 (propagated-inputs
2284 `(("python-coverage" ,python-coverage)
2285 ("python-nose" ,python-nose)))
702a1012 2286 (home-page "https://github.com/cmheisel/nose-xcover")
ac257f12
RW
2287 (synopsis "Extends nose.plugins.cover to add Cobertura-style XML reports")
2288 (description "Nose-xcover is a companion to the built-in
2289@code{nose.plugins.cover}. This plugin will write out an XML coverage report
2290to a file named coverage.xml.
2291
2292It will honor all the options you pass to the Nose coverage plugin,
2293especially -cover-package.")
2294 (license license:expat)))
2295
2296(define-public python2-nosexcover
2297 (package-with-python2 python-nosexcover))
2298
2299(define-public python-discover
2300 (package
2301 (name "python-discover")
2302 (version "0.4.0")
2303 (source
2304 (origin
2305 (method url-fetch)
415ae330 2306 (uri (pypi-uri "discover" version))
ac257f12
RW
2307 (sha256
2308 (base32
2309 "0y8d0zwiqar51kxj8lzmkvwc3b8kazb04gk5zcb4nzg5k68zmhq5"))))
2310 (build-system python-build-system)
e85af137 2311 (home-page "https://pypi.org/project/discover/")
ac257f12
RW
2312 (synopsis
2313 "Python test discovery for unittest")
2314 (description
2315 "Discover provides test discovery for unittest, a feature that has been
2316backported from Python 2.7 for Python 2.4+.")
2317 (license license:bsd-3)))
2318
2319(define-public python2-discover
2320 (package-with-python2 python-discover))
2321
2322(define-public behave
2323 (package
2324 (name "behave")
eddb9dac 2325 (version "1.2.6")
ac257f12
RW
2326 (source (origin
2327 (method url-fetch)
eddb9dac 2328 (uri (pypi-uri "behave" version))
ac257f12
RW
2329 (sha256
2330 (base32
a8cb1e72
CB
2331 "11hsz365qglvpp1m1w16239c3kiw15lw7adha49lqaakm8kj6rmr"))
2332 (patches (search-patches
2333 "behave-skip-a-couple-of-tests.patch"))))
ac257f12 2334 (build-system python-build-system)
1e257d3d
KK
2335 (native-inputs
2336 `(("python-mock" ,python-mock)
2337 ("python-nose" ,python-nose)
eddb9dac
MB
2338 ("python-pathpy" ,python-pathpy)
2339 ("python-pyhamcrest" ,python-pyhamcrest)
2340 ("python-pytest" ,python-pytest)))
ac257f12 2341 (propagated-inputs
037bef7d
DM
2342 `(("python-importlib-metadata" ,python-importlib-metadata)
2343 ("python-six" ,python-six)
ac257f12
RW
2344 ("python-parse" ,python-parse)
2345 ("python-parse-type" ,python-parse-type)))
1e257d3d 2346 (arguments
74471036
JL
2347 '(#:test-target "behave_test"
2348 #:phases
2349 (modify-phases %standard-phases
2350 (add-before 'check 'fix-library-loading
2351 (lambda _
2352 ;; Otherwise, tests fail with no module named 'path'
2353 (setenv "PYTHONPATH" (string-append (getenv "PYTHONPATH") ":"
2354 (getcwd) "/tasks/_vendor"))
2355 #t)))))
ac257f12
RW
2356 (home-page "https://github.com/behave/behave")
2357 (synopsis "Python behavior-driven development")
2358 (description
2359 "Behave is a tool for behavior-driven development in python.
2360Behavior-driven development (or BDD) is an agile software development
2361technique that encourages collaboration between developers, QA and
2362non-technical or business participants in a software project. Behave uses
2363tests written in a natural language style, backed up by Python code.")
2364 (license license:x11)))
2365
2366(define-public python-behave-web-api
2367 (package
2368 (name "python-behave-web-api")
2369 (version "1.0.6")
2370 (source
2371 (origin
2372 (method url-fetch)
2373 (uri (pypi-uri "behave-web-api" version))
2374 (sha256
2375 (base32
2376 "03kpq2xsy1gab3jy0dccbxlsg7vwfy4lagss0qldwmx3xz6b3i19"))))
2377 (build-system python-build-system)
2378 (arguments
2379 `(#:phases
2380 (modify-phases %standard-phases
2381 (add-after 'unpack 'fix-dependencies
2382 (lambda _
2383 (substitute* "setup.py"
2384 (("'wheel'") "") ; We don't use it.
29594404
MW
2385 (("'ordereddict==1.1'") "")) ; Python >= 2.7 has it built-in.
2386 #t)))))
ac257f12
RW
2387 (propagated-inputs
2388 `(("behave" ,behave)
2389 ("python-requests" ,python-requests)))
2390 (home-page "https://github.com/jefersondaniel/behave-web-api")
2391 (synopsis "Provides testing for JSON APIs with Behave for Python")
2392 (description "This package provides testing utility modules for testing
2393JSON APIs with Behave.")
2394 (license license:expat)))
2395
ac257f12
RW
2396(define-public python-rednose
2397 (package
2398 (name "python-rednose")
a431b035 2399 (version "1.2.3")
ac257f12
RW
2400 (source
2401 (origin
2402 (method url-fetch)
2403 (uri (pypi-uri "rednose" version))
2404 (sha256
2405 (base32
a431b035 2406 "11x5nx5b4wdq04s7vj1gcdl07jvvkfb37p0r5lg773gr5rr8mj6h"))))
ac257f12 2407 (build-system python-build-system)
c2f0e5a4
MB
2408 (arguments
2409 `(#:phases (modify-phases %standard-phases
2410 (add-after 'unpack 'patch-setup.py
2411 (lambda _
2412 ;; Six is only required for tests and later versions
2413 ;; work fine.
2414 (substitute* "setup.py"
2415 (("six==1.10.0") "six"))
2416 #t)))))
ac257f12
RW
2417 (propagated-inputs
2418 `(("python-colorama" ,python-colorama)
2419 ("python-termstyle" ,python-termstyle)))
2420 (native-inputs
2421 `(("python-six" ,python-six)
2422 ("python-nose" ,python-nose)))
2423 (home-page "https://github.com/JBKahn/rednose")
2424 (synopsis "Colored output for Python nosetests")
2425 (description "This package provides colored output for the
2426@command{nosetests} command of the Python Nose unit test framework.")
2427 (license license:bsd-3)))
2428
2429(define-public python2-rednose
2430 (package-with-python2 python-rednose))
2431
e68321a6
VC
2432(define-public python-nose-random
2433 (package
2434 (name "python-nose-random")
2435 (version "1.0.0")
2436 (source
2437 (origin
2438 (method git-fetch)
2439 (uri (git-reference
2440 (url "https://github.com/fzumstein/nose-random")
2441 (commit version)))
2442 (file-name (git-file-name name version))
2443 (sha256
2444 (base32
2445 "1dvip61r2frjv35mv6mmfjc07402z73pjbndfp3mhxyjn2zhksw2"))))
2446 (build-system python-build-system)
2447 (native-inputs
2448 `(("python-nose" ,python-nose)))
2449 (home-page "https://github.com/fzumstein/nose-random")
2450 (synopsis "Nose plugin to facilitate randomized unit testing with
2451Python")
2452 (description "Python nose-random is designed to facilitate
2453Monte-Carlo style unit testing. The idea is to improve testing by
2454running your code against a large number of randomly generated input
2455scenarios.")
2456 (license license:expat)))
2457
ac257f12
RW
2458(define-public python-nose-randomly
2459 (package
2460 (name "python-nose-randomly")
9a0765aa 2461 (version "1.2.6")
ac257f12
RW
2462 (source
2463 (origin
2464 (method url-fetch)
2465 (uri (pypi-uri "nose-randomly" version))
2466 (sha256
9a0765aa 2467 (base32 "0z662rqhfk4bjmg806mn4frb8nz4gbh7mrddsrhfffp1g4yklj3y"))))
ac257f12
RW
2468 (build-system python-build-system)
2469 (native-inputs
2470 `(("python-nose" ,python-nose)
2471 ("python-numpy" ,python-numpy)))
2472 (home-page "https://github.com/adamchainz/nose-randomly")
2473 (synopsis
2474 "Nose plugin to randomly order tests and control random.seed")
2475 (description
2476 "This is a @code{Nose} plugin to randomly order tests which can be quite
2477powerful in discovering hidden flaws in the tests themselves, while helping to
2478reduce inter-test dependencies. It also helps in controlling @code{random.seed},
2479by resetting it to a repeatable number for each test, enabling the tests to
2480create data based on random numbers and yet remain repeatable.")
2481 (license license:bsd-3)))
2482
2483(define-public python2-nose-randomly
2484 (package-with-python2 python-nose-randomly))
2485
2486(define-public python-nose-timer
2487 (package
2488 (name "python-nose-timer")
9b241d4c 2489 (version "0.7.5")
ac257f12
RW
2490 (source
2491 (origin
2492 (method url-fetch)
2493 (uri (pypi-uri "nose-timer" version))
ac257f12 2494 (sha256
9b241d4c 2495 (base32 "05wzkc88vbzw62pqkvhl33211b90kns0lny70b7qw62rcg4flzk4"))))
ac257f12
RW
2496 (build-system python-build-system)
2497 (propagated-inputs
2498 `(("python-nose" ,python-nose)
2499 ("python-termcolor" ,python-termcolor)))
2500 (home-page "https://github.com/mahmoudimus/nose-timer")
2501 (synopsis "Timer plugin for nosetests")
2502 (description "Shows how much time was needed to run individual tests.")
2503 (license license:expat)))
2504
2505(define-public python2-nose-timer
2506 (package-with-python2 python-nose-timer))
762b5a89
RW
2507
2508(define-public python-freezegun
2509 (package
2510 (name "python-freezegun")
0eb2ce12 2511 (version "0.3.14")
762b5a89
RW
2512 (source
2513 (origin
2514 (method url-fetch)
2515 (uri (pypi-uri "freezegun" version))
2516 (sha256
0eb2ce12 2517 (base32 "0al75mk829j1izxi760b7yjnknjihyfhp2mvi5qiyrxb9cpxwqk2"))))
762b5a89
RW
2518 (build-system python-build-system)
2519 (native-inputs
2520 `(("python-mock" ,python-mock)
4e24e442 2521 ("python-pytest" ,python-pytest)))
762b5a89
RW
2522 (propagated-inputs
2523 `(("python-six" ,python-six)
2524 ("python-dateutil" ,python-dateutil)))
2525 (arguments
2526 `(#:phases
2527 (modify-phases %standard-phases
2528 ;; The tests are normally executed via `make test`, but the PyPi
2529 ;; package does not include the Makefile.
2530 (replace 'check
2531 (lambda _
4e24e442 2532 (invoke "pytest" "-vv"))))))
762b5a89
RW
2533 (home-page "https://github.com/spulec/freezegun")
2534 (synopsis "Test utility for mocking the datetime module")
2535 (description
2536 "FreezeGun is a library that allows your python tests to travel through
2537time by mocking the datetime module.")
2538 (license license:asl2.0)))
2539
2540(define-public python2-freezegun
2541 (package-with-python2 python-freezegun))
2542
2543(define-public python-flexmock
2544 (package
2545 (name "python-flexmock")
9bec3ba4 2546 (version "0.10.4")
762b5a89
RW
2547 (source (origin
2548 (method url-fetch)
2549 (uri (pypi-uri "flexmock" version))
2550 (sha256
2551 (base32
9bec3ba4 2552 "0b6qw3grhgx58kxlkj7mdma7xdvlj02zabvcf7w2qifnfjwwwcsh"))))
762b5a89
RW
2553 (build-system python-build-system)
2554 (home-page "https://flexmock.readthedocs.org")
2555 (synopsis "Testing library for Python")
2556 (description
2557 "flexmock is a testing library for Python that makes it easy to create
2558mocks, stubs and fakes.")
2559 (license license:bsd-3)))
2560
2561(define-public python2-flexmock
2562 (package-with-python2 python-flexmock))
2563
2564(define-public python-flaky
2565 (package
2566 (name "python-flaky")
eba8a00d 2567 (version "3.5.3")
762b5a89
RW
2568 (source (origin
2569 (method url-fetch)
2570 (uri (pypi-uri "flaky" version))
2571 (sha256
2572 (base32
eba8a00d 2573 "1nm1kjf857z5aw7v642ffsy1vwf255c6wjvmil71kckjyd0mxg8j"))))
762b5a89
RW
2574 (build-system python-build-system)
2575 (arguments
2576 ;; TODO: Tests require 'coveralls' and 'genty' which are not in Guix yet.
2577 '(#:tests? #f))
2578 (home-page "https://github.com/box/flaky")
2579 (synopsis "Automatically rerun flaky tests")
2580 (description
2581 "Flaky is a plugin for @code{nose} or @code{py.test} that automatically
2582reruns flaky tests.
2583
2584Ideally, tests reliably pass or fail, but sometimes test fixtures must rely
2585on components that aren't 100% reliable. With flaky, instead of removing
2586those tests or marking them to @code{@@skip}, they can be automatically
2587retried.")
2588 (license license:asl2.0)))
2589
2590(define-public python2-flaky
2591 (package-with-python2 python-flaky))
18a4d6df
FT
2592
2593(define-public python-pyhamcrest
d08482f0
MB
2594 ;; The latest release was in 2016 and its test suite does not work with recent
2595 ;; versions of Pytest. Just take the master branch for now, which seems stable.
2596 (let ((commit "25fdc5f00bdf3084335353bc9247253098ec4cf2")
2597 (revision "0"))
2598 (package
2599 (name "python-pyhamcrest")
2600 (version (git-version "1.9.0" revision commit))
2601 (source (origin
2602 ;; Tests not distributed from pypi release.
2603 (method git-fetch)
2604 (uri (git-reference
2605 (url "https://github.com/hamcrest/PyHamcrest")
2606 (commit commit)))
2607 (file-name (git-file-name name version))
2608 (sha256
2609 (base32
2610 "1miqmhhi68vaix8sqc1lvpvbm27bacffxh5anm5cbfsvk7g9n6f3"))))
2611 (native-inputs ;all native inputs are for tests
2612 `(("python-pytest-cov" ,python-pytest-cov)
2613 ("python-mock" ,python-mock)
2614 ("python-pytest" ,python-pytest)
2615 ("python-hypothesis" ,python-hypothesis)))
2616 (propagated-inputs
2617 `(("python-six" ,python-six)))
2618 (build-system python-build-system)
2619 (arguments
2620 `(#:phases (modify-phases %standard-phases
2621 (replace 'check
2622 (lambda _
2623 (setenv "PYTHONPATH"
2624 (string-append "build/lib:"
2625 (getenv "PYTHONPATH")))
2626 (invoke "pytest" "-vv"))))))
2627 (home-page "http://hamcrest.org/")
2628 (synopsis "Hamcrest matchers for Python")
2629 (description
2630 "PyHamcrest is a framework for writing matcher objects,
18a4d6df 2631 allowing you to declaratively define \"match\" rules.")
d08482f0 2632 (license license:bsd-3))))
18a4d6df
FT
2633
2634(define-public python2-pyhamcrest
2635 (package-with-python2 python-pyhamcrest))
bebe3a4f
FT
2636
2637(define-public unittest-cpp
2638 (package
2639 (name "unittest-cpp")
2640 (version "2.0.0")
2641 (source (origin
8aedb3ad
EF
2642 (method git-fetch)
2643 (uri (git-reference
2644 (url "https://github.com/unittest-cpp/unittest-cpp")
2645 (commit (string-append "v" version))))
2646 (file-name (git-file-name name version))
bebe3a4f 2647 (sha256
8aedb3ad 2648 (base32 "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i"))))
bebe3a4f
FT
2649 (arguments
2650 `(#:tests? #f)) ; It's run after build automatically.
2651 (build-system cmake-build-system)
2652 (home-page "https://github.com/unittest-cpp/unittest-cpp")
2653 (synopsis "Lightweight unit testing framework for C++")
2654 (description "UnitTest++ is a lightweight unit testing framework for C++.
2655It was designed to do test-driven development on a wide variety of platforms.
2656Simplicity, portability, speed, and small footprint are all very important
2657aspects of UnitTest++. UnitTest++ is mostly standard C++ and makes minimal use
2658of advanced library and language features, which means it should be easily
2659portable to just about any platform.")
2660 (license license:expat)))
85b28320
LC
2661
2662(define-public libfaketime
2663 (package
2664 (name "libfaketime")
c021c432 2665 (version "0.9.8")
85b28320
LC
2666 (home-page "https://github.com/wolfcw/libfaketime")
2667 (source (origin
2668 (method git-fetch)
2669 (uri (git-reference
2670 (url home-page)
2671 (commit (string-append "v" version))))
2672 (sha256
2673 (base32
c021c432 2674 "1mfdl82ppgbdvy1ny8mb7xii7p0g7awvn4bn36jb8v4r545slmjc"))
85b28320
LC
2675 (file-name (git-file-name name version))))
2676 (build-system gnu-build-system)
2677 (arguments
2678 '(#:phases (modify-phases %standard-phases
2679 (replace 'configure
2680 (lambda* (#:key outputs #:allow-other-keys)
2681 (let ((out (assoc-ref outputs "out")))
2682 (setenv "CC" "gcc")
2683 (setenv "PREFIX" out)
f09948fd
MB
2684
2685 ;; XXX: Without this flag, the CLOCK_REALTIME test hangs
2686 ;; indefinitely. See README.packagers for more information.
2687 ;; Try removing this for future versions of libfaketime.
2688 (setenv "FAKETIME_COMPILE_CFLAGS" "-DFORCE_MONOTONIC_FIX")
2689
85b28320
LC
2690 #t)))
2691 (add-before 'check 'pre-check
2692 (lambda _
2693 (substitute* "test/functests/test_exclude_mono.sh"
2694 (("/bin/bash") (which "bash")))
fedce7b2
MB
2695
2696 ;; Do not fail due to use of 'ftime', which was deprecated in
2697 ;; glibc 2.31. Remove this for later versions of libfaketime.
2698 (setenv "FAKETIME_COMPILE_CFLAGS" "-Wno-deprecated-declarations")
85b28320
LC
2699 #t)))
2700 #:test-target "test"))
2701 (native-inputs
2702 `(("perl" ,perl))) ;for tests
2703 (synopsis "Fake the system time for single applications")
2704 (description
2705 "The libfaketime library allows users to modify the system time that an
2706application \"sees\". It is meant to be loaded using the dynamic linker's
2707@code{LD_PRELOAD} environment variable. The @command{faketime} command
2708provides a simple way to achieve this.")
2709 (license license:gpl2)))
bd9d3db6
RW
2710
2711(define-public umockdev
2712 (package
2713 (name "umockdev")
e4d364b7 2714 (version "0.14.4")
bd9d3db6
RW
2715 (source (origin
2716 (method url-fetch)
2717 (uri (string-append "https://github.com/martinpitt/umockdev/"
2718 "releases/download/" version "/"
2719 "umockdev-" version ".tar.xz"))
2720 (sha256
2721 (base32
e4d364b7 2722 "0xmi24ckpps32k7hc139psgbsnsf4g106sv4l9m445m46amkxggd"))))
bd9d3db6
RW
2723 (build-system gnu-build-system)
2724 (arguments
2725 `(#:phases
2726 (modify-phases %standard-phases
135c1e0e 2727 (add-after 'unpack 'fix-test
bd9d3db6
RW
2728 (lambda _
2729 (substitute* "tests/test-umockdev.c"
135c1e0e 2730 (("/run") "/tmp"))
bd9d3db6
RW
2731 #t)))))
2732 (native-inputs
2733 `(("vala" ,vala)
07b1f6dc 2734 ("gobject-introspection" ,gobject-introspection)
bd9d3db6 2735 ("gtk-doc" ,gtk-doc)
abab956b
TGR
2736 ("pkg-config" ,pkg-config)
2737
2738 ;; For tests.
2739 ("python" ,python)
2740 ("which" ,which)))
bd9d3db6
RW
2741 (inputs
2742 `(("glib" ,glib)
2743 ("eudev" ,eudev)
135c1e0e 2744 ("libgudev" ,libgudev)))
bd9d3db6
RW
2745 (home-page "https://github.com/martinpitt/umockdev/")
2746 (synopsis "Mock hardware devices for creating unit tests")
2747 (description "umockdev mocks hardware devices for creating integration
2748tests for hardware related libraries and programs. It also provides tools to
2749record the properties and behaviour of particular devices, and to run a
2750program or test suite under a test bed with the previously recorded devices
2751loaded.")
2752 (license license:lgpl2.1+)))
968e86bd 2753
e2ba79ef
MB
2754(define-public virtest
2755 ;; No releases yet, so we take the commit that "vc" expects.
2756 (let ((commit "f7d03ef39fceba168745bd29e1b20af6e7971e04")
2757 (revision "0"))
2758 (package
2759 (name "virtest")
2760 (version (git-version "0.0" revision commit))
2761 (home-page "https://github.com/mattkretz/virtest")
2762 (source (origin
2763 (method git-fetch)
2764 (uri (git-reference (url home-page) (commit commit)))
2765 (file-name (git-file-name name version))
2766 (sha256
2767 (base32
2768 "07pjyb0mk7y2w1dg1bhl26nb7416xa1mw16ifj6mmps5y6aq054l"))))
2769 (build-system cmake-build-system)
2770 (arguments
2771 `(#:phases (modify-phases %standard-phases
2772 (add-after 'unpack 'adjust-install-directory
2773 (lambda _
2774 ;; Vc is the only consumer of this library, and expects
2775 ;; to find it in "virtest/vir/" instead of "vir/vir/".
2776 (substitute* "CMakeLists.txt"
2777 (("DESTINATION include/vir")
2778 "DESTINATION include/virtest"))
2779 #t)))))
2780 (synopsis "Header-only test framework")
2781 (description
2782 "@code{virtest} is a small header-only test framework for C++. It
2783grew out of the @dfn{Vc} project.")
2784 (license license:bsd-3))))
2785
968e86bd
CM
2786(define-public python-pyfakefs
2787 (package
2788 (name "python-pyfakefs")
75385105 2789 (version "3.7.1")
968e86bd
CM
2790 (source (origin
2791 (method url-fetch)
2792 ;; We use the PyPI URL because there is no proper release
2793 ;; available from GitHub. The GitHub project only provides
2794 ;; autogenerated tarballs, which are known to change in place.
2795 (uri (pypi-uri "pyfakefs" version))
2796 (sha256
2797 (base32
75385105 2798 "1cp2yw96fa2qkgi39xa3nlr3inf8wb5rgh9kdq53256ca2r8pdhy"))
968e86bd
CM
2799 (patches (search-patches
2800 "python-pyfakefs-remove-bad-test.patch"))
2801 (file-name (string-append name "-" version ".tar.gz"))))
2802 (arguments
2803 `(#:phases
2804 (modify-phases %standard-phases
2805 ;; The default test suite does not run these extra tests.
2806 (add-after 'check 'check-pytest-plugin
2807 (lambda _
2808 (invoke
2809 "python" "-m" "pytest"
2810 "pyfakefs/pytest_tests/pytest_plugin_test.py")
2811 #t)))))
2812 (native-inputs
2813 `(("python-pytest" ,python-pytest)))
2814 (build-system python-build-system)
2815 ;; Guix lint doesn't like that this is a permanent redirect to the GitHub
2816 ;; page, but the pyfakefs documentation asks us to use this specific URL
2817 ;; when linking to the project. Honor their request.
2818 (home-page "http://pyfakefs.org/")
2819 ;; TRANSLATORS: In the synopsis, "Mock" is a verb.
2820 (synopsis "Mock file system interactions in tests")
2821 (description
2822 "This package provides a Python library intended for use in automated
2823tests. One difficulty when testing software is that the code under test might
2824need to read or write to files in the local file system. If the file system
2825is not set up in just the right way, it might cause a spurious error during
2826the test. The pyfakefs library provides a solution to problems like this by
2827mocking file system interactions. In other words, it arranges for the code
2828under test to interact with a fake file system instead of the real file
2829system. The code under test requires no modification to work with pyfakefs.")
2830 (license license:asl2.0)))
2831
2832(define-public python2-pyfakefs
2833 (package-with-python2 python-pyfakefs))
fb62edfc
MB
2834
2835;; This minimal variant is used to avoid a circular dependency between
2836;; python2-importlib-metadata, which requires pyfakefs for its tests, and
2837;; python2-pytest, which requires python2-importlib-metadata.
2838(define-public python2-pyfakefs-bootstrap
2839 (hidden-package
2840 (package
2841 (inherit python2-pyfakefs)
2842 (name "python2-pyfakefs-bootstrap")
2843 (native-inputs '())
2844 (arguments
2845 `(#:python ,python-2
2846 #:tests? #f)))))
27783023 2847
4edefc50
LDB
2848(define-public python-aiounittest
2849 (package
2850 (name "python-aiounittest")
b431840c
LDB
2851 (version "1.4.0")
2852 ;; Pypi package lacks tests.
4edefc50 2853 (source
b431840c
LDB
2854 (origin (method git-fetch)
2855 (uri (git-reference
2856 (url "https://github.com/kwarunek/aiounittest.git")
2857 (commit version)))
2858 (file-name (git-file-name name version))
2859 (sha256
2860 (base32
2861 "0hql5mw62lclrpblbh7xvinwjfcdcfvhhlvl7xlq2hi9isjq1c8r"))))
4edefc50 2862 (build-system python-build-system)
b431840c
LDB
2863 (arguments
2864 '(#:phases (modify-phases %standard-phases
2865 (replace 'check
2866 (lambda* (#:key tests? #:allow-other-keys)
2867 (if tests?
2868 (invoke "nosetests" "-v")
2869 (format #t "test suite not run~%"))
2870 #t)))))
2871 (propagated-inputs `(("python-wrapt" ,python-wrapt)))
4edefc50
LDB
2872 (native-inputs
2873 `(("python-coverage" ,python-coverage)
2874 ("python-nose" ,python-nose)))
2875 (home-page
2876 "https://github.com/kwarunek/aiounittest")
2877 (synopsis "Test asyncio code more easily")
2878 (description "Aiounittest is a library that helps write tests using
2879asynchronous code in Python (asyncio).")
2880 (license license:expat)))