-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtesting.f90
733 lines (535 loc) · 18.1 KB
/
testing.f90
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
! This file is part of mctc-lib.
!
! Licensed under the Apache License, Version 2.0 (the "License");
! you may not use this file except in compliance with the License.
! You may obtain a copy of the License at
!
! http://www.apache.org/licenses/LICENSE-2.0
!
! Unless required by applicable law or agreed to in writing, software
! distributed under the License is distributed on an "AS IS" BASIS,
! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
! See the License for the specific language governing permissions and
! limitations under the License.
!> Provides a light-weight testing framework for usage in projects depending on
!> the tool chain library.
!>
!> Testsuites are defined by a [[collect_interface]] returning a set of
!> [[unittest_type]] objects. To create a new test use the [[new_unittest]]
!> constructor, which requires a test identifier and a procedure with a
!> [[test_interface]] compatible signature. The error status is communicated
!> by the allocation status of an [[error_type]].
!>
!> The necessary boilerplate code to setup the test entry point is just
!>
!>```fortran
!>program tester
!> use, intrinsic :: iso_fortran_env, only : error_unit
!> use mctc_env_testing, only : run_testsuite, new_testsuite, testsuite_type
!> use test_suite1, only : collect_suite1
!> use test_suite2, only : collect_suite2
!> implicit none
!> integer :: stat, ii
!> type(testsuite_type), allocatable :: testsuites(:)
!> character(len=*), parameter :: fmt = '("#", *(1x, a))'
!>
!> stat = 0
!>
!> testsuites = [ &
!> & new_testsuite("suite1", collect_suite1), &
!> & new_testsuite("suite2", collect_suite2) &
!> & ]
!>
!> do ii = 1, size(testsuites)
!> write(error_unit, fmt) "Testing:", testsuites(ii)%name
!> call run_testsuite(testsuites(ii)%collect, error_unit, stat)
!> end do
!>
!> if (stat > 0) then
!> write(error_unit, '(i0, 1x, a)') stat, "test(s) failed!"
!> error stop
!> end if
!>
!>end program tester
!>```
!>
!> Every test is defined in a separate module using a ``collect`` function, which
!> is exported and added to the ``testsuites`` array in the test runner.
!> All test have a simple interface with just an allocatable [[error_type]] as
!> output to provide the test results.
!>
!>```fortran
!>module test_suite1
!> use mctc_env_testing, only : new_unittest, unittest_type, error_type, check
!> implicit none
!> private
!>
!> public :: collect_suite1
!>
!>contains
!>
!>!> Collect all exported unit tests
!>subroutine collect_suite1(testsuite)
!> !> Collection of tests
!> type(unittest_type), allocatable, intent(out) :: testsuite(:)
!>
!> testsuite = [ &
!> & new_unittest("valid", test_valid), &
!> & new_unittest("invalid", test_invalid, should_fail=.true.) &
!> & ]
!>
!>end subroutine collect_suite1
!>
!>subroutine test_valid(error)
!> type(error_type), allocatable, intent(out) :: error
!> ! ...
!>end subroutine test_valid
!>
!>subroutine test_invalid(error)
!> type(error_type), allocatable, intent(out) :: error
!> ! ...
!>end subroutine test_invalid
!>
!>end module test_suite1
!>```
!>
!> For an example setup checkout the ``test/`` directory in this project.
module mctc_env_testing
use mctc_env_error, only : error_type, mctc_stat
use mctc_env_accuracy, only : sp, dp, i1, i2, i4, i8
implicit none
private
public :: run_testsuite, run_selected, new_unittest, new_testsuite
public :: select_test, select_suite
public :: unittest_type, testsuite_type, error_type
public :: check, test_failed
public :: test_interface, collect_interface
interface check
module procedure :: check_stat
module procedure :: check_logical
module procedure :: check_float_sp
module procedure :: check_float_dp
module procedure :: check_int_i1
module procedure :: check_int_i2
module procedure :: check_int_i4
module procedure :: check_int_i8
module procedure :: check_bool
module procedure :: check_string
end interface check
abstract interface
!> Entry point for tests
subroutine test_interface(error)
import :: error_type
!> Error handling
type(error_type), allocatable, intent(out) :: error
end subroutine test_interface
end interface
!> Declaration of a unit test
type :: unittest_type
!> Name of the test
character(len=:), allocatable :: name
!> Entry point of the test
procedure(test_interface), pointer, nopass :: test => null()
!> Whether test is supposed to fail
logical :: should_fail = .false.
end type unittest_type
abstract interface
!> Collect all tests
subroutine collect_interface(testsuite)
import :: unittest_type
!> Collection of tests
type(unittest_type), allocatable, intent(out) :: testsuite(:)
end subroutine collect_interface
end interface
!> Collection of unit tests
type :: testsuite_type
!> Name of the testsuite
character(len=:), allocatable :: name
!> Entry point of the test
procedure(collect_interface), pointer, nopass :: collect => null()
end type testsuite_type
character(len=*), parameter :: fmt = '(1x, *(1x, a))'
character(len=*), parameter :: indent = repeat(" ", 5) // repeat(".", 3)
contains
!> Driver for testsuite
subroutine run_testsuite(collect, unit, stat, parallel)
!> Collect tests
procedure(collect_interface) :: collect
!> Unit for IO
integer, intent(in) :: unit
!> Number of failed tests
integer, intent(inout) :: stat
!> Run tests in parallel
logical, intent(in), optional :: parallel
type(unittest_type), allocatable :: testsuite(:)
logical :: parallelize
integer :: ii
parallelize = .false.
if (present(parallel)) parallelize = parallel
call collect(testsuite)
!$omp parallel do shared(testsuite, unit) reduction(+:stat) if(parallelize)
do ii = 1, size(testsuite)
!$omp critical(mctc_env_testsuite)
write(unit, '(1x, 3(1x, a), 1x, "(", i0, "/", i0, ")")') &
& "Starting", testsuite(ii)%name, "...", ii, size(testsuite)
!$omp end critical(mctc_env_testsuite)
call run_unittest(testsuite(ii), unit, stat)
end do
end subroutine run_testsuite
!> Driver for selective testing
subroutine run_selected(collect, name, unit, stat)
!> Collect tests
procedure(collect_interface) :: collect
!> Name of the selected test
character(len=*), intent(in) :: name
!> Unit for IO
integer, intent(in) :: unit
!> Number of failed tests
integer, intent(inout) :: stat
type(unittest_type), allocatable :: testsuite(:)
integer :: ii
call collect(testsuite)
ii = select_test(testsuite, name)
if (ii > 0 .and. ii <= size(testsuite)) then
call run_unittest(testsuite(ii), unit, stat)
else
write(unit, fmt) "Available tests:"
do ii = 1, size(testsuite)
write(unit, fmt) "-", testsuite(ii)%name
end do
stat = -huge(ii)
end if
end subroutine run_selected
!> Run a selected unit test
subroutine run_unittest(test, unit, stat)
!> Unit test
type(unittest_type), intent(in) :: test
!> Unit for IO
integer, intent(in) :: unit
!> Number of failed tests
integer, intent(inout) :: stat
type(error_type), allocatable :: error
call test%test(error)
!$omp critical(mctc_env_testsuite)
if (allocated(error) .neqv. test%should_fail) then
if (test%should_fail) then
write(unit, fmt) indent, test%name, "[UNEXPECTED PASS]"
else
write(unit, fmt) indent, test%name, "[FAILED]"
end if
stat = stat + 1
else
if (test%should_fail) then
write(unit, fmt) indent, test%name, "[EXPECTED FAIL]"
else
write(unit, fmt) indent, test%name, "[PASSED]"
end if
end if
if (allocated(error)) then
write(unit, fmt) "Message:", error%message
end if
!$omp end critical(mctc_env_testsuite)
end subroutine run_unittest
!> Select a unit test from all available tests
function select_test(tests, name) result(pos)
!> Name identifying the test suite
character(len=*), intent(in) :: name
!> Available unit tests
type(unittest_type) :: tests(:)
!> Selected test suite
integer :: pos
integer :: it
pos = 0
do it = 1, size(tests)
if (name == tests(it)%name) then
pos = it
exit
end if
end do
end function select_test
!> Select a test suite from all available suites
function select_suite(suites, name) result(pos)
!> Name identifying the test suite
character(len=*), intent(in) :: name
!> Available test suites
type(testsuite_type) :: suites(:)
!> Selected test suite
integer :: pos
integer :: it
pos = 0
do it = 1, size(suites)
if (name == suites(it)%name) then
pos = it
exit
end if
end do
end function select_suite
!> Register a new unit test
function new_unittest(name, test, should_fail) result(self)
!> Name of the test
character(len=*), intent(in) :: name
!> Entry point for the test
procedure(test_interface) :: test
!> Whether test is supposed to error or not
logical, intent(in), optional :: should_fail
!> Newly registered test
type(unittest_type) :: self
self%name = name
self%test => test
if (present(should_fail)) self%should_fail = should_fail
end function new_unittest
!> Register a new testsuite
function new_testsuite(name, collect) result(self)
!> Name of the testsuite
character(len=*), intent(in) :: name
!> Entry point to collect tests
procedure(collect_interface) :: collect
!> Newly registered testsuite
type(testsuite_type) :: self
self%name = name
self%collect => collect
end function new_testsuite
subroutine check_stat(error, stat, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Status of operation
integer, intent(in) :: stat
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (stat /= mctc_stat%success) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Non-zero exit code encountered", more)
end if
end if
end subroutine check_stat
subroutine check_logical(error, expression, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Result of logical operator
logical, intent(in) :: expression
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (.not.expression) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Condition not fullfilled", more)
end if
end if
end subroutine check_logical
subroutine check_float_dp(error, actual, expected, message, more, thr, rel)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found floating point value
real(dp), intent(in) :: actual
!> Expected floating point value
real(dp), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
!> Allowed threshold for matching floating point values
real(dp), intent(in), optional :: thr
!> Check for relative errors instead
logical, intent(in), optional :: rel
logical :: relative
real(dp) :: diff, threshold
if (present(thr)) then
threshold = thr
else
threshold = epsilon(expected)
end if
if (present(rel)) then
relative = rel
else
relative = .false.
end if
if (relative) then
diff = abs(actual - expected) / expected
else
diff = abs(actual - expected)
end if
if (diff > threshold) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Floating point value missmatch", more)
end if
end if
end subroutine check_float_dp
subroutine check_float_sp(error, actual, expected, message, more, thr, rel)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found floating point value
real(sp), intent(in) :: actual
!> Expected floating point value
real(sp), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
!> Allowed threshold for matching floating point values
real(sp), intent(in), optional :: thr
!> Check for relative errors instead
logical, intent(in), optional :: rel
logical :: relative
real(sp) :: diff, threshold
if (present(thr)) then
threshold = thr
else
threshold = epsilon(expected)
end if
if (present(rel)) then
relative = rel
else
relative = .false.
end if
if (relative) then
diff = abs(actual - expected) / expected
else
diff = abs(actual - expected)
end if
if (diff > threshold) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Floating point value missmatch", more)
end if
end if
end subroutine check_float_sp
subroutine check_int_i1(error, actual, expected, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found integer value
integer(i1), intent(in) :: actual
!> Expected integer value
integer(i1), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (expected /= actual) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Integer value missmatch", more)
end if
end if
end subroutine check_int_i1
subroutine check_int_i2(error, actual, expected, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found integer value
integer(i2), intent(in) :: actual
!> Expected integer value
integer(i2), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (expected /= actual) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Integer value missmatch", more)
end if
end if
end subroutine check_int_i2
subroutine check_int_i4(error, actual, expected, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found integer value
integer(i4), intent(in) :: actual
!> Expected integer value
integer(i4), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (expected /= actual) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Integer value missmatch", more)
end if
end if
end subroutine check_int_i4
subroutine check_int_i8(error, actual, expected, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found integer value
integer(i8), intent(in) :: actual
!> Expected integer value
integer(i8), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (expected /= actual) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Integer value missmatch", more)
end if
end if
end subroutine check_int_i8
subroutine check_bool(error, actual, expected, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found boolean value
logical, intent(in) :: actual
!> Expected boolean value
logical, intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (expected .neqv. actual) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Logical value missmatch", more)
end if
end if
end subroutine check_bool
subroutine check_string(error, actual, expected, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> Found boolean value
character(len=*), intent(in) :: actual
!> Expected boolean value
character(len=*), intent(in) :: expected
!> A detailed message describing the error
character(len=*), intent(in), optional :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
if (expected /= actual) then
if (present(message)) then
call test_failed(error, message, more)
else
call test_failed(error, "Character value missmatch", more)
end if
end if
end subroutine check_string
subroutine test_failed(error, message, more)
!> Error handling
type(error_type), allocatable, intent(out) :: error
!> A detailed message describing the error
character(len=*), intent(in) :: message
!> Another line of error message
character(len=*), intent(in), optional :: more
allocate(error)
error%stat = mctc_stat%fatal
if (present(more)) then
error%message = message // new_line('a') // more
else
error%message = message
end if
end subroutine test_failed
end module mctc_env_testing