334 lines
13 KiB
Plaintext
334 lines
13 KiB
Plaintext
;; Being tested: SEdit
|
|
;;
|
|
;; Source: {ERIS}<LispCore>DOC>SEDIT>SEDIT.TEDIT
|
|
;;
|
|
;; Created By: Henry Cate III
|
|
;;
|
|
;; Creation Date: February 19, 1987
|
|
;;
|
|
;; Last Update:
|
|
;;
|
|
;; Filed As: {eris}<lispcore>test>SEdit>command-comment.u
|
|
;;
|
|
;;
|
|
;;
|
|
|
|
|
|
(do-test "load the functions for the prompter for interactive tests"
|
|
(if (not (fboundp 'do-test-menu-setup))
|
|
(load "{ERINYES}<test>TOOLS>DO-TEST-MENU.dfasl"))
|
|
T)
|
|
|
|
|
|
(do-test-group "Comment"
|
|
:before (progn
|
|
(setq window-list (do-test-menu-Setup "Comment")))
|
|
|
|
:after (progn
|
|
(do-test-menu-Cleanup window-list))
|
|
|
|
|
|
(do-test "Comment: no selection/no caret"
|
|
(let* (( user-result(do-test-menu-Message window-list 'high
|
|
" Testing Comment
|
|
If there is no free Xerox Common Lisp exec, bring up a another one and type: \"(cl:in-package 'xcl-test)\"
|
|
In the exec type:
|
|
|
|
(setq tempx '(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment)))
|
|
(il:dv tempx)
|
|
|
|
Select Conv. Comment from the popup menu.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"Select structure to convert comments within.\"? "))
|
|
(good-value (equal '(1 2 4.5 6/7 a b cd efg "hello" "BYE" (bye) ("hi" b cd 4) (il:* a comment)) tempx)))
|
|
(and user-result (if (eq t user-result) good-value T))
|
|
))
|
|
|
|
|
|
(do-test "Comment: no selection/edit caret"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: no selection/edit caret
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select DONE from the SEdit popup menu.
|
|
Want to place the edit caret right after the 1 without selecting it. Do this by pressing the left mouse button with the mouse cursor just to the right of the 1.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"Select structure to convert comments within.\"? "))
|
|
|
|
|
|
(do-test "Comment: no selection/structure caret"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: no selection/structure caret
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Want to place the structure caret right between \"b\" and \"cd\" without selecting either item. Do this by positioning the mouse cursor between the two items and press the middle button.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"Select structure to convert comments within.\"? "))
|
|
|
|
|
|
(do-test "Comment: select a litatom"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select a litatom
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the first litatom \"cd\" as a structure, by pressing the left mouse button twice with the cursor over the litatom.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: select a string"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select a string
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the string \"hello\" as a structure, by pressing the left mouse button twice with the cursor over the string.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: select a number"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select a number
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the number \"4.5\" as a structure, by pressing the left mouse button twice with the cursor over the number.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: select a list"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select a list
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the list \"(bye)\" as a structure, by pressing the left mouse button three times with the cursor over the \"y\".
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: select a comment"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select a comment
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Type control-x.
|
|
Place the edit caret after the number 1 and type \"; hello\", then select this as a structure.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: select part of a litatom"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select part of a litatom
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 ; hello 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Type meta-U twice
|
|
Select the \"d\" in the first litatom \"cd\".
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"Select structure to convert commnts within.\"? "))
|
|
|
|
|
|
(do-test "Comment: select part of a string"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select part of a string
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the \"h\" in the string \"hello\".
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"Select structure to convert commnts within.\"? "))
|
|
|
|
|
|
(do-test "Comment: select part of a number"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: select part of a number
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the \"7\" in the number \"6/7\".
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"Select structure to convert commnts within.\"? "))
|
|
|
|
|
|
(do-test "Comment: pending delete of a litatom"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: pending delete of litatom
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the litatom \"efg\" in pending delete mode by first pressing the left button of the mouse with the cursor on the \"e\" and then pressing the right button withe the cursor on the \"g\". This should create a box around the litatom \"efg\".
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: pending delete of a string"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: pending delete of a string
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the string \"hello\" in pending delete mode bye clicking on the \"h\", then pressing the right mouse button with the cursor to the right of the string.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: pending delete a number"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: pending delete of a number
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the number \"4.5\" in pending delete mode.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: pending delete of a list"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: pending delete of a list
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the list \"(bye)\" in pending delete mode.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: pending delete of a comment"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: pending delete of a comment
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Type control-x
|
|
Place the structure caret the number \"1\".
|
|
Type in \"; hello\"
|
|
Select the comment in pending delete mode.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of litatoms"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: try extended selection of litatoms
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 ; hello 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Type meta-U twice.
|
|
Select the litatom \"a\" as a structure, and extend the selection to include the next two litatoms.
|
|
Type meta-;
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of strings"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: extended selection of strings
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Now select the string \"hello\" as a structure, and extend the selection to include the second string.
|
|
Type meta-;
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of numbers"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: extended selection of numbers
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the number \"1\" as a structure, and extend the selection to include the next number.
|
|
Type meta-;.
|
|
(If a break window pops up, uparrow out of it and indicate failure.)
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of lists"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: extended selection of lists
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the list \"(bye)\" as a structure, and extend the selection to include the next list.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of litatoms and numbers"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: extended selection of litatoms and numbers
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the number \"1\" as a structure, and extend the selection to include the next seven items.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of strings and lists"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: extended selection of strings and lists
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Select the string \"hello\" as a structure, and extend the selection to include the next three items.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"No comments converted.\"? "))
|
|
|
|
|
|
(do-test "Comment: extended selection of several things"
|
|
(do-test-menu-Message window-list 'high
|
|
" Testing: extended selection of several things
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) (il:* a comment))
|
|
Type control-x.
|
|
Select the number \"1\" as a structure, and extend the selection to include the rest.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"1 comment converted.\"
|
|
And does the comment get converted to a common lisp comment? "))
|
|
|
|
|
|
(do-test "Comment: selection of entire structure"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: selection of entire structure
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) ; a comment)
|
|
Type meta-U.
|
|
Select the entire structure.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"1 comment converted.\"
|
|
And does the comment get converted to a common lisp comment? "))
|
|
|
|
|
|
(do-test "Comment: pending delete of entire structure"
|
|
(do-test-menu-Message window-list 'low
|
|
" Testing: selection of entire structure
|
|
Assumping SEdit is editing the variable tempx which currently equals:
|
|
(1 2 4.5 6/7 a b cd efg \"hello\" \"BYE\" (bye) (\"hi\" b cd 4) ; a comment)
|
|
Type meta-U.
|
|
Select the entire structure in pending delete mode.
|
|
Type meta-;.
|
|
Does SEdit display in the SEdit prompt window:
|
|
\"1 comment converted.\"
|
|
And does the comment get converted to a common lisp comment? "))
|
|
|
|
|
|
(do-test "Clean up"
|
|
(do-test-menu-message window-list 'high
|
|
"Close the SEdit window by selecting Close from the window popup menu."))
|
|
|
|
) ; end of do-test-group
|
|
|
|
|
|
STOP
|