* [bug#33955] [PATCH 2/6] gnu: kirigami: Enable test-suite.
2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
@ 2019-01-02 18:46 ` Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 3/6] gnu: kpackage: " Hartmut Goebel
` (3 subsequent siblings)
4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
To: 33955
The error which inhibited running the tests no longer occurs
in 5.49.0, although now no tests are found at all. Since no tests
are found now, the phase 'check-setup can be removed, too,
and thus the 'arguments' at all.
* gnu/packages/kde-frameworks.scm(kirigami)[arguments]: Remove.
---
gnu/packages/kde-frameworks.scm | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 35e10015e..62cf49c57 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -804,19 +804,6 @@ or user activity.")
("qtsvg" ,qtsvg)
;; Run-time dependency
("qtgraphicaleffects" ,qtgraphicaleffects)))
- (arguments
- `(#:tests? #f ;; FIXME: Test suite is broken,
- ;; see https://bugs.kde.org/show_bug.cgi?id=386456
- ;; Note for when enabling the tests: The test-suite is meant to be run
- ;; without prior installation, see
- ;; https://cgit.kde.org/kirigami.git/commit/?id=24ad2c9
- #:phases
- (modify-phases %standard-phases
- (add-before 'check 'check-setup
- (lambda* (#:key outputs #:allow-other-keys)
- ;; make Qt render "offscreen", required for tests
- (setenv "QT_QPA_PLATFORM" "offscreen")
- #t)))))
(home-page "https://community.kde.org/Frameworks")
(synopsis "QtQuick components for mobile user interfaces")
(description "Kirigami is a set of high level QtQuick components looking
--
2.13.7
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [bug#33955] [PATCH 3/6] gnu: kpackage: Enable test-suite.
2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 2/6] gnu: kirigami: " Hartmut Goebel
@ 2019-01-02 18:46 ` Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 4/6] gnu: kemoticons: " Hartmut Goebel
` (2 subsequent siblings)
4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
To: 33955
* gnu/package/kde-frameworks.scm(kpackage)[arguments]
<#:tests?>: Remove. <#:phases>: Add phase 'patch-tests.
---
gnu/packages/kde-frameworks.scm | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 62cf49c57..07e30d4cf 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1834,8 +1834,7 @@ covers feedback and persistent events.")
("ki18n" ,ki18n)
("qtbase" ,qtbase)))
(arguments
- `(#:tests? #f ; FIXME: 3/9 tests fail.
- #:phases
+ `(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch
(lambda _
@@ -1847,6 +1846,17 @@ covers feedback and persistent events.")
(("^\\s*(QDirIterator it\\(.*, QDirIterator::Subdirectories)(\\);)" _ a b)
(string-append a " | QDirIterator::FollowSymlinks" b)))
#t))
+ (add-after 'unpack 'patch-tests
+ (lambda _
+ ;; /bin/ls doesn't exist in the build-container use /etc/passwd
+ (substitute* "autotests/packagestructuretest.cpp"
+ (("(addDirectoryDefinition\\(\")bin(\".*\")bin(\".*\")bin\""
+ _ a b c)
+ (string-append a "etc" b "etc" c "etc\""))
+ (("filePath\\(\"bin\", QStringLiteral\\(\"ls\"))")
+ "filePath(\"etc\", QStringLiteral(\"passwd\"))")
+ (("\"/bin/ls\"") "\"/etc/passwd\""))
+ #t))
(add-before 'check 'check-setup
(lambda _
(setenv "HOME" (getcwd))
--
2.13.7
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [bug#33955] [PATCH 4/6] gnu: kemoticons: Enable test-suite.
2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 2/6] gnu: kirigami: " Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 3/6] gnu: kpackage: " Hartmut Goebel
@ 2019-01-02 18:46 ` Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 5/6] gnu: knewstuff: " Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 6/6] gnu: kwindowsystem: " Hartmut Goebel
4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
To: 33955
Without anything changed the test-suite now passes, thus can be enabled.
* gnu/package/kde-frameworks.scm(kemoticons)[arguments]<#:tests?>: Remove.
---
gnu/packages/kde-frameworks.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 07e30d4cf..079a8a75e 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2423,8 +2423,7 @@ engine WebKit via QtWebKit.")
("kcoreaddons" ,kcoreaddons)
("qtbase" ,qtbase)))
(arguments
- `(#:tests? #f ; FIXME: 2/2 tests fail.
- #:phases
+ `(#:phases
(modify-phases %standard-phases
(add-before 'check 'check-setup
(lambda _
--
2.13.7
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [bug#33955] [PATCH 5/6] gnu: knewstuff: Enable test-suite.
2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
` (2 preceding siblings ...)
2019-01-02 18:46 ` [bug#33955] [PATCH 4/6] gnu: kemoticons: " Hartmut Goebel
@ 2019-01-02 18:46 ` Hartmut Goebel
2019-01-02 18:46 ` [bug#33955] [PATCH 6/6] gnu: kwindowsystem: " Hartmut Goebel
4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
To: 33955
Without anything changed the test-suite now passes, thus can be enabled.
* gnu/package/kde-frameworks.scm(knewstuff)[arguments]<#:tests?>: Remove.
---
gnu/packages/kde-frameworks.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 079a8a75e..45580cb5f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2727,8 +2727,7 @@ KIO enabled infrastructure.")
("solid" ,solid)
("sonnet" ,sonnet)))
(arguments
- `(#:tests? #f ; FIXME: 1/3 tests fail.
- #:phases
+ `(#:phases
(modify-phases %standard-phases
(add-before 'check 'check-setup
(lambda _ ; XDG_DATA_DIRS isn't set
--
2.13.7
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [bug#33955] [PATCH 6/6] gnu: kwindowsystem: Enable test-suite.
2019-01-02 18:46 ` [bug#33955] [PATCH 1/6] gnu: kcoreaddons: Enable test-suite Hartmut Goebel
` (3 preceding siblings ...)
2019-01-02 18:46 ` [bug#33955] [PATCH 5/6] gnu: knewstuff: " Hartmut Goebel
@ 2019-01-02 18:46 ` Hartmut Goebel
4 siblings, 0 replies; 13+ messages in thread
From: Hartmut Goebel @ 2019-01-02 18:46 UTC (permalink / raw)
To: 33955
* gnu/package/kde-frameworks.scm(kwindowsystem)
[inputs]: Add openbox.
[arguments] <#:tests?> Remove.
<#:phases> 'blacklist-failing-tests: New phase.
<#:phases> 'check: Start openbox, don't set QT_PLUGIN_PATH, use invkove,
simplify and cleanup code. No longer move 'check behind install.
---
gnu/packages/kde-frameworks.scm | 47 +++++++++++++++++++----------------------
1 file changed, 22 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 45580cb5f..72fd8f20f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
-;;; Copyright © 2016,2017,2018 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;; Copyright © 2016-2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2016 David Craven <david@craven.ch>
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -56,6 +56,7 @@
#:use-module (gnu packages libreoffice)
#:use-module (gnu packages linux)
#:use-module (gnu packages mp3)
+ #:use-module (gnu packages openbox)
#:use-module (gnu packages pdf)
#:use-module (gnu packages pcre)
#:use-module (gnu packages perl)
@@ -1093,6 +1094,7 @@ configuration pages, message boxes, and password requests.")
`(("extra-cmake-modules" ,extra-cmake-modules)
("pkg-config" ,pkg-config)
("dbus" ,dbus) ; for the tests
+ ("openbox" ,openbox) ; for the tests
("qttools" ,qttools)
("xorg-server" ,xorg-server))) ; for the tests
(inputs
@@ -1101,31 +1103,26 @@ configuration pages, message boxes, and password requests.")
("qtx11extras" ,qtx11extras)
("xcb-utils-keysyms" ,xcb-util-keysyms)))
(arguments
- `(#:tests? #f ; FIXME: 3/12 tests fail.
- #:phases
+ `(#:phases
(modify-phases %standard-phases
- (delete 'check)
- (add-after 'install 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- ;; TODO: Simplify and use "common" phases when test-suite passes
- (if tests?
- (begin
- (let ((out (assoc-ref outputs "out")))
- (setenv "QT_PLUGIN_PATH"
- (string-append out "/lib/qt5/plugins:"
- (getenv "QT_PLUGIN_PATH"))))
- ;; The test suite requires a running X server, setting
- ;; QT_QPA_PLATFORM=offscreen does not suffice and even make
- ;; some tests fail.
- (system (string-append (assoc-ref inputs "xorg-server")
- "/bin/Xvfb :1 -screen 0 640x480x24 &"))
- (setenv "DISPLAY" ":1")
- (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
- (setenv "DBUS_FATAL_WARNINGS" "0")
- (zero? (system* "dbus-launch" "ctest" ".")))
- (begin
- (format #t "test suite not run~%")
- #t)))))))
+ (add-before 'check 'blacklist-failing-tests
+ (lambda _
+ ;; Blacklist a failing test-functions. FIXME: Make it pass.
+ (with-output-to-file "autotests/BLACKLIST"
+ (lambda _
+ (display "[testState]\n*\n")
+ (display "[testSupported]\n*\n")))
+ #t))
+ (replace 'check
+ (lambda _
+ ;; The test suite requires a running window anager
+ (system "Xvfb :1 -ac -screen 0 640x480x24 &")
+ (setenv "DISPLAY" ":1")
+ (sleep 5) ;; Give Xvfb a few moments to get on it's feet
+ (system "openbox &")
+ (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
+ (setenv "DBUS_FATAL_WARNINGS" "0")
+ (invoke "dbus-launch" "ctest" "."))))))
(home-page "https://community.kde.org/Frameworks")
(synopsis "KDE access to the windowing system")
(description "KWindowSystem provides information about and allows
--
2.13.7
^ permalink raw reply related [flat|nested] 13+ messages in thread