unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#24935: [PATCH] Add tests for rot13.el
@ 2016-11-13 11:07 Simen Heggestøyl
  2016-11-13 15:39 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Simen Heggestøyl @ 2016-11-13 11:07 UTC (permalink / raw)
  To: 24935

[-- Attachment #1: Type: text/plain, Size: 290 bytes --]

Hello,

I saw that there weren't any tests for rot13.el yet, so I wrote
some. I also made a docstring correction along the way.

Unless there are any objections, I'll install the patch within a few
days.

I also plan to turn on lexical binding for rot13.el in a follow-up
commit.

-- Simen

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Add-tests-for-rot13.el.patch --]
[-- Type: text/x-patch, Size: 3139 bytes --]

From 3d69adedc05c1e6e5c94144160ba80b23f174b80 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Simen=20Heggest=C3=B8yl?= <simenheg@gmail.com>
Date: Sat, 12 Nov 2016 12:48:51 +0100
Subject: [PATCH] Add tests for rot13.el

* lisp/rot13.el (rot13): Docstring correction.

* test/lisp/rot13-tests.el: New file with tests for rot13.el.
---
 lisp/rot13.el            |  3 ++-
 test/lisp/rot13-tests.el | 54 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+), 1 deletion(-)
 create mode 100644 test/lisp/rot13-tests.el

diff --git a/lisp/rot13.el b/lisp/rot13.el
index ee4f51d..dae1517 100644
--- a/lisp/rot13.el
+++ b/lisp/rot13.el
@@ -63,7 +63,8 @@ rot13-translate-table
 
 ;;;###autoload
 (defun rot13 (object &optional start end)
-  "Return ROT13 encryption of OBJECT, a buffer or string."
+  "ROT13 encrypt OBJECT, a buffer or string.
+Return the ROT13 encrypted string when OBJECT is a string."
   (if (bufferp object)
       (with-current-buffer object
 	(rot13-region start end))
diff --git a/test/lisp/rot13-tests.el b/test/lisp/rot13-tests.el
new file mode 100644
index 0000000..a31dc50
--- /dev/null
+++ b/test/lisp/rot13-tests.el
@@ -0,0 +1,54 @@
+;;; rot13-tests.el --- Tests for rot13.el  -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2016 Free Software Foundation, Inc.
+
+;; Author: Simen Heggestøyl <simenheg@gmail.com>
+;; Keywords:
+
+;; 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 <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;
+
+;;; Code:
+
+(require 'ert)
+(require 'rot13)
+
+(ert-deftest rot13-tests-rot13 ()
+  (should (equal (rot13 "Super-secret text") "Fhcre-frperg grkg"))
+  (with-temp-buffer
+    (insert "Super-secret text")
+    (rot13 (current-buffer) (point-min) (point-max))
+    (should (equal (buffer-string) "Fhcre-frperg grkg"))
+    (rot13 (current-buffer) (point-min) (+ (point-min) 5))
+    (should (equal (buffer-string) "Super-frperg grkg"))))
+
+(ert-deftest rot13-tests-rot13-string ()
+  (should (equal (rot13-string "") ""))
+  (should (equal (rot13-string (rot13-string "foo")) "foo"))
+  (should (equal (rot13-string "Super-secret text")
+                 "Fhcre-frperg grkg")))
+
+(ert-deftest rot13-tests-rot13-region ()
+  (with-temp-buffer
+    (insert "Super-secret text")
+    (rot13-region (+ (point-min) 6) (+ (point-min) 12))
+    (should (equal (buffer-string) "Super-frperg text"))))
+
+(provide 'rot13-tests)
+;;; rot13-tests.el ends here
-- 
2.10.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#24935: [PATCH] Add tests for rot13.el
  2016-11-13 11:07 bug#24935: [PATCH] Add tests for rot13.el Simen Heggestøyl
@ 2016-11-13 15:39 ` Eli Zaretskii
  2016-11-15 18:43   ` Simen Heggestøyl
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2016-11-13 15:39 UTC (permalink / raw)
  To: Simen Heggestøyl; +Cc: 24935

> Date: Sun, 13 Nov 2016 12:07:36 +0100
> From: Simen Heggestøyl <simenheg@gmail.com>
> 
> I saw that there weren't any tests for rot13.el yet, so I wrote
> some. I also made a docstring correction along the way.

Thanks.  A comment below.

> Unless there are any objections, I'll install the patch within a few
> days.

To the master branch, please.

>  ;;;###autoload
>  (defun rot13 (object &optional start end)
> -  "Return ROT13 encryption of OBJECT, a buffer or string."
> +  "ROT13 encrypt OBJECT, a buffer or string.
> +Return the ROT13 encrypted string when OBJECT is a string."

If we are going to fix the doc string, let's also document START and
END, and tell that they are ignored if OBJECT is a string.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24935: [PATCH] Add tests for rot13.el
  2016-11-13 15:39 ` Eli Zaretskii
@ 2016-11-15 18:43   ` Simen Heggestøyl
  2016-11-15 20:23     ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Simen Heggestøyl @ 2016-11-15 18:43 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 24935

On Sun, Nov 13, 2016 at 4:39 PM, Eli Zaretskii <eliz@gnu.org> wrote:
> If we are going to fix the doc string, let's also document START and
> END, and tell that they are ignored if OBJECT is a string.

I agree. How about the following?

  "ROT13 encrypt OBJECT, a buffer or string.
Return the ROT13 encrypted string when OBJECT is a string,
ignoring START and END.  ROT13 encrypt the region between
positions START and END when OBJECT is a buffer; all three
arguments are then required."

-- Simen






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24935: [PATCH] Add tests for rot13.el
  2016-11-15 18:43   ` Simen Heggestøyl
@ 2016-11-15 20:23     ` Eli Zaretskii
  2016-11-17 18:23       ` Simen Heggestøyl
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2016-11-15 20:23 UTC (permalink / raw)
  To: Simen Heggestøyl; +Cc: 24935

> Date: Tue, 15 Nov 2016 19:43:55 +0100
> From: Simen Heggestøyl <simenheg@gmail.com>
> Cc: 24935@debbugs.gnu.org
> 
>   "ROT13 encrypt OBJECT, a buffer or string.
> Return the ROT13 encrypted string when OBJECT is a string,
> ignoring START and END.  ROT13 encrypt the region between
> positions START and END when OBJECT is a buffer; all three
> arguments are then required."

It sounds strange to describe first the use case where the arguments
are ignored.  I suggest this instead:

  ROT13 encrypt OBJECT, a buffer or string.
If OBJECT is a buffer, encrypt the region between START and END.
If OBJECT is a string, encrypt it in its entirety, ignoring START
and END, and return the encrypted string.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#24935: [PATCH] Add tests for rot13.el
  2016-11-15 20:23     ` Eli Zaretskii
@ 2016-11-17 18:23       ` Simen Heggestøyl
  0 siblings, 0 replies; 5+ messages in thread
From: Simen Heggestøyl @ 2016-11-17 18:23 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 24935-done

Sounds good to me, thanks.

Installed with your suggested change.

-- Simen

On Tue, Nov 15, 2016 at 9:23 PM, Eli Zaretskii <eliz@gnu.org> wrote:
>>  Date: Tue, 15 Nov 2016 19:43:55 +0100
>>  From: Simen Heggestøyl <simenheg@gmail.com>
>>  Cc: 24935@debbugs.gnu.org
>> 
>>    "ROT13 encrypt OBJECT, a buffer or string.
>>  Return the ROT13 encrypted string when OBJECT is a string,
>>  ignoring START and END.  ROT13 encrypt the region between
>>  positions START and END when OBJECT is a buffer; all three
>>  arguments are then required."
> 
> It sounds strange to describe first the use case where the arguments
> are ignored.  I suggest this instead:
> 
>   ROT13 encrypt OBJECT, a buffer or string.
> If OBJECT is a buffer, encrypt the region between START and END.
> If OBJECT is a string, encrypt it in its entirety, ignoring START
> and END, and return the encrypted string.
> 
> 
> 






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-17 18:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-13 11:07 bug#24935: [PATCH] Add tests for rot13.el Simen Heggestøyl
2016-11-13 15:39 ` Eli Zaretskii
2016-11-15 18:43   ` Simen Heggestøyl
2016-11-15 20:23     ` Eli Zaretskii
2016-11-17 18:23       ` Simen Heggestøyl

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).