mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 18:41:25 -08:00
* etc/ERC-NEWS: Mention that ERC only adds the text property `cursor-sensor-functions' when `erc-echo-timestamps' is enabled. Also mention that date stamps are now inserted as separate messages. * lisp/erc/erc-fill.el (erc-fill): Look for text prop `erc-cmd' instead of `erc-command' and use helper utility to do so. (erc-fill-static): Skip date stamps because this fill style leaves them flush left. (erc-fill-wrap-mode, erc-fill-wrap-enable, erc-fill-wrap-disable): Don't hook on the soon-to-be-removed function interface `erc-stamp--insert-date-function' because date stamps are now separate messages. (erc-fill--wrap-continued-message-p): Restore accidentally discarded doc string. Derive context about current message from text props at `point-min', and use updated property names and utility functions. Abort when previous message is now hidden. (erc-fill--wrap-stamp-insert-prefixed-date): Remove unused function, originally meant to be new in ERC 5.6, and move logic for date-stamp measuring portion directly to `erc-fill-wrap' itself. (erc-fill--wrap-measure): New helper function. (erc-fill-wrap): Use helper `erc-fill--wrap-measure' and incorporate date-stamp detection and width measuring from removed helper. Don't dedent first word for messages of unknown origin, such as those inserted by `erc-display-line' alone without prior preparation from `erc-display-message'. * lisp/erc/erc-goodies.el (erc-readonly-mode, erc-readonly-enable): Set hook depth explicitly to 70. * lisp/erc/erc-stamp.el (erc-timestamp-format-left): Mention that a trailing newline is implicit if not provided and that users who don't want date stamps should use `erc-timestamp-format-right' instead. (erc-stamp-mode, erc-stamp-enable): Call `erc-stamp--setup' instead of `erc-munge-invisibility-spec', and bump hook depth for `erc-add-timestamp' to 70. (erc-stamp--current-time): Use `erc-ts' instead of `erc-timestamp' text property in doc string. (erc-stamp--skip): New internal variable. (erc-stamp--allow-unmanaged): New variable for legacy code to force `erc-add-timestamps' to run when `erc--msg-props' is nil. (erc-add-timestamp): Always run when `erc-stamp--allow-unmanaged' is non-nil unless `erc-stamp--skip' is as well because the latter takes precedence. Don't add `erc-ts' text prop directly unless `erc-stamp--allow-unmanaged is non-nil. Instead, use the new `erc--msg-props' facility to defer until after modification hooks. Likewise, don't add `cursor-senor-functions' directly either unless the same compatibility flag is enabled. Instead, expect the latter to be handled by a post-modify hook conditioned on the option `erc-echo-timestamps'. (erc-timestamp-last-inserted-left): Mention that the final trailing newline specified in the format string no longer appears in the recorded value. (erc-stamp-prefix-log-filter): Use updated name for timestamp property as well as helper utility for accessing it. (erc-stamp--inherited-props): Add doc string. (erc-insert-timestamp-right): Fix bug involving object cycle where the time-stamp string would appear in its own `display' property. (erc-stamp--insert-date-function, erc-stamp--insert-date-hook): Remove unused internal function-valued interface variable and replace with the latter, a normal hook. (erc-stamp--date-format-end, erc-stamp--propertize-left-date-stamp): New function and auxiliary variable to apply date stamp properties at the post-modify stage. Add text property `erc-stamp-type' to inserted date stamps to help folks distinguish between them and other left-sided stamps. (erc-stamp--current-datestamp-left, erc-stamp--format-date-stamp, erc-stamp--insert-date-stamp-as-phony-message, erc-stamp--lr-date-on-pre-modify): New functions and state variable to help ERC treat date stamps as separate messages while working within the established mechanism for processing inserted messages. Shadow `erc-stamp--invisible-property' when calling `erc-format-timestamp' in order to prevent date stamps from inheriting other `invisible' props. These date stamps are special in that they have no business being hidden along with the current message. (erc-insert-timestamp-left-and-right): On initial run in any buffer, remember whether the date stamp needed newline massaging on insertion. Move all business for inserting date stamps to post-modify hooks, but run them forcibly if this is the very first date stamp in the current buffer. Also mention some specifics related to relevant text props in the doc string. (erc-format-timestamp): Don't add `invisible' prop to stamp unless `erc-stamp--invisible-property' is non-nil. (erc-stamp--csf-props-updated-p): New local variable. (erc-munge-invisibility-spec): Restore `cursor-sensor-functions' text property for existing messages when a user enables the option mid-session. Add and remove hooks for use with automatic timestamp echoing. (erc-stamp--add-csf-on-post-modify): New function to add `cursor-sensor-functions' property on post-modify hooks. (erc-stamp--setup): Perform some additional teardown. (erc-stamp--on-clear-message): Look for text property `erc-ts' instead of `erc-timestamp'. (erc-echo-timestamp, erc--echo-ts-csf): Use utility to find time-stamp text prop in current message. (erc-stamp--update-saved-position, erc-stamp--reset-on-clear): Use hook `erc-stamp--insert-date-hook' instead of excised function-valued variable interface `erc-stamp--insert-date-function'. * lisp/erc/erc-truncate.el (erc-truncate-buffer-to-size): Use internal utility to find beginning of message. * lisp/erc/erc.el (erc--msg-props, erc--msg-props-overrides): New internal variables for initializing and conveying metadata-oriented text properties among insert and send hooks. (erc-insert-modify-hook): Mention reserved depth ranges for built-in members in doc string. (erc-send-action): Use convenience variable to modifying text props instead of awkwardly overriding `erc-insert-pre-hook'. (erc--check-msg-prop, erc--get-inserted-msg-bounds, erc--get-inserted-msg-prop, erc--with-inserted-msg, erc--traverse-inserted): New utility functions and macros to help modules find metadata and message-delimiting text props. (erc-display-line-1): Ensure the first character of every message in an ERC buffer has the `erc-msg' property, as well as any other props in `erc--msg-props', when populated. (erc--hide-message): Don't bother offsetting start of first message in a buffer. (erc--ranked-properties, erc--order-text-properties-from-hash): New variable and function to convert `erc--msg-props' into a plist suitable for `add-text-properties'. (erc-display-message): Make doc string more informative. Bind and initialize `erc--msg-props' for use by all hooks. Respect `erc--msg-prop-overrides' when non-nil. Don't add `erc-command' property. Instead, ensure `erc--msg-props' contains an `erc-cmd' item when the parameter PARSED is non-nil. (erc--own-property-names): Add `erc-stamp-type'. (erc--get-speaker-bounds): Use helper to find message start. (erc-process-ctcp-query, erc-send-current-line): Use convenience variable to leverage framework for manipulating message metadata instead of overriding `erc-insert-pre-hook'. (erc-display-msg): Bind `erc--msg-props' for use by all send-related hooks. Add text props from table after `erc-send-post-hook'. (erc-restore-text-properties): Improve doc string. (erc--get-eq-comparable-cmd): Use `if-let' instead of `if-let*'. * test/lisp/erc/erc-fill-tests.el (erc-fill-tests--insert-privmsg): Make phony message more realistic. (erc-fill-tests--wrap-populate): Shorten overlong line. (erc-fill-tests--wrap-check-prefixes): Make test utility more vigilant in asserting no gaps exist in `line-prefix' property interval. (erc-fill-tests--compare): Compare text props on text-prop values that are themselves strings. * test/lisp/erc/erc-scenarios-log.el (erc-scenarios-log--clear-stamp): Ensure `erc-stamp' is loaded. * test/lisp/erc/erc-scenarios-match.el (erc-scenarios-match--stamp-left-current-nick, erc-scenarios-match--invisible-stamp): Use `default-value' for `erc-insert-modify-hook' in ordering assertion. (erc-scenarios-match--find-bol, erc-scenarios-match--find-eol): Remove unused assertion helper functions. (erc-scenarios-match--stamp-right-fools-invisible): Remove misplaced ERT tag from function and use utility to find message bounds. (erc-scenarios-match--stamp-right-fools-invisible): Use real utility from main library to find message end. (erc-scenarios-match--fill-wrap-stamp-dedented-p): New assertion utility function. (erc-scenarios-match--hide-fools/stamp-both/fill-wrap) New test. (erc-scenarios-match--hide-fools/stamp-both/fill-wrap/speak): New test. (erc-scenarios-match--stamp-both-invisible-fill-static): Expect `erc-cmd' at beginning of inserted message's filled line, even if the line starts with white space. Also, add new function parameter `assert-ds', a callback to run when visiting the second date stamp, which is followed by a hidden message. In the test of the same name, expect the date stamp's invisibility interval to begin at the newline after the previous message and to not contain any existing invisibility props, namely, those belonging to the subsequent hidden "fools" message. Also use shortened "metadata" text prop names. (erc-scenarios-match--stamp-both-invisible-fill-static--nooffset): Expect the date stamp's invisibility interval to match its field's instead of starting and ending sooner. * test/lisp/erc/erc-stamp-tests.el: Put well-known metadata prop at the start of the message. * test/lisp/erc/erc-tests.el (erc--refresh-prompt): Prevent modules from mutating hooks. (erc--order-text-properties-from-hash, erc--check-msg-prop): New tests. * test/lisp/erc/resources/fill/snapshots/merge-01-start.eld: Update test data. * test/lisp/erc/resources/fill/snapshots/merge-02-right.eld: Update test data. * test/lisp/erc/resources/fill/snapshots/merge-wrap-01.eld: Update. * test/lisp/erc/resources/fill/snapshots/monospace-01-start.eld: Update. * test/lisp/erc/resources/fill/snapshots/monospace-02-right.eld: Update. * test/lisp/erc/resources/fill/snapshots/monospace-03-left.eld: Update. * test/lisp/erc/resources/fill/snapshots/monospace-04-reset.eld: Update. * test/lisp/erc/resources/fill/snapshots/spacing-01-mono.eld: Update. * test/lisp/erc/resources/fill/snapshots/stamps-left-01.eld: Update. * test/lisp/erc/resources/match/fools/fill-wrap.eld: New file. (Bug#60936)
310 lines
13 KiB
EmacsLisp
310 lines
13 KiB
EmacsLisp
;;; erc-stamp-tests.el --- Tests for erc-stamp. -*- lexical-binding:t -*-
|
|
|
|
;; Copyright (C) 2023 Free Software Foundation, Inc.
|
|
|
|
;; This file is part of GNU Emacs.
|
|
;;
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published
|
|
;; by the Free Software Foundation, either version 3 of the License,
|
|
;; or (at your option) any later version.
|
|
;;
|
|
;; GNU Emacs is distributed in the hope that it will be useful, but
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
(require 'ert-x)
|
|
(require 'erc-stamp)
|
|
(require 'erc-goodies) ; for `erc-make-read-only'
|
|
|
|
;; These display-oriented tests are brittle because many factors
|
|
;; influence how text properties are applied. We should just
|
|
;; rework these into full scenarios.
|
|
|
|
(defun erc-stamp-tests--insert-right (test)
|
|
(let ((val (list 0 0))
|
|
(erc-insert-modify-hook '(erc-add-timestamp))
|
|
(erc-insert-post-hook '(erc-make-read-only)) ; see comment above
|
|
(erc-timestamp-only-if-changed-flag nil)
|
|
;;
|
|
erc-kill-channel-hook erc-kill-server-hook erc-kill-buffer-hook)
|
|
|
|
(advice-add 'erc-format-timestamp :filter-args
|
|
(lambda (args) (cons (cl-incf (cadr val) 60) (cdr args)))
|
|
'((name . ert-deftest--erc-timestamp-use-align-to)))
|
|
|
|
(with-current-buffer (get-buffer-create "*erc-stamp-tests--insert-right*")
|
|
(erc-mode)
|
|
(erc-munge-invisibility-spec)
|
|
(erc--initialize-markers (point) nil)
|
|
(setq erc-server-process (start-process "p" (current-buffer)
|
|
"sleep" "1"))
|
|
(set-process-query-on-exit-flag erc-server-process nil)
|
|
|
|
(funcall test)
|
|
|
|
(when noninteractive
|
|
(kill-buffer)))
|
|
|
|
(advice-remove 'erc-format-timestamp
|
|
'ert-deftest--erc-timestamp-use-align-to)))
|
|
|
|
(defun erc-stamp-tests--use-align-to--nil (compat)
|
|
(erc-stamp-tests--insert-right
|
|
(lambda ()
|
|
|
|
(ert-info ("nil, normal")
|
|
(let ((erc-timestamp-use-align-to nil))
|
|
(erc-display-message nil 'notice (current-buffer) "begin"))
|
|
(goto-char (point-min))
|
|
(should (search-forward-regexp
|
|
(rx "begin" (+ "\t") (* " ") "[") nil t))
|
|
;; Field includes intervening spaces
|
|
(should (eql ?n (char-before (field-beginning (point)))))
|
|
;; Timestamp extends to the end of the line
|
|
(should (eql ?\n (char-after (field-end (point))))))
|
|
|
|
;; The option `erc-timestamp-right-column' is normally nil by
|
|
;; default, but it's a convenient stand in for a sufficiently
|
|
;; small `erc-fill-column' (we can force a line break without
|
|
;; involving that module).
|
|
(should-not erc-timestamp-right-column)
|
|
|
|
(ert-info ("nil, overlong (hard wrap)")
|
|
(let ((erc-timestamp-use-align-to nil)
|
|
(erc-timestamp-right-column 20))
|
|
(erc-display-message nil 'notice (current-buffer)
|
|
"twenty characters"))
|
|
(should (search-forward-regexp (rx bol (+ "\t") (* " ") "[") nil t))
|
|
;; Field includes leading whitespace.
|
|
(should (eql (if compat ?\[ ?\n)
|
|
(char-after (field-beginning (point)))))
|
|
;; Timestamp extends to the end of the line.
|
|
(should (eql ?\n (char-after (field-end (point)))))))))
|
|
|
|
(ert-deftest erc-timestamp-use-align-to--nil ()
|
|
(ert-info ("Field starts on stamp text (compat)")
|
|
(let ((erc-stamp--omit-properties-on-folded-lines t))
|
|
(erc-stamp-tests--use-align-to--nil 'compat)))
|
|
(ert-info ("Field includes leaidng white space")
|
|
(erc-stamp-tests--use-align-to--nil nil)))
|
|
|
|
(defun erc-stamp-tests--use-align-to--t (compat)
|
|
(erc-stamp-tests--insert-right
|
|
(lambda ()
|
|
|
|
(ert-info ("t, normal")
|
|
(let ((erc-timestamp-use-align-to t))
|
|
(let ((msg (erc-format-privmessage "bob" "msg one" nil t)))
|
|
(erc-display-message nil nil (current-buffer) msg)))
|
|
(goto-char (point-min))
|
|
;; Exactly two spaces, one from format, one added by erc-stamp.
|
|
(should (search-forward "msg one [" nil t))
|
|
;; Field covers space between.
|
|
(should (eql ?e (char-before (field-beginning (point)))))
|
|
(should (eql ?\n (char-after (field-end (point))))))
|
|
|
|
(ert-info ("t, overlong (hard wrap)")
|
|
(let ((erc-timestamp-use-align-to t)
|
|
(erc-timestamp-right-column 20))
|
|
(let ((msg (erc-format-privmessage "bob" "tttt wwww oooo" nil t)))
|
|
(erc-display-message nil nil (current-buffer) msg)))
|
|
;; Indented to pos (this is arguably a bug).
|
|
(should (search-forward-regexp (rx bol (+ "\t") (* " ") "[") nil t))
|
|
;; Field includes leading space.
|
|
(should (eql (if compat ?\[ ?\n) (char-after (field-beginning (point)))))
|
|
(should (eql ?\n (char-after (field-end (point)))))))))
|
|
|
|
(ert-deftest erc-timestamp-use-align-to--t ()
|
|
(ert-info ("Field starts on stamp text (compat)")
|
|
(let ((erc-stamp--omit-properties-on-folded-lines t))
|
|
(erc-stamp-tests--use-align-to--t 'compat)))
|
|
(ert-info ("Field includes leaidng white space")
|
|
(erc-stamp-tests--use-align-to--t nil)))
|
|
|
|
(ert-deftest erc-timestamp-use-align-to--integer ()
|
|
(erc-stamp-tests--insert-right
|
|
(lambda ()
|
|
|
|
(ert-info ("integer, normal")
|
|
(let ((erc-timestamp-use-align-to 1))
|
|
(let ((msg (erc-format-privmessage "bob" "msg one" nil t)))
|
|
(erc-display-message nil nil (current-buffer) msg)))
|
|
(goto-char (point-min))
|
|
;; Space not added because included in format string.
|
|
(should (search-forward "msg one [" nil t))
|
|
;; Field covers space between.
|
|
(should (eql ?e (char-before (field-beginning (point)))))
|
|
(should (eql ?\n (char-after (field-end (point))))))
|
|
|
|
(ert-info ("integer, overlong (hard wrap)")
|
|
(let ((erc-timestamp-use-align-to 1)
|
|
(erc-timestamp-right-column 20))
|
|
(let ((msg (erc-format-privmessage "bob" "tttt wwww oooo" nil t)))
|
|
(erc-display-message nil nil (current-buffer) msg)))
|
|
;; No hard wrap
|
|
(should (search-forward "oooo [" nil t))
|
|
;; Field starts at leading space.
|
|
(should (eql ?\s (char-after (field-beginning (point)))))
|
|
(should (eql ?\n (char-after (field-end (point)))))))))
|
|
|
|
(ert-deftest erc-stamp--display-margin-mode--right ()
|
|
(erc-stamp-tests--insert-right
|
|
(lambda ()
|
|
(erc-stamp--display-margin-mode +1)
|
|
|
|
(ert-info ("margin, normal")
|
|
(let ((erc-timestamp-use-align-to 'margin))
|
|
(let ((msg (erc-format-privmessage "bob" "msg one" nil t)))
|
|
(put-text-property 0 (length msg) 'wrap-prefix 10 msg)
|
|
(erc-display-message nil nil (current-buffer) msg)))
|
|
(goto-char (point-min))
|
|
;; Space not added (treated as opaque string).
|
|
(should (search-forward "msg one[" nil t))
|
|
;; Field covers stamp alone
|
|
(should (eql ?e (char-before (field-beginning (point)))))
|
|
;; Vanity props extended
|
|
(should (get-text-property (field-beginning (point)) 'wrap-prefix))
|
|
(should (get-text-property (1+ (field-beginning (point))) 'wrap-prefix))
|
|
(should (get-text-property (1- (field-end (point))) 'wrap-prefix))
|
|
(should (eql ?\n (char-after (field-end (point))))))
|
|
|
|
(ert-info ("margin, overlong (hard wrap)")
|
|
(let ((erc-timestamp-use-align-to 'margin)
|
|
(erc-timestamp-right-column 20))
|
|
(let ((msg (erc-format-privmessage "bob" "tttt wwww oooo" nil t)))
|
|
(erc-display-message nil nil (current-buffer) msg)))
|
|
;; No hard wrap
|
|
(should (search-forward "oooo[" nil t))
|
|
;; Field starts at format string (right bracket)
|
|
(should (eql ?\[ (char-after (field-beginning (point)))))
|
|
(should (eql ?\n (char-after (field-end (point)))))))))
|
|
|
|
;; This concerns a proposed partial reversal of the changes resulting
|
|
;; from:
|
|
;;
|
|
;; 24.1.50; Wrong behavior of move-end-of-line in ERC (Bug#11706)
|
|
;;
|
|
;; Perhaps core behavior has changed since this bug was reported, but
|
|
;; C-e stopping one char short of EOL no longer seems a problem.
|
|
;; However, invoking C-n (`next-line') exhibits a similar effect.
|
|
;; When point is in a stamp or near the beginning of a line, issuing a
|
|
;; C-n puts point one past the start of the message (i.e., two chars
|
|
;; beyond the timestamp's closing "]". Dropping the invisible
|
|
;; property when timestamps are hidden does indeed prevent this, but
|
|
;; it's also a lasting commitment. The docs mention that it's
|
|
;; pointless to pair the old `intangible' property with `invisible'
|
|
;; and suggest users look at `cursor-intangible-mode'. Turning off
|
|
;; the latter does indeed do the trick as does decrementing the end of
|
|
;; the `cursor-intangible' interval so that, in addition to C-n
|
|
;; working, a C-f from before the timestamp doesn't overshoot. This
|
|
;; appears to be the case whether `erc-hide-timestamps' is enabled or
|
|
;; not, but it may be inadvisable for some reason (a hack) and
|
|
;; therefore warrants further investigation.
|
|
;;
|
|
;; Note some striking omissions here:
|
|
;;
|
|
;; 1. a lack of `fill' module integration (we simulate it by
|
|
;; making lines short enough to not wrap)
|
|
;; 2. functions like `line-move' behave differently when
|
|
;; `noninteractive'
|
|
;; 3. no actual test assertions involving `cursor-sensor' movement
|
|
;; even though that's a huge ingredient
|
|
|
|
(ert-deftest erc-timestamp-intangible--left ()
|
|
(let ((erc-timestamp-only-if-changed-flag nil)
|
|
(erc-timestamp-intangible t) ; default changed to nil in 2014
|
|
(erc-hide-timestamps t)
|
|
(erc-insert-timestamp-function 'erc-insert-timestamp-left)
|
|
(erc-server-process (start-process "true" (current-buffer) "true"))
|
|
(erc-insert-modify-hook '(erc-make-read-only erc-add-timestamp))
|
|
msg
|
|
erc-kill-channel-hook erc-kill-server-hook erc-kill-buffer-hook)
|
|
(should (not cursor-sensor-inhibit))
|
|
(set-process-query-on-exit-flag erc-server-process nil)
|
|
(erc-mode)
|
|
(with-current-buffer (get-buffer-create "*erc-timestamp-intangible*")
|
|
(erc-mode)
|
|
(erc--initialize-markers (point) nil)
|
|
(erc-munge-invisibility-spec)
|
|
(erc-display-message nil 'notice (current-buffer) "Welcome")
|
|
;;
|
|
;; Pretend `fill' is active and that these lines are
|
|
;; folded. Otherwise, there's an annoying issue on wrapped lines
|
|
;; (when visual-line-mode is off and stamps are visible) where
|
|
;; C-e sends you to the end of the previous line.
|
|
(setq msg "Lorem ipsum dolor sit amet")
|
|
(erc-display-message nil nil (current-buffer)
|
|
(erc-format-privmessage "alyssa" msg nil t))
|
|
(erc-display-message nil 'notice (current-buffer) "Home")
|
|
(goto-char (point-min))
|
|
|
|
;; EOL is actually EOL (Bug#11706)
|
|
|
|
(ert-info ("Notice before stamp, C-e") ; first line/stamp
|
|
(should (search-forward "Welcome" nil t))
|
|
(ert-simulate-command '(erc-bol))
|
|
(should (looking-at (rx "[")))
|
|
(let ((end (pos-eol))) ; `line-end-position' fails because fields
|
|
(ert-simulate-command '(move-end-of-line 1))
|
|
(should (= end (point)))))
|
|
|
|
(ert-info ("Privmsg before stamp, C-e")
|
|
(should (search-forward "Lorem" nil t))
|
|
(goto-char (pos-bol))
|
|
(should (looking-at (rx "[")))
|
|
(let ((end (pos-eol)))
|
|
(ert-simulate-command '(move-end-of-line 1))
|
|
(should (= end (point)))))
|
|
|
|
(ert-info ("Privmsg first line, C-e")
|
|
(goto-char (pos-bol))
|
|
(should (search-forward "ipsum" nil t))
|
|
(let ((end (pos-eol)))
|
|
(ert-simulate-command '(move-end-of-line 1))
|
|
(should (= end (point)))))
|
|
|
|
(when noninteractive
|
|
(kill-buffer)))))
|
|
|
|
(ert-deftest erc-echo-timestamp ()
|
|
:tags (and (null (getenv "CI")) '(:unstable))
|
|
|
|
(should-not erc-echo-timestamps)
|
|
(should-not erc-stamp--last-stamp)
|
|
(insert (propertize "a" 'erc-ts 433483200 'erc-msg 'msg) "bc")
|
|
(goto-char (point-min))
|
|
(let ((inhibit-message t)
|
|
(erc-echo-timestamp-format "%Y-%m-%d %H:%M:%S %Z")
|
|
(erc-echo-timestamp-zone (list (* 60 60 -4) "EDT")))
|
|
|
|
;; No-op when non-interactive and option is nil
|
|
(should-not (erc--echo-ts-csf nil nil 'entered))
|
|
(should-not erc-stamp--last-stamp)
|
|
|
|
;; Non-interactive (cursor sensor function)
|
|
(let ((erc-echo-timestamps t))
|
|
(should (equal (erc--echo-ts-csf nil nil 'entered)
|
|
"1983-09-27 00:00:00 EDT")))
|
|
(should (= 433483200 erc-stamp--last-stamp))
|
|
|
|
;; Interactive
|
|
(should (equal (call-interactively #'erc-echo-timestamp)
|
|
"1983-09-27 00:00:00 EDT"))
|
|
;; Interactive with zone
|
|
(let ((current-prefix-arg '(4)))
|
|
(should (member (call-interactively #'erc-echo-timestamp)
|
|
'("1983-09-27 04:00:00 GMT"
|
|
"1983-09-27 04:00:00 UTC"))))
|
|
(let ((current-prefix-arg -7))
|
|
(should (equal (call-interactively #'erc-echo-timestamp)
|
|
"1983-09-26 21:00:00 -07")))))
|
|
|
|
;;; erc-stamp-tests.el ends here
|