aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/test_is.clj
blob: 7175fa2af7c53958eb8fc2d459c356e5ee2b3780 (plain)
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
;;; test_is.clj: test framework for Clojure

;; by Stuart Sierra, http://stuartsierra.com/
;; March 28, 2009

;; Thanks to Chas Emerick, Allen Rohner, and Stuart Halloway for
;; contributions and suggestions.

;; Copyright (c) Stuart Sierra, 2008. All rights reserved.  The use
;; and distribution terms for this software are covered by the Eclipse
;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
;; which can be found in the file epl-v10.html at the root of this
;; distribution.  By using this software in any fashion, you are
;; agreeing to be bound by the terms of this license.  You must not
;; remove this notice, or any other, from this software.



(comment
  ;; Inspired by many Common Lisp test frameworks and clojure/test,
  ;; this file is a Clojure test framework.
  ;;
  ;;
  ;;
  ;; ASSERTIONS
  ;;
  ;; The core of the library is the "is" macro, which lets you make
  ;; assertions of any arbitrary expression:

  (is (= 4 (+ 2 2)))
  (is (instance? Integer 256))
  (is (.startsWith "abcde" "ab"))

  ;; You can type an "is" expression directly at the REPL, which will
  ;; print a message if it fails.
  ;;
  ;;     user> (is (= 5 (+ 2 2)))
  ;;
  ;;     FAIL in  (:1)
  ;;     expected: (= 5 (+ 2 2))
  ;;       actual: (not (= 5 4))
  ;;     false
  ;;
  ;; The "expected:" line shows you the original expression, and the
  ;; "actual:" shows you what actually happened.  In this case, it
  ;; shows that (+ 2 2) returned 4, which is not = to 5.  Finally, the
  ;; "false" on the last line is the value returned from the
  ;; expression.  The "is" macro always returns the result of the
  ;; inner expression.
  ;;
  ;; There are two special assertions for testing exceptions.  The
  ;;  "(is (thrown? c ...))" form tests if an exception of class c is
  ;;  thrown:

  (is (thrown? ArithmeticException (/ 1 0))) 

  ;; "(is (thrown-with-msg? c re ...))" does the same thing and also
  ;; tests that the message on the exception matches the regular
  ;; expression re:

  (is (thrown-with-msg? ArithmeticException #"Divide by zero"
                        (/ 1 0)))

  ;;
  ;;
  ;;
  ;; DOCUMENTING TESTS
  ;;
  ;; "is" takes an optional second argument, a string describing the
  ;; assertion.  This message will be included in the error report.

  (is (= 5 (+ 2 2)) "Crazy arithmetic")

  ;; In addition, you can document groups of assertions with the
  ;; "testing" macro, which takes a string followed by any number of
  ;; assertions.  The string will be included in failure reports.
  ;; Calls to "testing" may be nested, and all of the strings will be
  ;; joined together with spaces in the final report, in a style
  ;; similar to RSpec <http://rspec.info/>

  (testing "Arithmetic"
    (testing "with positive integers"
      (is (= 4 (+ 2 2)))
      (is (= 7 (+ 3 4))))
    (testing "with negative integers"
      (is (= -4 (+ -2 -2)))
      (is (= -1 (+ 3 -4)))))

  ;; Note that, unlike RSpec, the "testing" macro may only be used
  ;; INSIDE a "deftest" or "with-test" form (see below).
  ;;
  ;;
  ;;
  ;; DEFINING TESTS
  ;;
  ;; There are two ways to define tests.  The "with-test" macro takes
  ;; a defn or def form as its first argument, followed by any number
  ;; of assertions.  The tests will be stored as metadata on the
  ;; definition.

  (with-test
      (defn my-function [x y]
        (+ x y))
    (is (= 4 (my-function 2 2)))
    (is (= 7 (my-function 3 4))))

  ;; As of Clojure SVN rev. 1221, this does not work with defmacro.
  ;; See http://code.google.com/p/clojure/issues/detail?id=51
  ;;
  ;; The other way lets you define tests separately from the rest of
  ;; your code, even in a different namespace:

  (deftest addition
    (is (= 4 (+ 2 2)))
    (is (= 7 (+ 3 4))))

  (deftest subtraction
    (is (= 1 (- 4 3)))
    (is (= 3 (- 7 4))))

  ;; This creates functions named "addition" and "subtraction", which
  ;; can be called like any other function.  Therefore, tests can be
  ;; grouped and composed, in a style similar to the test framework in
  ;; Peter Seibel's "Practical Common Lisp"
  ;; <http://www.gigamonkeys.com/book/practical-building-a-unit-test-framework.html>

  (deftest arithmetic
    (addition)
    (subtraction))

  ;; The names of the nested tests will be joined in a list, like
  ;; "(arithmetic addition)", in failure reports.  You can use nested
  ;; tests to set up a context shared by several tests.
  ;;
  ;;
  ;;
  ;; RUNNING TESTS
  ;;
  ;; Run tests with the function "(run-tests namespaces...)":

  (run-tests 'your.namespace 'some.other.namespace)

  ;; If you don't specify any namespaces, the current namespace is
  ;; used.  To run all tests in all namespaces, use "(run-all-tests)".
  ;;
  ;; By default, these functions will search for all tests defined in
  ;; a namespace and run them in an undefined order.  However, if you
  ;; are composing tests, as in the "arithmetic" example above, you
  ;; probably do not want the "addition" and "subtraction" tests run
  ;; separately.  In that case, you must define a special function
  ;; named "test-ns-hook" that runs your tests in the correct order:

  (defn test-ns-hook []
    (arithmetic))

  ;;
  ;;
  ;;
  ;; OMITTING TESTS FROM PRODUCTION CODE
  ;;
  ;; You can bind the variable "*load-tests*" to false when loading or
  ;; compiling code in production.  This will prevent any tests from
  ;; being created by "with-test" or "deftest".
  ;;
  ;;
  ;;
  ;; FIXTURES (new)
  ;;
  ;; Fixtures allow you to run code before and after tests, to set up
  ;; the context in which tests should be run.
  ;;
  ;; A fixture is just a function that calls another function passed as
  ;; an argument.  It looks like this:
  (defn my-fixture [f]
    ;; Perform setup, establish bindings, whatever.
    (f) ;; Then call the function we were passed.
    ;; Tear-down / clean-up code here.
    )

  ;; Fixtures are attached to namespaces in one of two ways.  "each"
  ;; fixtures are run repeatedly, once for each test function created
  ;; with "deftest" or "with-test".  "each" fixtures are useful for
  ;; establishing a consistent before/after state for each test, like
  ;; clearing out database tables.
  ;;
  ;; "each" fixtures can be attached to the current namespace like this:
  (use-fixtures :each fixture1 fixture2 ...)
  ;; The fixture1, fixture2 are just functions like the example above.
  ;; They can also be anonymous functions, like this:
  (use-fixtures :each (fn [f] setup... (f) cleanup...))
  ;;
  ;; The other kind of fixture, a "once" fixture, is only run once,
  ;; around ALL the tests in the namespace.  "once" fixtures are useful
  ;; for tasks that only need to be performed once, like establishing
  ;; database connections, or for time-consuming tasks.
  ;;
  ;; Attach "once" fixtures to the current namespace like this:
  (use-fixtures :once fixture1 fixture2 ...)
  ;;
  ;;
  ;;
  ;; SAVING TEST OUTPUT TO A FILE
  ;;
  ;; All the test reporting functions write to the var *test-out*.  By
  ;; default, this is the same as *out*, but you can rebind it to any
  ;; PrintWriter.  For example, it could be a file opened with
  ;; clojure.contrib.duck-streams/writer.
  ;;
  ;;
  ;;
  ;; EXTENDING TEST-IS (ADVANCED)
  ;;
  ;; You can extend the behavior of the "is" macro by defining new
  ;; methods for the "assert-expr" multimethod.  These methods are
  ;; called during expansion of the "is" macro, so they should return
  ;; quoted forms to be evaluated.
  ;;
  ;; You can plug in your own test-reporting framework by rebinding
  ;; the "report" function: (report event)
  ;;
  ;; The 'event' argument is a map.  It will always have a :type key,
  ;; whose value will be a keyword signaling the type of event being
  ;; reported.  Standard events with :type value of :pass, :fail, and
  ;; :error are called when an assertion passes, fails, and throws an
  ;; exception, respectively.  In that case, the event will also have
  ;; the following keys:
  ;;
  ;;   :expected   The form that was expected to be true
  ;;   :actual     A form representing what actually occurred
  ;;   :message    The string message given as an argument to 'is'
  ;;
  ;; The "testing" strings will be a list in "*testing-contexts*", and
  ;; the vars being tested will be a list in "*testing-vars*".
  ;;
  ;; Your "report" function should wrap any printing calls in the
  ;; "with-test-out" macro, which rebinds *out* to the current value
  ;; of *test-out*.