From 68f476fcd69a3b8ae68e5f25e9efa754faa028ee Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sat, 22 Nov 2025 20:40:12 +0200 Subject: [PATCH] Added ctrf library --- Makefile | 2 +- retropikzel/ctrf.sld | 249 +++++++++++++++++++++++++++++++++++ retropikzel/ctrf/LICENSE | 165 +++++++++++++++++++++++ retropikzel/ctrf/README.html | 8 ++ retropikzel/ctrf/README.md | 10 ++ retropikzel/ctrf/VERSION | 1 + 6 files changed, 434 insertions(+), 1 deletion(-) create mode 100644 retropikzel/ctrf.sld create mode 100644 retropikzel/ctrf/LICENSE create mode 100644 retropikzel/ctrf/README.html create mode 100644 retropikzel/ctrf/README.md create mode 100644 retropikzel/ctrf/VERSION diff --git a/Makefile b/Makefile index 7bf904b..7684298 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.SILENT: build install test test-docker clean ${TMPDIR} +#.SILENT: build install test test-docker clean ${TMPDIR} SCHEME=chibi LIBRARY=cgi AUTHOR=retropikzel diff --git a/retropikzel/ctrf.sld b/retropikzel/ctrf.sld new file mode 100644 index 0000000..84bad73 --- /dev/null +++ b/retropikzel/ctrf.sld @@ -0,0 +1,249 @@ +(define-library + (retropikzel ctrf) + (cond-expand + (chezscheme + (import (rnrs) + (srfi 64) + (srfi 69) + (srfi 180))) + (else + (import (scheme base) + (scheme write) + (scheme time) + (scheme process-context) + (srfi 64) + (srfi 69) + (srfi 180)))) + (export test-begin + test-end + test-group + test-group-with-cleanup + test-skip + test-expect-fail + test-match-name + test-match-nth + test-match-all + test-match-any + test-assert + test-eqv + test-eq + test-equal + test-approximate + test-error + test-read-eval-string + test-apply test-with-runner + test-exit + test-runner-null + test-runner? + test-runner-reset + test-result-alist + test-result-alist! + test-result-ref + test-result-set! + test-result-remove + test-result-clear + test-runner-pass-count + test-runner-fail-count + test-runner-xpass-count + test-runner-xfail-count + test-runner-skip-count + test-runner-test-name + test-runner-group-path + test-runner-group-stack + test-runner-aux-value + test-runner-aux-value! + test-result-kind test-passed? + test-runner-on-test-begin + test-runner-on-test-begin! + test-runner-on-test-end + test-runner-on-test-end! + test-runner-on-group-begin + test-runner-on-group-begin! + test-runner-on-group-end + test-runner-on-group-end! + test-runner-on-final + test-runner-on-final! + test-runner-on-bad-count + test-runner-on-bad-count! + test-runner-on-bad-end-name + test-runner-on-bad-end-name! + test-runner-factory + test-runner-create + test-runner-current + test-runner-get + test-runner-simple + test-on-group-begin-simple + test-on-group-end-simple + test-on-final-simple + test-on-test-begin-simple + test-on-test-end-simple + test-on-bad-count-simple + test-on-bad-end-name-simple) + (cond-expand + ;; Guile has both r6rs and r7rs on (features) + (guile + (begin (define operation-system + (cond-expand + (windows "windows") + (else "unix"))))) + (r6rs + (begin (define operation-system "unknown"))) + (else + (begin (define operation-system + (cond-expand + (windows "windows") + (linux "linux") + (else "other")))))) + (cond-expand + (chezscheme (begin (define implementation-name "chezscheme"))) + (chibi (begin (define implementation-name "chibi"))) + (chicken (begin (define implementation-name "chicken"))) + (cyclone (begin (define implementation-name "cyclone"))) + (gambit (begin (define implementation-name "gambit"))) + (gauche (begin (define implementation-name "gauche"))) + (guile (begin (define implementation-name "guile"))) + (ikarus (begin (define implementation-name "ikarus"))) + (ironscheme (begin (define implementation-name "ironscheme"))) + (kawa (begin (define implementation-name "kawa"))) + (mit-scheme (begin (define implementation-name "mit-scheme"))) + (mosh (begin (define implementation-name "mosh"))) + (racket (begin (define implementation-name "racket"))) + (sagittarius (begin (define implementation-name "sagittarius"))) + (stklos (begin (define implementation-name "stklos"))) + (tr7 (begin (define implementation-name "tr7"))) + (ypsilon (begin (define implementation-name "ypsilon"))) + (else (begin (define implementation-name "unknown")))) + (cond-expand + (r6rs + (begin + (define (time-ms) + ;; FIXME + 0))) + (else + (begin + (define (time-ms) (/ (/ (current-jiffy) (jiffies-per-second)) 1000))))) + (begin + (define (any->string any) + (parameterize + ((current-output-port (open-output-string))) + (display any) + (get-output-string (current-output-port)))) + + (define runner + (lambda () + (let ((runner (test-runner-null)) + (tests (list)) + (current-test-start-time 0) + (current-test-groups '())) + + (test-runner-on-group-begin! + runner + (lambda (runner suite-name count) + (set! current-test-groups (append current-test-groups (list suite-name))))) + + (test-runner-on-group-end! + runner + (lambda (runner) + (set! current-test-groups + (reverse (list-tail (reverse current-test-groups) 1))))) + + (test-runner-on-test-begin! + runner + (lambda (runner) + (set! current-test-start-time (time-ms)))) + + (test-runner-on-test-end! + runner + (lambda (runner) + (let* ((name (test-runner-test-name runner)) + (result (test-result-kind runner)) + (status (cond ((equal? result 'pass) "passed") + ((equal? result 'xpass) "passed") + ((equal? result 'fail) "failed") + ((equal? result 'xfail) "failed") + ((equal? result 'skipped) "skipped") + (else "other"))) + (duration (exact (floor (- (time-ms) current-test-start-time)))) + (extra (make-hash-table))) + + (when (test-result-ref runner 'expected-value) + (hash-table-set! extra + 'expected-value + (test-result-ref runner 'expected-value))) + + (when (test-result-ref runner 'actual-value) + (hash-table-set! extra + 'actual-value + (test-result-ref runner 'actual-value))) + + (when (test-result-ref runner 'expected-error) + (hash-table-set! extra + 'expected-error + (test-result-ref runner 'expected-error))) + + (when (test-result-ref runner 'actual-error) + (hash-table-set! extra + 'actual-error + (test-result-ref runner 'actual-error))) + + (when (test-result-ref runner 'source-form) + (hash-table-set! extra + 'source-form + (any->string (test-result-ref runner 'source-form)))) + + (let ((test (alist->hash-table + `((name . ,name) + (status . ,status) + (duration . ,duration) + (suite . ,current-test-groups) + (extra . ,extra))))) + + (when (test-result-ref runner 'source-file) + (hash-table-set! extra + 'filePath + (test-result-ref runner 'source-file))) + + (when (test-result-ref runner 'source-line) + (hash-table-set! extra + 'line + (test-result-ref runner 'source-line))) + + (set! tests (append tests (list test))))))) + + (test-runner-on-final! + runner + (lambda (runner) + (let* + ((pass (test-runner-pass-count runner)) + (xpass (test-runner-xpass-count runner)) + (fail (test-runner-fail-count runner)) + (xfail (test-runner-xfail-count runner)) + (skipped (test-runner-skip-count runner)) + (tool (alist->hash-table + `((name . "srfi-64-retropikzel-ctrf")))) + (summary (alist->hash-table + `((tests . ,(+ pass xpass fail xfail)) + (passed . ,(+ pass xpass)) + (failed . ,(+ fail xfail)) + (pending . 0) + (skipped . ,skipped) + (other . 0)))) + (results (alist->hash-table + `((tool . ,tool) + (summary . ,summary) + (tests . ,tests)))) + (env (alist->hash-table + `((appName . ,implementation-name) + (osPlatform . ,operation-system)))) + (output (alist->hash-table + `((reportFormat . "CTRF") + (specVersion . "0.0.0") + (results . ,results) + (generatedBy . "(retropikzel ctrf)") + (environment . ,env))))) + + (display (json-write-string output #t)) + (newline) + (exit (+ fail xfail))))) + runner))) + (test-runner-factory runner))) diff --git a/retropikzel/ctrf/LICENSE b/retropikzel/ctrf/LICENSE new file mode 100644 index 0000000..0a04128 --- /dev/null +++ b/retropikzel/ctrf/LICENSE @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/retropikzel/ctrf/README.html b/retropikzel/ctrf/README.html new file mode 100644 index 0000000..f3641e1 --- /dev/null +++ b/retropikzel/ctrf/README.html @@ -0,0 +1,8 @@ +
Uses SRFI-64 underneath, giving output as [Common Test Report Format](https://ctrf.io/).
+
+Features
+
+- Exports exactly same things as SRFI-64, it only alters the output
+- Exists with exit code of count of failed tests
+- Measures time spent running individual tests
+- Adds implementation name and operation system onto the report
diff --git a/retropikzel/ctrf/README.md b/retropikzel/ctrf/README.md new file mode 100644 index 0000000..2a6d6f4 --- /dev/null +++ b/retropikzel/ctrf/README.md @@ -0,0 +1,10 @@ +Uses SRFI-64 underneath, giving output as [Common Test Report Format](https://ctrf.io/). + +Features + +- Exports exactly same things as SRFI-64, it only alters the output +- Exists with exit code of count of failed tests +- Measures time spent running individual tests +- Adds implementation name and operation system onto the report + + diff --git a/retropikzel/ctrf/VERSION b/retropikzel/ctrf/VERSION new file mode 100644 index 0000000..3eefcb9 --- /dev/null +++ b/retropikzel/ctrf/VERSION @@ -0,0 +1 @@ +1.0.0