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
|
! SPDX-Identifer: MIT
module test_string_intrinsic
use testdrive, only : new_unittest, unittest_type, error_type, check
use stdlib_string_type
implicit none
abstract interface
!> Actual tester working on a string type and a fixed length character
!> representing the same character sequence
subroutine check1_interface(error, str1, chr1)
import :: string_type, error_type
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
end subroutine check1_interface
!> Actual tester working on two pairs of string type and fixed length
!> character representing the same character sequences
subroutine check2_interface(error, str1, chr1, str2, chr2)
import :: string_type, error_type
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
end subroutine check2_interface
end interface
contains
!> Collect all exported unit tests
subroutine collect_string_intrinsic(testsuite)
!> Collection of tests
type(unittest_type), allocatable, intent(out) :: testsuite(:)
testsuite = [ &
new_unittest("lgt", test_lgt), &
new_unittest("llt", test_llt), &
new_unittest("lge", test_lge), &
new_unittest("lle", test_lle), &
new_unittest("trim", test_trim), &
new_unittest("len", test_len), &
new_unittest("len_trim", test_len_trim), &
new_unittest("adjustl", test_adjustl), &
new_unittest("adjustr", test_adjustr), &
new_unittest("scan", test_scan), &
new_unittest("verify", test_verify), &
new_unittest("repeat", test_repeat), &
new_unittest("index", test_index), &
new_unittest("char", test_char), &
new_unittest("ichar", test_ichar), &
new_unittest("iachar", test_iachar), &
new_unittest("move", test_move) &
]
end subroutine collect_string_intrinsic
!> Generate then checker both for the string type created from the character
!> sequence by the contructor and the assignment operation
subroutine check1(error, chr1, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1
procedure(check1_interface) :: checker
call constructor_check1(error, chr1, checker)
if (allocated(error)) return
call assignment_check1(error, chr1, checker)
end subroutine check1
!> Run the actual checker with a string type generated by the custom constructor
subroutine constructor_check1(error, chr1, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1
procedure(check1_interface) :: checker
call checker(error, string_type(chr1), chr1)
end subroutine constructor_check1
!> Run the actual checker with a string type generated by assignment
subroutine assignment_check1(error, chr1, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1
type(string_type) :: str1
procedure(check1_interface) :: checker
str1 = chr1
call checker(error, str1, chr1)
end subroutine assignment_check1
!> Generate then checker both for the string type created from the character
!> sequence by the contructor and the assignment operation as well as the
!> mixed assigment and constructor setup
subroutine check2(error, chr1, chr2, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1, chr2
procedure(check2_interface) :: checker
call constructor_check2(error, chr1, chr2, checker)
if (allocated(error)) return
call assignment_check2(error, chr1, chr2, checker)
if (allocated(error)) return
call mixed_check2(error, chr1, chr2, checker)
end subroutine check2
!> Run the actual checker with both string types generated by the custom constructor
subroutine constructor_check2(error, chr1, chr2, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1, chr2
procedure(check2_interface) :: checker
call checker(error, string_type(chr1), chr1, string_type(chr2), chr2)
end subroutine constructor_check2
!> Run the actual checker with one string type generated by the custom constructor
!> and the other by assignment
subroutine mixed_check2(error, chr1, chr2, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1, chr2
type(string_type) :: str1, str2
procedure(check2_interface) :: checker
str1 = chr1
str2 = chr2
call checker(error, str1, chr1, string_type(chr2), chr2)
if (allocated(error)) return
call checker(error, string_type(chr1), chr1, str2, chr2)
end subroutine mixed_check2
!> Run the actual checker with both string types generated by assignment
subroutine assignment_check2(error, chr1, chr2, checker)
!> Error handling
type(error_type), allocatable, intent(out) :: error
character(len=*), intent(in) :: chr1, chr2
type(string_type) :: str1, str2
procedure(check2_interface) :: checker
str1 = chr1
str2 = chr2
call checker(error, str1, chr1, str2, chr2)
end subroutine assignment_check2
!> Generator for checking the lexical comparison
subroutine gen_lgt(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, lgt(str1, str2) .eqv. lgt(chr1, chr2))
if (allocated(error)) return
call check(error, lgt(str1, chr2) .eqv. lgt(chr1, chr2))
if (allocated(error)) return
call check(error, lgt(chr1, str2) .eqv. lgt(chr1, chr2))
end subroutine gen_lgt
subroutine test_lgt(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
logical :: res
string = "bcd"
res = lgt(string, "abc")
call check(error, res .eqv. .true.)
if (allocated(error)) return
res = lgt(string, "bcd")
call check(error, res .eqv. .false.)
if (allocated(error)) return
res = lgt(string, "cde")
call check(error, res .eqv. .false.)
if (allocated(error)) return
call check2(error, "bcd", "abc", gen_lgt)
if (allocated(error)) return
call check2(error, "bcd", "bcd", gen_lgt)
if (allocated(error)) return
call check2(error, "bcd", "cde", gen_lgt)
end subroutine test_lgt
!> Generator for checking the lexical comparison
subroutine gen_llt(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, llt(str1, str2) .eqv. llt(chr1, chr2))
if (allocated(error)) return
call check(error, llt(str1, chr2) .eqv. llt(chr1, chr2))
if (allocated(error)) return
call check(error, llt(chr1, str2) .eqv. llt(chr1, chr2))
end subroutine gen_llt
subroutine test_llt(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
logical :: res
string = "bcd"
res = llt(string, "abc")
call check(error, res .eqv. .false.)
if (allocated(error)) return
res = llt(string, "bcd")
call check(error, res .eqv. .false.)
if (allocated(error)) return
res = llt(string, "cde")
call check(error, res .eqv. .true.)
if (allocated(error)) return
call check2(error, "bcd", "abc", gen_llt)
if (allocated(error)) return
call check2(error, "bcd", "bcd", gen_llt)
if (allocated(error)) return
call check2(error, "bcd", "cde", gen_llt)
end subroutine test_llt
!> Generator for checking the lexical comparison
subroutine gen_lge(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, lge(str1, str2) .eqv. lge(chr1, chr2))
if (allocated(error)) return
call check(error, lge(str1, chr2) .eqv. lge(chr1, chr2))
if (allocated(error)) return
call check(error, lge(chr1, str2) .eqv. lge(chr1, chr2))
end subroutine gen_lge
subroutine test_lge(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
logical :: res
string = "bcd"
res = lge(string, "abc")
call check(error, res .eqv. .true.)
if (allocated(error)) return
res = lge(string, "bcd")
call check(error, res .eqv. .true.)
if (allocated(error)) return
res = lge(string, "cde")
call check(error, res .eqv. .false.)
if (allocated(error)) return
call check2(error, "bcd", "abc", gen_lge)
if (allocated(error)) return
call check2(error, "bcd", "bcd", gen_lge)
if (allocated(error)) return
call check2(error, "bcd", "cde", gen_lge)
end subroutine test_lge
!> Generator for checking the lexical comparison
subroutine gen_lle(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, lle(str1, str2) .eqv. lle(chr1, chr2))
if (allocated(error)) return
call check(error, lle(str1, chr2) .eqv. lle(chr1, chr2))
if (allocated(error)) return
call check(error, lle(chr1, str2) .eqv. lle(chr1, chr2))
end subroutine gen_lle
subroutine test_lle(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
logical :: res
string = "bcd"
res = lle(string, "abc")
call check(error, res .eqv. .false.)
if (allocated(error)) return
res = lle(string, "bcd")
call check(error, res .eqv. .true.)
if (allocated(error)) return
res = lle(string, "cde")
call check(error, res .eqv. .true.)
if (allocated(error)) return
call check2(error, "bcd", "abc", gen_lle)
if (allocated(error)) return
call check2(error, "bcd", "bcd", gen_lle)
if (allocated(error)) return
call check2(error, "bcd", "cde", gen_lle)
end subroutine test_lle
!> Generator for checking the trimming of whitespace
subroutine gen_trim(error, str1, chr1)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
call check(error, len(trim(str1)) == len(trim(chr1)))
end subroutine gen_trim
subroutine test_trim(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string, trimmed_str
string = "Whitespace "
trimmed_str = trim(string)
call check(error, len(trimmed_str) == 10)
if (allocated(error)) return
call check1(error, " Whitespace ", gen_trim)
if (allocated(error)) return
call check1(error, " W h i t e s p a ce ", gen_trim)
if (allocated(error)) return
call check1(error, "SPACE SPACE", gen_trim)
if (allocated(error)) return
call check1(error, " ", gen_trim)
end subroutine test_trim
!> Generator for checking the length of the character sequence
subroutine gen_len(error, str1, chr1)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
call check(error, len(str1) == len(chr1))
end subroutine gen_len
subroutine test_len(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: length
string = "Some longer sentence for this example."
length = len(string)
call check(error, length == 38)
if (allocated(error)) return
string = "Whitespace "
length = len(string)
call check(error, length == 38)
if (allocated(error)) return
call check1(error, "Example string", gen_len)
if (allocated(error)) return
call check1(error, "S P A C E D S T R I N G", gen_len)
if (allocated(error)) return
call check1(error, "With trailing whitespace ", gen_len)
if (allocated(error)) return
call check1(error, " centered ", gen_len)
end subroutine test_len
!> Generator for checking the length of the character sequence without whitespace
subroutine gen_len_trim(error, str1, chr1)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
call check(error, len_trim(str1) == len_trim(chr1))
end subroutine gen_len_trim
subroutine test_len_trim(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: length
string = "Some longer sentence for this example."
length = len_trim(string)
call check(error, length == 38)
if (allocated(error)) return
string = "Whitespace "
length = len_trim(string)
call check(error, length == 10)
if (allocated(error)) return
call check1(error, "Example string", gen_len_trim)
if (allocated(error)) return
call check1(error, "S P A C E D S T R I N G", gen_len_trim)
if (allocated(error)) return
call check1(error, "With trailing whitespace ", gen_len_trim)
if (allocated(error)) return
call check1(error, " centered ", gen_len_trim)
end subroutine test_len_trim
!> Generator for checking the left adjustment of the character sequence
subroutine gen_adjustl(error, str1, chr1)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
call check(error, adjustl(str1) == adjustl(chr1))
end subroutine gen_adjustl
subroutine test_adjustl(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
string = " Whitespace"
string = adjustl(string)
call check(error, char(string) == "Whitespace ")
if (allocated(error)) return
call check1(error, " B L A N K S ", gen_adjustl)
end subroutine test_adjustl
!> Generator for checking the right adjustment of the character sequence
subroutine gen_adjustr(error, str1, chr1)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
call check(error, adjustr(str1) == adjustr(chr1))
end subroutine gen_adjustr
subroutine test_adjustr(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
string = "Whitespace "
string = adjustr(string)
call check(error, char(string) == " Whitespace")
if (allocated(error)) return
call check1(error, " B L A N K S ", gen_adjustr)
end subroutine test_adjustr
!> Generator for checking the presence of a character set in a character sequence
subroutine gen_scan(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, scan(str1, str2) == scan(chr1, chr2))
if (allocated(error)) return
call check(error, scan(str1, chr2) == scan(chr1, chr2))
if (allocated(error)) return
call check(error, scan(chr1, str2) == scan(chr1, chr2))
if (allocated(error)) return
call check(error, scan(str1, str2, back=.true.) == scan(chr1, chr2, back=.true.))
if (allocated(error)) return
call check(error, scan(str1, chr2, back=.true.) == scan(chr1, chr2, back=.true.))
if (allocated(error)) return
call check(error, scan(chr1, str2, back=.true.) == scan(chr1, chr2, back=.true.))
end subroutine gen_scan
subroutine test_scan(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: pos
string = "fortran"
pos = scan(string, "ao")
call check(error, pos == 2)
if (allocated(error)) return
pos = scan(string, "ao", .true.)
call check(error, pos == 6)
if (allocated(error)) return
pos = scan(string, "c++")
call check(error, pos == 0)
if (allocated(error)) return
call check2(error, "fortran", "ao", gen_scan)
if (allocated(error)) return
call check2(error, "c++", "fortran", gen_scan)
end subroutine test_scan
!> Generator for checking the absence of a character set in a character sequence
subroutine gen_verify(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, verify(str1, str2) == verify(chr1, chr2))
if (allocated(error)) return
call check(error, verify(str1, chr2) == verify(chr1, chr2))
if (allocated(error)) return
call check(error, verify(chr1, str2) == verify(chr1, chr2))
if (allocated(error)) return
call check(error, verify(str1, str2, back=.true.) == verify(chr1, chr2, back=.true.))
if (allocated(error)) return
call check(error, verify(str1, chr2, back=.true.) == verify(chr1, chr2, back=.true.))
if (allocated(error)) return
call check(error, verify(chr1, str2, back=.true.) == verify(chr1, chr2, back=.true.))
end subroutine gen_verify
subroutine test_verify(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: pos
string = "fortran"
pos = verify(string, "ao")
call check(error, pos == 1)
if (allocated(error)) return
pos = verify(string, "fo")
call check(error, pos == 3)
if (allocated(error)) return
pos = verify(string, "c++")
call check(error, pos == 1)
if (allocated(error)) return
pos = verify(string, "c++", back=.true.)
call check(error, pos == 7)
if (allocated(error)) return
pos = verify(string, string)
call check(error, pos == 0)
if (allocated(error)) return
call check2(error, "fortran", "ao", gen_verify)
if (allocated(error)) return
call check2(error, "c++", "fortran", gen_verify)
end subroutine test_verify
!> Generator for the repeatition of a character sequence
subroutine gen_repeat(error, str1, chr1)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1
character(len=*), intent(in) :: chr1
integer :: i
do i = 12, 3, -2
call check(error, repeat(str1, i) == repeat(chr1, i))
if (allocated(error)) return
end do
end subroutine gen_repeat
subroutine test_repeat(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
string = "What? "
string = repeat(string, 3)
call check(error, string == "What? What? What? ")
if (allocated(error)) return
call check1(error, "!!1!", gen_repeat)
if (allocated(error)) return
call check1(error, "This sentence is repeated multiple times. ", gen_repeat)
end subroutine test_repeat
!> Generator for checking the substring search in a character string
subroutine gen_index(error, str1, chr1, str2, chr2)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type), intent(in) :: str1, str2
character(len=*), intent(in) :: chr1, chr2
call check(error, index(str1, str2) == index(chr1, chr2))
if (allocated(error)) return
call check(error, index(str1, chr2) == index(chr1, chr2))
if (allocated(error)) return
call check(error, index(chr1, str2) == index(chr1, chr2))
if (allocated(error)) return
call check(error, index(str1, str2, back=.true.) == index(chr1, chr2, back=.true.))
if (allocated(error)) return
call check(error, index(str1, chr2, back=.true.) == index(chr1, chr2, back=.true.))
if (allocated(error)) return
call check(error, index(chr1, str2, back=.true.) == index(chr1, chr2, back=.true.))
end subroutine gen_index
subroutine test_index(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: pos
string = "Search this string for this expression"
pos = index(string, "this")
call check(error, pos == 8)
if (allocated(error)) return
pos = index(string, "this", back=.true.)
call check(error, pos == 24)
if (allocated(error)) return
pos = index(string, "This")
call check(error, pos == 0)
if (allocated(error)) return
call check2(error, "Search this string for this expression", "this", gen_index)
if (allocated(error)) return
call check2(error, "Search this string for this expression", "This", gen_index)
end subroutine test_index
subroutine test_char(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
character(len=:), allocatable :: dlc
character(len=1), allocatable :: chars(:)
string = "Character sequence"
dlc = char(string)
call check(error, dlc == "Character sequence")
if (allocated(error)) return
dlc = char(string, 3)
call check(error, dlc == "a")
if (allocated(error)) return
chars = char(string, [3, 5, 8, 12, 14, 15, 18])
call check(error, all(chars == ["a", "a", "e", "e", "u", "e", "e"]))
if (allocated(error)) return
string = "Fortran"
dlc = char(string, 1, 4)
call check(error, dlc == "Fort")
end subroutine test_char
subroutine test_ichar(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: code
string = "Fortran"
code = ichar(string)
call check(error, code == ichar("F"))
end subroutine test_ichar
subroutine test_iachar(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: string
integer :: code
string = "Fortran"
code = iachar(string)
call check(error, code == iachar("F"))
end subroutine test_iachar
subroutine test_move(error)
!> Error handling
type(error_type), allocatable, intent(out) :: error
type(string_type) :: from_string, to_string
type(string_type) :: from_string_not
type(string_type) :: from_strings(2), to_strings(2)
character(len=:), allocatable :: from_char, to_char
from_string = "Move This String"
from_strings = "Move This String"
from_char = "Move This Char"
call check(error, from_string == "Move This String" .and. to_string == "" .and. &
& from_char == "Move This Char" .and. .not. allocated(to_char), &
& "move: test_case 1")
if (allocated(error)) return
! string_type (allocated) --> string_type (not allocated)
call move(from_string, to_string)
call check(error, from_string == "" .and. to_string == "Move This String", "move: test_case 2")
if (allocated(error)) return
! character (allocated) --> string_type (not allocated)
call move(from_char, from_string)
call check(error, .not. allocated(from_char) .and. from_string == "Move This Char", &
& "move: test_case 3")
if (allocated(error)) return
! string_type (allocated) --> character (not allocated)
call move(to_string, to_char)
call check(error, to_string == "" .and. to_char == "Move This String", "move: test_case 4")
if (allocated(error)) return
! character (allocated) --> string_type (allocated)
call move(to_char, from_string)
call check(error, .not. allocated(to_char) .and. from_string == "Move This String", &
& "move: test_case 5")
if (allocated(error)) return
from_char = "new char"
! character (allocated) --> string_type (allocated)
call move(from_char, from_string)
call check(error, .not. allocated(from_char) .and. from_string == "new char", "move: test_case 6")
if (allocated(error)) return
! character (not allocated) --> string_type (allocated)
call move(from_char, from_string)
call check(error, from_string == "", "move: test_case 7")
if (allocated(error)) return
from_string = "moving to self"
! string_type (allocated) --> string_type (allocated)
call move(from_string, from_string)
call check(error, from_string == "moving to self", "move: test_case 8")
if (allocated(error)) return
! elemental: string_type (allocated) --> string_type (not allocated)
call move(from_strings, to_strings)
call check(error, all(from_strings(:) == "") .and. all(to_strings(:) == "Move This String"), "move: test_case 9")
! string_type (not allocated) --> string_type (not allocated)
call move(from_string_not, to_string)
call check(error, from_string_not == "" .and. to_string == "", "move: test_case 10")
if (allocated(error)) return
! string_type (not allocated) --> string_type (not allocated)
to_string = "to be deallocated"
call move(from_string_not, to_string)
call check(error, from_string_not == "" .and. to_string == "", "move: test_case 11")
if (allocated(error)) return
end subroutine test_move
end module test_string_intrinsic
program tester
use, intrinsic :: iso_fortran_env, only : error_unit
use testdrive, only : run_testsuite, new_testsuite, testsuite_type
use test_string_intrinsic, only : collect_string_intrinsic
implicit none
integer :: stat, is
type(testsuite_type), allocatable :: testsuites(:)
character(len=*), parameter :: fmt = '("#", *(1x, a))'
stat = 0
testsuites = [ &
new_testsuite("string-intrinsic", collect_string_intrinsic) &
]
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
|