aboutsummaryrefslogtreecommitdiff
path: root/tests/test-host-environment.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-22 11:45:19 -0500
committerCraig Jennings <c@cjennings.net>2026-04-22 11:45:19 -0500
commit848a2d52c9eb796dac94a6f263b0518abe580c69 (patch)
treedfa2345fb1e1107555efaa721d51479d900c20f8 /tests/test-host-environment.el
parent9896e7f5861beeb591ece48f38d1135ffdc6059b (diff)
downloaddotemacs-848a2d52c9eb796dac94a6f263b0518abe580c69.tar.gz
dotemacs-848a2d52c9eb796dac94a6f263b0518abe580c69.zip
fix(host-environment): detect battery correctly on Linux desktops
`env-laptop-p` treated any `battery-format "%B"` value that wasn't literally "N/A" as "has a battery." On a Linux desktop using `battery-upower`, the result is "unknown". The AC adapter and USB-C power entries exist in /sys but there's no BAT*. That made desktops look like laptops. The per-machine font height switch in `font-config.el` broke as a result. The fix uses /sys/class/power_supply/BAT* as the canonical Linux signal. That's what the kernel exposes, and what upower itself reads. Other platforms keep the `battery-format` path, but the fallback now checks for a live battery status char ("!", "+", "-") instead of only excluding "N/A". Two pure helpers (`env--battery-status-char-indicates-battery-p`, `env--power-supply-has-battery-p`) keep the logic testable. The new test file covers Normal, Boundary, and Error cases for each helper.
Diffstat (limited to 'tests/test-host-environment.el')
-rw-r--r--tests/test-host-environment.el68
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/test-host-environment.el b/tests/test-host-environment.el
new file mode 100644
index 00000000..9290a32f
--- /dev/null
+++ b/tests/test-host-environment.el
@@ -0,0 +1,68 @@
+;;; test-host-environment.el --- Tests for host-environment.el -*- lexical-binding: t; -*-
+
+;;; Commentary:
+;; Unit tests for `env-laptop-p' and its pure helpers.
+;;
+;; Regression driver: upower on a desktop with only an AC adapter reports
+;; `(battery-format "%B" ...)' as "unknown", not "N/A". The previous
+;; implementation treated any non-"N/A" value as "has a battery", so
+;; desktops were misclassified as laptops.
+
+;;; Code:
+
+(require 'ert)
+
+(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory))
+(require 'host-environment)
+
+;;; env--battery-status-char-indicates-battery-p
+
+(ert-deftest test-host-environment-battery-char-live-codes ()
+ "Normal: \"+\", \"-\", and \"!\" indicate a live battery."
+ (should (env--battery-status-char-indicates-battery-p "+"))
+ (should (env--battery-status-char-indicates-battery-p "-"))
+ (should (env--battery-status-char-indicates-battery-p "!")))
+
+(ert-deftest test-host-environment-battery-char-na-returns-nil ()
+ "Boundary: legacy \"N/A\" sentinel means no battery."
+ (should-not (env--battery-status-char-indicates-battery-p "N/A")))
+
+(ert-deftest test-host-environment-battery-char-unknown-returns-nil ()
+ "Boundary: upower \"unknown\" (desktop with AC adapter) means no battery."
+ (should-not (env--battery-status-char-indicates-battery-p "unknown")))
+
+(ert-deftest test-host-environment-battery-char-empty-returns-nil ()
+ "Boundary: empty string means no battery."
+ (should-not (env--battery-status-char-indicates-battery-p "")))
+
+(ert-deftest test-host-environment-battery-char-nil-returns-nil ()
+ "Error: nil input means no battery."
+ (should-not (env--battery-status-char-indicates-battery-p nil)))
+
+;;; env--power-supply-has-battery-p
+
+(ert-deftest test-host-environment-power-supply-with-bat-dir ()
+ "Normal: a directory with BAT0 subdirectory reports a battery."
+ (let ((dir (make-temp-file "power-supply-test-" t)))
+ (unwind-protect
+ (progn
+ (make-directory (expand-file-name "BAT0" dir))
+ (should (env--power-supply-has-battery-p dir)))
+ (delete-directory dir t))))
+
+(ert-deftest test-host-environment-power-supply-no-bat-dir ()
+ "Boundary: a directory with only AC adapter entries reports no battery."
+ (let ((dir (make-temp-file "power-supply-test-" t)))
+ (unwind-protect
+ (progn
+ (make-directory (expand-file-name "ACAD" dir))
+ (make-directory (expand-file-name "ucsi-source-psy-USBC000:001" dir))
+ (should-not (env--power-supply-has-battery-p dir)))
+ (delete-directory dir t))))
+
+(ert-deftest test-host-environment-power-supply-missing-dir-returns-nil ()
+ "Error: nonexistent power-supply directory is treated as no battery."
+ (should-not (env--power-supply-has-battery-p "/nonexistent/path/for-test-12345")))
+
+(provide 'test-host-environment)
+;;; test-host-environment.el ends here