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
|
! SPDX-Identifier: MIT
module test_strip_chomp
use stdlib_ascii, only : TAB, VT, NUL, LF, CR, FF
use testdrive, only : new_unittest, unittest_type, error_type, check
use stdlib_strings, only : strip, chomp
use stdlib_string_type, only : string_type, operator(==), operator(//)
implicit none
contains
!> Collect all exported unit tests
subroutine collect_strip_chomp(testsuite)
!> Collection of tests
type(unittest_type), allocatable, intent(out) :: testsuite(:)
testsuite = [ &
new_unittest("strip_char", test_strip_char), &
new_unittest("strip_string", test_strip_string), &
new_unittest("chomp_char", test_chomp_char), &
new_unittest("chomp_string", test_chomp_string), &
new_unittest("chomp_set_char", test_chomp_set_char), &
new_unittest("chomp_set_string", test_chomp_set_string), &
new_unittest("chomp_substring_char", test_chomp_substring_char), &
new_unittest("chomp_substring_string", test_chomp_substring_string) &
]
end subroutine collect_strip_chomp
subroutine test_strip_char(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, strip(" hello ") == "hello")
if (allocated(error)) return
call check(error, strip(TAB//"goodbye"//CR//LF) == "goodbye")
if (allocated(error)) return
call check(error, strip(NUL//TAB//LF//VT//FF//CR) == NUL)
if (allocated(error)) return
call check(error, strip(" "//TAB//LF//VT//FF//CR) == "")
if (allocated(error)) return
call check(error, strip(" ! ")//"!" == "!!")
if (allocated(error)) return
call check(error, strip("Hello") == "Hello")
end subroutine test_strip_char
subroutine test_strip_string(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, strip(string_type(" hello ")) == "hello")
if (allocated(error)) return
call check(error, strip(string_type(TAB//"goodbye"//CR//LF)) == "goodbye")
if (allocated(error)) return
call check(error, strip(string_type(NUL//TAB//LF//VT//FF//CR)) == NUL)
if (allocated(error)) return
call check(error, strip(string_type(" "//TAB//LF//VT//FF//CR)) == "")
if (allocated(error)) return
call check(error, strip(string_type(" ! "))//"!" == "!!")
if (allocated(error)) return
call check(error, strip(string_type("Hello")) == "Hello")
end subroutine test_strip_string
subroutine test_chomp_char(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, chomp("hello") == "hello")
if (allocated(error)) return
call check(error, chomp("hello"//LF) == "hello", "1")
if (allocated(error)) return
call check(error, chomp("hello"//CR//LF) == "hello", "2")
if (allocated(error)) return
call check(error, chomp("hello"//LF//CR) == "hello", "3")
if (allocated(error)) return
call check(error, chomp("hello"//CR) == "hello", "4")
if (allocated(error)) return
call check(error, chomp("hello "//LF//" there") == "hello "//LF//" there")
if (allocated(error)) return
call check(error, chomp("hello"//CR//LF//CR//LF) == "hello")
if (allocated(error)) return
call check(error, chomp("hello"//CR//LF//CR//CR//LF) == "hello")
if (allocated(error)) return
call check(error, chomp(NUL//TAB//LF//VT//FF//CR) == NUL)
if (allocated(error)) return
call check(error, chomp(" "//TAB//LF//VT//FF//CR) == "")
if (allocated(error)) return
call check(error, chomp(" ! ")//"!" == " !!")
end subroutine test_chomp_char
subroutine test_chomp_string(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, chomp(string_type("hello")) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"//LF)) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"//CR//LF)) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"//LF//CR)) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"//CR)) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello "//LF//" there")) == "hello "//LF//" there")
if (allocated(error)) return
call check(error, chomp(string_type("hello"//CR//LF//CR//LF)) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"//CR//LF//CR//CR//LF)) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type(NUL//TAB//LF//VT//FF//CR)) == NUL)
if (allocated(error)) return
call check(error, chomp(string_type(" "//TAB//LF//VT//FF//CR)) == "")
if (allocated(error)) return
call check(error, chomp(string_type(" ! "))//"!" == " !!")
end subroutine test_chomp_string
subroutine test_chomp_set_char(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, chomp("hello", ["l", "o"]) == "he")
if (allocated(error)) return
call check(error, chomp("hello", set=["l", "o"]) == "he")
end subroutine test_chomp_set_char
subroutine test_chomp_set_string(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, chomp(string_type("hello"), ["l", "o"]) == "he")
if (allocated(error)) return
call check(error, chomp(string_type("hello"), set=["l", "o"]) == "he")
if (allocated(error)) return
call check(error, chomp("hellooooo", ["o", "o"]) == "hell")
if (allocated(error)) return
call check(error, chomp("hellooooo", set=["o", "o"]) == "hell")
end subroutine test_chomp_set_string
subroutine test_chomp_substring_char(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, chomp("hello", "") == "hello")
if (allocated(error)) return
call check(error, chomp("hello", substring="") == "hello")
if (allocated(error)) return
call check(error, chomp("hello", "lo") == "hel")
if (allocated(error)) return
call check(error, chomp("hello", substring="lo") == "hel")
if (allocated(error)) return
call check(error, chomp("hellooooo", "oo") == "hello")
if (allocated(error)) return
call check(error, chomp("hellooooo", substring="oo") == "hello")
if (allocated(error)) return
call check(error, chomp("helhel", substring="hel") == "")
end subroutine test_chomp_substring_char
subroutine test_chomp_substring_string(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
call check(error, chomp(string_type("hello"), "") == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"), substring="") == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hello"), "lo") == "hel")
if (allocated(error)) return
call check(error, chomp(string_type("hello"), substring="lo") == "hel")
if (allocated(error)) return
call check(error, chomp("hello", string_type("lo")) == "hel")
if (allocated(error)) return
call check(error, chomp("hello", substring=string_type("lo")) == "hel")
if (allocated(error)) return
call check(error, chomp(string_type("hello"), string_type("lo")) == "hel")
if (allocated(error)) return
call check(error, chomp(string_type("hello"), substring=string_type("lo")) == "hel")
if (allocated(error)) return
call check(error, chomp(string_type("hellooooo"), "oo") == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hellooooo"), substring="oo") == "hello")
if (allocated(error)) return
call check(error, chomp("hellooooo", string_type("oo")) == "hello")
if (allocated(error)) return
call check(error, chomp("hellooooo", substring=string_type("oo")) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hellooooo"), string_type("oo")) == "hello")
if (allocated(error)) return
call check(error, chomp(string_type("hellooooo"), substring=string_type("oo")) == "hello")
end subroutine test_chomp_substring_string
end module test_strip_chomp
program tester
use, intrinsic :: iso_fortran_env, only : error_unit
use testdrive, only : run_testsuite, new_testsuite, testsuite_type
use test_strip_chomp, only : collect_strip_chomp
implicit none
integer :: stat, is
type(testsuite_type), allocatable :: testsuites(:)
character(len=*), parameter :: fmt = '("#", *(1x, a))'
stat = 0
testsuites = [ &
new_testsuite("strip-chomp", collect_strip_chomp) &
]
do is = 1, size(testsuites)
write(error_unit, fmt) "Testing:", testsuites(is)%name
call run_testsuite(testsuites(is)%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
|