aboutsummaryrefslogtreecommitdiff
path: root/test/test-printing.el
blob: 5f5fddb858c938cc5bd64fd62d8ccefdc514227e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264

;;; Setup
(require 'cl-lib)

(defmacro line-should-match (regexp)
  "Test if the line at point matches REGEXP"
  `(let ((line (buffer-substring-no-properties
                (line-beginning-position)
                (line-end-position))))
     (sx-test-message "Line here is: %S" line)
     (should (string-match ,regexp line))))

(defmacro question-list-regex (title votes answers &rest tags)
  "Construct a matching regexp for TITLE, VOTES, and ANSWERS.
Each element of TAGS is appended at the end of the expression
after being run through `sx-tag--format'."
  `(rx line-start
       (+ whitespace) ,(number-to-string votes)
       (+ whitespace) ,(number-to-string answers)
       (+ whitespace)
       ,title
       (+ (any whitespace digit))
       (or "y" "d" "h" "m" "mo" "s") " ago"
       (+ whitespace)
       (eval (mapconcat #'sx-tag--format (list ,@tags) " "))))


;;; Tests
(ert-deftest time-since ()
  (cl-letf (((symbol-function #'float-time)
           (lambda () 1420148997.)))
    (should
     (string=
      "67m"
      (sx-time-since 1420145000.)))
    (should
     (string=
      "12h"
      (sx-time-since 1420105000.)))))

(ert-deftest question-list-tag ()
  "Test `sx-tag--format'."
  (should
   (string= (sx-tag--format "tag") "[tag]"))
  (with-temp-buffer
    (insert (sx-tag--format "tag"))
    (should (get-char-property (point-min) 'button))
    (should
     (eq (get-char-property (point-min) 'face) 'sx-tag))
    (should
     (string= (get-char-property (point-min) 'sx-tag) "tag"))
    (should
     (string= (get-char-property (point-min) 'sx-button-copy) "tag"))))

(ert-deftest question-list-display ()
  (cl-letf (((symbol-function #'sx-request-make)
             (lambda (&rest _) sx-test-data-questions)))
    (sx-tab-all-questions nil "emacs")
    (switch-to-buffer sx-tab--all-questions-buffer)
    (goto-char (point-min))
    (should (equal (buffer-name)
                   (format "*question-list: %s *" sx-question-list--current-tab)))
    (line-should-match
     (question-list-regex
      "Focus-hook: attenuate colours when losing focus"
      1 0 "frames" "hooks" "focus"))
    (sx-question-list-next 5)
    (line-should-match
     (question-list-regex
      "Babel doesn't wrap results in verbatim"
      0 1 "org-mode" "org-export" "org-babel"))
    ;; ;; Use this when we have a real sx-question buffer.
    ;; (save-excursion
    ;;   (call-interactively 'sx-question-list-display-question)
    ;;   (should (equal (buffer-name) "*sx-question*")))
    (sx-question-list-previous 4)
    (line-should-match
     (question-list-regex
      ""Making tag completion table" Freezes/Blocks -- how to disable"
      2 1 "autocomplete" "performance" "ctags"))))

(ert-deftest sx--user-@name ()
  "Test `sx--user-@name' character substitution"
  (should
   (string=
    (sx-user--@name "ĥÞßđłřğĝýÿñńśşšŝżźžçćčĉùúûüŭůòóôõöøőðìíîïıèéêëęàåáâäãåąĵ★")
    "@hTHssdlrggyynnsssszzzccccuuuuuuooooooooiiiiieeeeeaaaaaaaaj"))
  (should
   (string=
    (sx-user--@name "ĤÞßĐŁŘĞĜÝŸÑŃŚŞŠŜŻŹŽÇĆČĈÙÚÛÜŬŮÒÓÔÕÖØŐÐÌÍÎÏıÈÉÊËĘÀÅÁÂÄÃÅĄĴ")
    "@HTHssDLRGGYYNNSSSSZZZCCCCUUUUUUOOOOOOOOIIIIiEEEEEAAAAAAAAJ"))
  (should-error
   (sx-user--@name 2)))

(ert-deftest sx-user--format ()
  "Test various `sx-user--format' features."
  (let ((user
         '((display_name . "ĥÞßđłřğĝýÿñńśşšŝżźžçćčĉùúûüŭůòóôõöøőðìíîïıèéêëęàåáâäãåąĵ★")
           (accept_rate . 90)
           (reputation . 10)
           (link . "link"))))
    (should
     (equal (sx-user--format "%l" user) "link"))
    (should
     (equal
      (sx-user--format "%@" user)
      "@hTHssdlrggyynnsssszzzccccuuuuuuooooooooiiiiieeeeeaaaaaaaaj"))
    (should
     (equal
      (sx-user--format "%@%%d%%%-30d  %9r%l" user)
      "@hTHssdlrggyynnsssszzzccccuuuuuuooooooooiiiiieeeeeaaaaaaaaj%d%ĥÞßđłřğĝýÿñńśşšŝżźžçćčĉùúûüŭůòóôõöøőðìíîïıèéêëęàåáâäãåąĵ★         10link")))
  (should
   (string=
    (sx-user--format "%@" '((display_name . "ĤÞßĐŁŘĞĜÝŸÑŃŚŞŠŜŻŹŽÇĆČĈÙÚÛÜŬŮÒÓÔÕÖØŐÐÌÍÎÏıÈÉÊËĘÀÅÁÂÄÃÅĄĴ")))
    "@HTHssDLRGGYYNNSSSSZZZCCCCUUUUUUOOOOOOOOIIIIiEEEEEAAAAAAAAJ")))

(ert-deftest sx-object-modification ()
  "Test adding things to objects"
  (let ((object '((owner . "me"))))
    (should
     (equal (sx--ensure-owner-in-object 1 object)
            '((owner . "me"))))
    (should
     (equal object '((owner . "me")))))
  (let ((object '((not-owner . "me"))))
    (should
     (equal (sx--ensure-owner-in-object 1 object)
            '((owner . 1) (not-owner . "me"))))
    (should
     (equal object '((owner . 1) (not-owner . "me")))))
  (let ((object '((comments . (something)))))
    (should
     (equal (sx--add-comment-to-object "comment" object)
            '((comments . (something "comment")))))
    (should
     (equal object '((comments . (something "comment"))))))
  (let ((object '((not-comments . (something)))))
    (should
     (equal (sx--add-comment-to-object "comment" object)
            '((comments . ("comment")) (not-comments . (something)))))
    (should
     (equal object '((comments . ("comment")) (not-comments . (something))))))
  (let ((object '((not-answers . (something)))))
    (should
     (equal (sx--add-answer-to-question-object "answer" object)
            '((answers . ("answer")) (not-answers . (something)))))
    (should
     (equal object '((answers . ("answer")) (not-answers . (something))))))
  (let ((object '((answers . (something)))))
    (should
     (equal (sx--add-answer-to-question-object "answer" object)
            '((answers . (something "answer")))))
    (should
     (equal object '((answers . (something "answer")))))))


;;; question-mode
(ert-deftest sx-display-question ()
  ;; Check it doesn't error.
  (sx-display-question (elt sx-test-data-questions 0))
  ;; Check it does error.
  (should-error
   (sx-display-question sx-test-data-questions))
  (should-error
   (sx-display-question sx-test-data-questions nil 1)))

(ert-deftest sx-question-mode--fill-and-fontify ()
  "Check complicated questions are filled correctly."
  (with-temp-buffer
    (sx-question-mode--insert-markdown
     "Creating an account on a new site requires you to log into that site using *the same credentials you used on existing sites.* For instance, if you used the Stack Exchange login method, you'd...

1. Click the \"Log in using Stack Exchange\" button:

  ![image][1]

2. Enter your username and password (yes, even if you *just did this* to log into, say, Stack Overflow) and press the \"Log In\" button:

  [link][2]

3. Confirm the creation of the new account:

  [![image-in-link][3]](emacs.stackexchange.com)

        some code block
        some code block
        some code block
        some code block
        some code block
        some code block

  [1]: http://i.stack.imgur.com/ktFTs.png
  [2]: http://i.stack.imgur.com/5l2AY.png
  [3]: http://i.stack.imgur.com/22myl.png")
    (when sx-question-mode-use-images
      (should (overlays-in (point-min) (point-max)))
      (should (= 2 (length (overlays-in (point-min) (point-max))))))
    (if sx-question-mode-use-images
        (should
         (equal
          (buffer-substring-no-properties (point-min) (point-max))
          "Creating an account on a new site requires you to log into that site
using *the same credentials you used on existing sites.* For instance,
if you used the Stack Exchange login method, you'd...

1. Click the \"Log in using Stack Exchange\" button:






2. Enter your username and password (yes, even if you *just did this*
   to log into, say, Stack Overflow) and press the \"Log In\" button:

link

3. Confirm the creation of the new account:






        some code block
        some code block
        some code block
        some code block
        some code block
        some code block
        
  [1]: http://i.stack.imgur.com/ktFTs.png
  [2]: http://i.stack.imgur.com/5l2AY.png
  [3]: http://i.stack.imgur.com/22myl.png"))
      (should
       (equal
        (buffer-substring-no-properties (point-min) (point-max))
        "Creating an account on a new site requires you to log into that site
using *the same credentials you used on existing sites.* For instance,
if you used the Stack Exchange login method, you'd...

1. Click the \"Log in using Stack Exchange\" button:

image

2. Enter your username and password (yes, even if you *just did this*
   to log into, say, Stack Overflow) and press the \"Log In\" button:

link

3. Confirm the creation of the new account:

image-in-link

        some code block
        some code block
        some code block
        some code block
        some code block
        some code block
        
  [1]: http://i.stack.imgur.com/ktFTs.png
  [2]: http://i.stack.imgur.com/5l2AY.png
  [3]: http://i.stack.imgur.com/22myl.png")))))