aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2020-09-15 17:52:18 +0200
committerMathieu Othacehe <othacehe@gnu.org>2020-09-15 17:52:18 +0200
commit8fc4794b3080944e82610bc8177d0ab7723dfcbd (patch)
tree5250923ccc68faa9e103c8c4756ace0996be4180 /tests
parent7642748398c69c9740ec3c3532bd88c5ea0615e4 (diff)
downloadcuirass-8fc4794b3080944e82610bc8177d0ab7723dfcbd.tar
cuirass-8fc4794b3080944e82610bc8177d0ab7723dfcbd.tar.gz
tests: Improve metrics testing.
* tests/metrics.scm (nearest-exact-integer): Remove as unused. ("db-update-metrics"): Test that 'pending-builds metric is updated on "db-update-metrics" call.
Diffstat (limited to 'tests')
-rw-r--r--tests/metrics.scm17
1 files changed, 7 insertions, 10 deletions
diff --git a/tests/metrics.scm b/tests/metrics.scm
index 8859084..9b9a29f 100644
--- a/tests/metrics.scm
+++ b/tests/metrics.scm
@@ -23,11 +23,6 @@
((guix utils) #:select (call-with-temporary-output-file))
(srfi srfi-64))
-(define (nearest-exact-integer x)
- "Given a real number X, return the nearest exact integer, with ties going to
-the nearest exact even integer."
- (inexact->exact (round x)))
-
(define-syntax-rule (with-temporary-database body ...)
(call-with-temporary-output-file
(lambda (file port)
@@ -117,13 +112,15 @@ nix_name, log, status, timestamp, starttime, stoptime) VALUES
(db-update-metric 'percentage-failed-eval-per-spec "guix")
(db-get-metrics-with-id 'percentage-failed-eval-per-spec)))
- (test-assert "db-update-metrics"
+ (test-equal "db-update-metrics"
+ `((,today . 2.0))
(begin
+ (sqlite-exec (%db) (format #f "\
+INSERT INTO Builds (id, derivation, evaluation, job_name, system,
+nix_name, log, status, timestamp, starttime, stoptime) VALUES
+(3, '/gnu/store/zzz.drv', 1, '', '', '', '', -2, 0, 0, 0);"))
(db-update-metrics)
- (equal? (db-get-metric 'average-10-last-eval-duration-per-spec
- "guix")
- (db-get-metric 'average-100-last-eval-duration-per-spec
- "guix"))))
+ (db-get-metrics-with-id 'pending-builds)))
(test-assert "db-close"
(db-close (%db)))