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 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
|
##############################################################################
# Modules Revision 3.0
# Providing a flexible user environment
#
# File: modules.00-init/%M%
# Revision: %I%
# First Edition: 95/12/06
# Last Mod.: %U%, %G%
#
# Authors: Jens Hamisch, Jens.Hamisch@Strawberry.COM
#
# Description: Testuite testsequence
# Command:
# Sub-Command:
#
# Comment: %C{
# This module defines all patterns used further in the
# testsuite
# }C%
#
##############################################################################
#
# Check setup
#
send_user "\tInitializing the testsuite ...\n"
# excepted information to run the testsuite
set TCLSH $env(TCLSH)
send_user "\tTCLSH is '$TCLSH'\n"
set MODULECMD $env(MODULECMD)
send_user "\tMODULECMD is '$MODULECMD'\n"
# Modules release number
set major_minor_rel [join [lrange [split $install_version .] 0 1] .]
set cache_mcookie_version 5.3
# test kind of sh-shell we have
if {[file type /bin/sh] eq {link}} {
set sh_kind [file readlink /bin/sh]
} else {
set sh_kind sh
}
# extract and format os name
set os_name [string tolower [lindex [split $tcl_platform(os) _] 0]]
# get current terminal width
proc getTtyCols {} {
set nbcols {}
switch -- $::os_name {
{sunos} {
catch {regexp {columns = (\d+);} [exec stty] match nbcols} errMsg
}
default {
catch {set nbcols [lindex [exec stty size] 1]} errMsg
}
}
return $nbcols
}
set nbcols [getTtyCols]
if {$nbcols ne {} && $nbcols ne {0}} {
set term_cols $nbcols
set msg_disp_cols $nbcols
send_user "\tTerminal has $msg_disp_cols columns\n"
} else {
send_user "\tFail to detect terminal column number.\n"
if {[catch {exec stty rows 60 cols 120} errMsg]} {
send_user "\tFail to set specific terminal size: $errMsg\n"
set msg_disp_cols 80
send_user "\tFallback to $msg_disp_cols columns\n"
} else {
set term_cols 120
set msg_disp_cols 120
send_user "\tSuccessfully set terminal to 120 columns.\n"
}
}
unset nbcols
proc find_bin {name} {
set path {}
if {[info exists ::env(PATH)]} {
foreach dir [split $::env(PATH) ":"] {
if {[file executable "$dir/$name"]} {
set path "$dir/$name"
break
}
}
}
return $path
}
# check SIP is enabled or not on OS X
if {$os_name eq "darwin"} {
catch {
regexp {System Integrity Protection status: enabled.} [exec csrutil status] csrutil_enabled
} errMsg
}
if {[info exists csrutil_enabled]} {
set sip_enabled 1
unset csrutil_enabled
} else {
set sip_enabled 0
}
# grab fish shell version to check if greater or equal to 3.1
if {[set fishbin [lindex [auto_execok fish] 0]] ne {}} {
regexp {version (.+)$} [exec $fishbin --version] match fish_version
set fish_version_ge31 [expr {[lindex [lsort -dictionary [list $fish_version 3.1.0]] 0] eq {3.1.0}}]
set fish_version_ge32 [expr {[lindex [lsort -dictionary [list $fish_version 3.2.0]] 0] eq {3.2.0}}]
set fish_version_ge40 [expr {[lindex [lsort -dictionary [list $fish_version 4.0.0]] 0] eq {4.0.0}}]
}
# find ksh flavor
if {[set kshbin [lindex [auto_execok ksh] 0]] ne {}} {
set ksh_is_mksh [expr {[string first MIRBSD [exec -ignorestderr $kshbin -c "echo \$KSH_VERSION"]] != -1}]
} else {
set ksh_is_mksh 0
}
# is FPATH set during autoinit for zsh shell
set install_setzshfpath [expr {$install_zshcompletiondir eq {} ? {y} : {n}}]
if {$install_setzshfpath eq {y}} {
set install_zshcompletiondir $install_initdir/zsh-functions
}
# locate siteconfig file
set siteconfig_file "$install_etcdir/siteconfig.tcl"
set siteconfig_filere [regsub -all "\(\[.+?\]\)" $siteconfig_file {\\\1}]
# determine if siteconfig forces stderr terminal attachment state
proc siteconfig_isStderrTty {} {
interp create _siteconfig
interp eval _siteconfig set ::siteconfig_file "{$::siteconfig_file}"
set is_stderr_tty [interp eval _siteconfig {
set is_stderr_tty 0
if {[file readable $::siteconfig_file]} {
# evaluate siteconfig file to check initStateIsStderrTty procedure
catch {
source $::siteconfig_file
if {[info procs initStateIsStderrTty] eq "initStateIsStderrTty"} {
set is_stderr_tty [initStateIsStderrTty]
}
} errorMsg
}
return $is_stderr_tty
}]
interp delete _siteconfig
return $is_stderr_tty
}
# determine if stdin is attached to a tty
set is_stdin_tty [expr {![catch {fconfigure stdin -mode}]}]
# locate Modules Tcl extension library used during testsuite
if {$install_libtclenvmodules eq {y}} {
set tclextlib_file lib/libtclenvmodules$install_shlib_suffix
set closedirlib_file lib/libtestutil-closedir$install_shlib_suffix
set getpwuidlib_file lib/libtestutil-getpwuid$install_shlib_suffix
set getgroupslib_file lib/libtestutil-getgroups$install_shlib_suffix
set 0getgroupslib_file lib/libtestutil-0getgroups$install_shlib_suffix
set dupgetgroupslib_file lib/libtestutil-dupgetgroups$install_shlib_suffix
set getgrgidlib_file lib/libtestutil-getgrgid$install_shlib_suffix
set timelib_file lib/libtestutil-time$install_shlib_suffix
set mktimelib_file lib/libtestutil-mktime$install_shlib_suffix
}
# check file permission capabilities
set test_perms_dir "$env(TESTSUITEDIR)/etc"
set test_perms_file "$test_perms_dir/modulerc"
set orig_perms [file attributes $test_perms_dir -permissions]
catch {file attributes $test_perms_dir -permissions "ugo-rx"}
set new_perms [file attributes $test_perms_dir -permissions]
if {$new_perms eq $orig_perms} {
set is_file_perms_editable 0
} else {
set is_file_perms_editable 1
# check if file is readable in a locked directory
if {[catch {
set fid [open $test_perms_file r]
close $fid
}]} {
set is_locked_dir_file_readable 0
} else {
set is_locked_dir_file_readable 1
}
file attributes $test_perms_dir -permissions $orig_perms
# check if file is still readable if locked
set orig_perms [file attributes $test_perms_file -permissions]
file attributes $test_perms_file -permissions "ugo-rx"
if {[catch {
set fid [open $test_perms_file r]
close $fid
}]} {
set is_locked_file_readable 0
} else {
set is_locked_file_readable 1
}
file attributes $test_perms_file -permissions $orig_perms
}
unset test_perms_dir
unset test_perms_file
unset orig_perms
unset new_perms
# check if module command is defined prior running tests
set is_modules_defined [expr {![catch {exec $env(TESTSUITEDIR)/is_func_defined module}]}]
set is_modules_defined_fish [expr {![catch {exec $env(TESTSUITEDIR)/is_func_defined.fish module}]}]
send_user "\tModules is defined in SH env prior tests: $is_modules_defined\n"
send_user "\tModules is defined in FISH env prior tests: $is_modules_defined_fish\n"
set is_mogui_defined [expr {![catch {exec $env(TESTSUITEDIR)/is_func_defined mogui}]}]
set is_mogui_defined_fish [expr {![catch {exec $env(TESTSUITEDIR)/is_func_defined.fish mogui}]}]
send_user "\tMoGui is defined in SH env prior tests: $is_mogui_defined\n"
send_user "\tMoGui is defined in FISH env prior tests: $is_mogui_defined_fish\n"
# check if symbolic link registered in git repository have been effectively
# created as symbolic link to determine if they are supported on filesystem
set is_symlink_supported [file isdirectory $env(TESTSUITEDIR)/modulefiles/symlink]
# check if underlying filesystem is case-insensitive
set is_filesystem_icase [file exists $env(TESTSUITEDIR)/modulefiles.2/ICASE/prereq]
set is_global_rc_file [file isfile $install_etcdir/rc]
send_user "\tGlobal RC file is [expr {$is_global_rc_file ? {present} : {absent}}]\n"
# check x11 capabilities
# check where to find the 'xrdb' binary on this system
set xrdb_notfound_msg {Command 'xrdb' cannot be found}
set xrdb [auto_execok xrdb]
if {![string length $xrdb]} {
set is_xrdb_avail 0
set xrdb_issue_msg $xrdb_notfound_msg
} elseif {[catch {exec $xrdb -query} errMsg]} {
set is_xrdb_avail 0
set xrdb_issue_msg $errMsg
} else {
set is_xrdb_avail 1
set xrdb_issue_msg $xrdb_notfound_msg
}
send_user "\tX11 setup is [expr {$is_xrdb_avail ? {KO} : {OK}}]\n"
# check if domainname binary is available on this system
set domainname [auto_execok domainname]
# display result of id command
set idoutput [exec id]
send_user "\tid output is '$idoutput'\n"
# get current working directory
set ORIG_CWD [pwd]
# get current username and groups
set username [exec id -u -n]
set userid [exec id -u]
send_user "\tCurrent username is '$username'\n"
set group_name_fetch_failed 0
if {[catch {
# correctly split groups in case some contain a space character (like on Cygwin/MSYS platforms)
set usergroups [lsort [split [string range [exec id -G -n -z] 0 end-1] \0]]
} errMsg]} {
# fallback to a more generic groups retrieval (in case '-z' option not supported on id)
if {[catch {
set usergroups [lsort [exec id -G -n]]
} errMsg]} {
set group_name_fetch_failed 1
# fallback in case all group names could not be resolved by 'id' command
# it happens especially when running testsuite through mockbuild
foreach grpinfo [split [string range [lindex [split $idoutput] 2] 7 end] ,] {
if {[set idx [string first ( $grpinfo]] != -1} {
set grp [string range $grpinfo $idx+1 end-1]
} else {
set grp $grpinfo
}
lappend usergroups $grp
}
set usergroups [lsort $usergroups]
}
}
send_user "\tGroups of current user are '$usergroups'\n"
set userfgroup [lindex $usergroups 0]
set is_mogui_avail [string length [lindex [auto_execok mogui-cmd] 0]]
# Dictionary-style string comparison
# Use dictionary sort of lsort proc to compare two strings in the "string
# compare" fashion (returning -1, 0 or 1). Tcl dictionary-style comparison
# enables to compare software versions (ex: "1.10" is greater than "1.8")
proc cmpversion {str1 str2} {
if {$str1 eq $str2} {
return 0
# put both strings in a list, then lsort it and get first element
} elseif {[lindex [lsort -dictionary [list $str1 $str2]] 0] eq $str1} {
return -1
} else {
return 1
}
}
# report current system information
send_user "\tMachine hardware name is '$tcl_platform(machine)'\n"
send_user "\tOS code name is '$tcl_platform(os)'\n"
send_user "\tOS cleaned name is '$os_name'\n"
send_user "\tOS version is '$tcl_platform(osVersion)'\n"
send_user "\tPlatform name is '$tcl_platform(platform)'\n"
# report LSB information
set lsb_cmd [auto_execok lsb_release]
if {![string length $lsb_cmd]} {
send_user "\tNo 'lsb_release' command available\n"
set lsb_id {}
set lsb_codename {}
set lsb_release {}
} else {
set lsb_id [exec $lsb_cmd -s -i]
set lsb_codename [exec $lsb_cmd -s -c]
set lsb_release [exec $lsb_cmd -s -r]
send_user "\tLSB id is '$lsb_id'\n"
send_user "\tLSB release is '$lsb_release'\n"
send_user "\tLSB codename is '$lsb_codename'\n"
}
# fetch tclsh version used to adapt tests producing different output depending on this version
catch {set tclsh_version [exec $TCLSH << {puts [info tclversion]}]} errMsg
if {[info exists tclsh_version]} {
send_user "\ttclsh version is $tclsh_version\n"
} else {
set tclsh_version 8.6
send_user "\tFail to detect tclsh version. Fallback to $tclsh_version version\n$errMsg"
}
# does configured pager tool allow for pagination
set pager_dfl_use [expr {[file tail $install_pager] ni {{} cat}}]
#
# Regular expressions matching error and warning outputs
#
set messages "(\[^(\]+)\[(\]\[0-9\]+\[)\]"
set error_msgs "ERROR"
set warn_msgs "WARNING"
set prob_msgs "$messages:PROB:\[0-9\]+"
set verb_msgs "$messages:VERB:\[0-9\]+"
set moderr_msgs "Module $error_msgs"
set modwarn_msgs "Module $warn_msgs"
set cacheerr_msgs "Cache $error_msgs"
set info_msgs "INFO"
set timer_msgs TIMER
# Used as a line separator inside modules
set modlin "\[-\]+"
set sep_line [string repeat - 67]
# List of supported shells
set sh_shells [list sh bash ksh zsh]
set csh_shells [list csh tcsh]
set real_shells [concat $sh_shells $csh_shells [list fish]]
set other_shells [list tcl cmd perl python ruby lisp cmake r pwsh]
set supported_shells [concat $real_shells $other_shells]
# Common messages
set vers_reportre {Modules Release [0-9a-zA-Z\.\+\-_/]+ \([0-9\-]{10}\)}
set no_loaded {No Modulefiles Currently Loaded.}
set no_matchingloaded {No Matching Modulefiles Currently Loaded.}
set cur_loaded {Currently Loaded Modulefiles:}
set cur_matchingloaded {Currently Loaded Matching Modulefiles:}
set msg_invcmdname {invalid command name}
set msg_patheqsep {cannot handle path equals to separator string}
set msg_multipatheqsep {cannot handle multiple paths equal to separator string}
set msg_needenvvarname {should get an environment variable name}
set msg_needenvvarval {should get a value for environment variable}
set msg_validenvvarname {should get a valid environment variable name}
set msg_valididxvalue {should get valid number as index value}
set msg_nonemptydelim {should get a non-empty path delimiter}
set msg_nomodnameinarg {No module name defined in argument}
set msg_invversspec {Invalid version specifier}
set msg_filenameempty {File name empty}
set msg_collnameempty {Invalid empty collection name}
set msg_nomodpath {No module path defined}
set msg_nomodloaded {No module has been loaded}
set datetimere {[0-9/]{10} [0-9:]{8}}
set avail_long_headerre "- Package/Alias $modlin.- Versions $modlin.- Last mod. $modlin"
set list_long_headerre "- Package $modlin.- Versions $modlin.- Last mod. $modlin"
set savelist_long_headerre "- Collection $modlin.- Last mod. $modlin"
# Common error responses
set err_path "$error_msgs: Unable to locate a modulefile for "
set err_file "$error_msgs: No such file or directory on "
set warn_file "$warn_msgs: No such file or directory on "
set err_illdir "$error_msgs: [expr {[cmpversion $tclsh_version 9.0] > -1 ? {Is} : {Illegal operation on}}] a directory on "
set err_notadir "$error_msgs: Not a directory on "
set err_nomodpath "$error_msgs: $msg_nomodpath"
set err_magicns "$moderr_msgs: Magic cookie '#%Module' missing\nIn "
set err_magic "$moderr_msgs: Magic cookie '#%Module' missing\n In "
set err_magivnovers "$moderr_msgs: Modules version requirement missing\n In "
set err_contactns "Please contact <root@localhost>"
set err_contact " $err_contactns"
set err_typehelp " Try 'module --help' for more information."
set err_loinconsist "$error_msgs: Loaded environment state is inconsistent"
set err_emptymodname "$error_msgs: Invalid empty module name"
set err_emptycollname "$error_msgs: $msg_collnameempty"
set err_emptydirname "$error_msgs: Invalid empty directory name"
set err_emptyfilename "$error_msgs: $msg_filenameempty"
set err_unsatreload "$error_msgs: Cannot reload modules, some of their constraints are not satisfied"
set err_nodefault "$error_msgs: No default version defined for "
set err_evalabort "$error_msgs: Module evaluation aborted"
set warn_evalabort "$warn_msgs: Module evaluation aborted"
set err_specmodname "$error_msgs: $msg_nomodnameinarg "
set err_specvers "$error_msgs: $msg_invversspec "
set err_rangevers "$error_msgs: Invalid version range "
set err_stickyunload "$::error_msgs: Unload of sticky module skipped"
set warn_stickyunload "$::warn_msgs: Unload of sticky module skipped"
set err_stickyunloadf "$::warn_msgs: Unload of sticky module forced"
set err_superstickyunload "$::error_msgs: Unload of super-sticky module skipped"
set warn_superstickyunload "$::warn_msgs: Unload of super-sticky module skipped"
set err_reqfull "$::error_msgs: Module version must be specified to load module"
set err_nomodloaded "$error_msgs: $msg_nomodloaded"
set err_modfromdiffpathloaded "$error_msgs: Module already loaded from a different modulepath"
set err_save_emptyenv "$::error_msgs: Nothing to save in a collection"
set err_save_unsat "$::error_msgs: Cannot save collection, some module constraints are not satisfied"
set warn_nostash "$::warn_msgs: No specific environment to save"
set warn_cache_nowritable "$::warn_msgs: Cannot remove cache file, directory is not writable"
set warn_cache_build_nowritable "$::warn_msgs: Cannot build cache file, directory is not writable"
set warn_cache_nothingtorec "$::warn_msgs: Nothing to record in cache file"
set warn_issue_logging "$::warn_msgs: Issue occurred when logging information"
set x11_warn_prefix "$error_msgs: X11 resources cannot be edited, issue spotted"
set xrdb_warn "$x11_warn_prefix\n$error_msgs: $xrdb_notfound_msg"
if {!$is_xrdb_avail} {
set x11_warn "$x11_warn_prefix\n$error_msgs: $xrdb_issue_msg"
}
set domainname_warn "$error_msgs: Command 'domainname' cannot be found"
set lsb_cmd_err "$error_msgs: Command 'lsb_release' cannot be found"
proc err_conflict {args} {
return "$::error_msgs: Module cannot be loaded due to a conflict.
HINT: Might try \"module unload [join $args { }]\" first."
}
proc err_conloi {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::error_msgs: Conflicting [join $args { and }] $is loading"
}
proc err_conloif {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::warn_msgs: Conflicting [join $args { and }] $is loading"
}
proc err_conlo {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::error_msgs: Conflicting [join $args { and }] $is loaded"
}
proc err_conlof {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::warn_msgs: Conflicting [join $args { and }] $is loaded"
}
proc err_conun {args} {
return "$::error_msgs: Unload of conflicting [join $args { and }] failed"
}
proc err_conunf {args} {
return "$::warn_msgs: Unload of conflicting [join $args { and }] failed"
}
proc err_prereq {args} {
return "$::error_msgs: Module cannot be loaded due to missing prereq.
HINT: the following module must be loaded first: [join $args]"
}
proc err_prereq_path {args} {
return "$::error_msgs: Module cannot be loaded due to missing prereq (specific path).
HINT: the following module must be loaded first: [join $args]"
}
proc err_prereqor {args} {
return "$::error_msgs: Module cannot be loaded due to missing prereq.
HINT: at least one of the following modules must be loaded first: $args"
}
proc err_prereqor_path {args} {
return "$::error_msgs: Module cannot be loaded due to missing prereq (specific path).
HINT: at least one of the following modules must be loaded first: $args"
}
proc err_prerequn {args} {
return "$::error_msgs: Module cannot be unloaded due to a prereq.
HINT: Might try \"module unload $args\" first."
}
proc err_deplo {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::error_msgs: Dependent [join $args { and }] $is loaded"
}
proc err_deploi {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::error_msgs: Dependent [join $args { and }] $is loading"
}
proc err_deplof {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::warn_msgs: Dependent [join $args { and }] $is loaded"
}
proc err_deploif {args} {
set is [expr {[llength $args] > 1 ? {are} : {is}}]
return "$::warn_msgs: Dependent [join $args { and }] $is loading"
}
proc err_reqlo {args} {
return "$::error_msgs: Load of requirement [join $args { or }] failed"
}
proc err_reqlo_path {args} {
return "$::error_msgs: Load of requirement [join $args { or }] (specific path) failed"
}
proc err_reqlof {args} {
return "$::warn_msgs: Load of requirement [join $args { or }] failed"
}
proc err_reqlof_path {args} {
return "$::warn_msgs: Load of requirement [join $args { or }] (specific path) failed"
}
proc err_reqmis {args} {
return "$::error_msgs: Requirement [join $args { or }] is not loaded"
}
proc err_reqmis_path {args} {
return "$::error_msgs: Requirement [join $args { or }] (specific path) is not loaded"
}
proc err_reqmisf {args} {
return "$::warn_msgs: Requirement [join $args { or }] is not loaded"
}
proc err_reqmisf_path {args} {
return "$::warn_msgs: Requirement [join $args { or }] (specific path) is not loaded"
}
proc err_depun {mod} {
return "$::error_msgs: Unload of dependent $mod failed"
}
proc err_depunf {mod} {
return "$::warn_msgs: Unload of dependent $mod failed"
}
proc err_urequn {mod} {
return "$::warn_msgs: Unload of useless requirement $mod failed"
}
proc err_depre {mod} {
return "$::error_msgs: Reload of dependent $mod failed"
}
proc err_depref {mod} {
return "$::warn_msgs: Reload of dependent $mod failed"
}
proc err_stickydepre {mod} {
return "$::error_msgs: Reload of sticky dependent $mod failed"
}
proc err_depreun {mod} {
return [err_depun $mod]
}
proc err_depreunf {mod} {
return [err_depunf $mod]
}
proc err_swoff {mod} {
return "$::error_msgs: Unload of switched-off $mod failed"
}
proc err_swon {mod} {
return "$::error_msgs: Load of switched-on $mod failed"
}
proc err_conflocked {option} {
return "$::error_msgs: Configuration option '$option' is locked"
}
proc moderr_minverreq {modfile minver} {
return "$::moderr_msgs: Modulefile requires at least Modules version $minver\n In '$modfile'\n$::err_contact"
}
proc moderr_minverreqns {modfile minver} {
return "$::moderr_msgs: Modulefile requires at least Modules version $minver\nIn '$modfile'\n$::err_contactns"
}
proc modwarn_minverreqns {modfile minver} {
return "$::modwarn_msgs: Modulefile requires at least Modules version $minver\nIn '$modfile'\n$::err_contactns"
}
proc collerr_minverreqns {collfile minver} {
return "$::error_msgs: Collection $collfile requires at least Modules version $minver"
}
proc cacheerr_magic {cachefile} {
return "$::cacheerr_msgs: Magic cookie '#%Module' missing\n In '$cachefile'\n$::err_contact"
}
proc cacheerr_misverreq {cachefile} {
return "$::cacheerr_msgs: Modules version requirement missing\n In '$cachefile'\n$::err_contact"
}
proc cacheerr_minverreq {cachefile minver} {
return "$::cacheerr_msgs: Cache file requires at least Modules version $minver\n In '$cachefile'\n$::err_contact"
}
proc moderr_missingmcookiens {modfile} {
return $::err_magicns'$modfile'\n$::err_contactns
}
proc moderr_missingmcookie {modfile} {
return $::err_magic'$modfile'\n$::err_contact
}
proc couldnotopen_nofile {file} {
return "couldn't open \"$file\": no such file or directory"
}
proc couldnotopen_permdenied {file} {
return "couldn't open \"$file\": permission denied"
}
proc err_couldnotopen_permdenied {file} {
return "$::error_msgs: [couldnotopen_permdenied $file]"
}
proc couldnotexec_nofile {file} {
return "couldn't execute \"$file\": no such file or directory"
}
proc warn_couldnotexec_nofile {file} {
return "$::warn_msgs: [couldnotexec_nofile $file]"
}
proc err_permdenied {modfile} {
return "$::error_msgs: Permission denied on '$modfile'"
}
proc err_accessdenied {mod {extramsg {}} {pad { }}} {
set msg "$::error_msgs: Access to module $mod is denied"
if {$extramsg ne {}} {
append msg "\n$pad$extramsg"
}
return $msg
}
proc err_accessnearlydenied {date {extramsg {}}} {
set msg "$::warn_msgs: Access to module will be denied starting '$date'"
if {$extramsg ne {}} {
append msg "\n$extramsg"
}
return $msg
}
proc err_unablelocate {mod} {
return "$::error_msgs: Unable to locate a modulefile for '$mod'"
}
proc err_noloaded {mod} {
return "$::error_msgs: No loaded version found for '$mod' module"
}
proc err_invalvarval {vrname vrvalue vrvalues {padding {}}} {
return "$::error_msgs: Invalid value '$vrvalue' for variant '$vrname'\n${padding}Allowed values are: $vrvalues"
}
proc err_novarval {vrname vrvalues {padding {}}} {
return "$::error_msgs: No value specified for variant '$vrname'\n${padding}Allowed values are: $vrvalues"
}
proc err_novariantname {vrspec} {
return "$::error_msgs: No variant name defined in argument '$vrspec'"
}
proc err_nofreevarval {vrname} {
return "$::error_msgs: No value specified for variant '$vrname'"
}
proc invalid_variant_name {vrname} {
return "Invalid variant name '$vrname'"
}
proc err_varspec {vrspec} {
return "$::error_msgs: Invalid variant specification '$vrspec'"
}
proc err_boolvarval {vrname {padding {}}} {
return "No value should be defined for boolean variant '$vrname'"
}
proc err_booldflvarval {vrname {padding {}}} {
return "Boolean value is expected as default value for variant '$vrname'"
}
proc err_boolonnonbool {vrname {padding {}}} {
return "Boolean value defined on non-boolean variant '$vrname'"
}
proc err_unkvar {vrname} {
return "$::error_msgs: Unknown variant '$vrname' specified"
}
proc err_invopt {opt} {
return "$::error_msgs: Invalid option '$opt'\n$::err_typehelp"
}
proc err_invcmd {cmd} {
return "$::error_msgs: Invalid command '$cmd'\n$::err_typehelp"
}
proc info_alreadyloaded {mod} {
return "$::info_msgs: Module '$mod' is already loaded"
}
proc info_notloaded {mod} {
return "$::info_msgs: Module '$mod' is not loaded"
}
proc err_othervariantloaded {vrlist {setsgr 0} {is_loading 0}} {
if {$setsgr} {
set vrdesiglist {}
foreach vr $vrlist {
lappend vrdesiglist [sgr 93]$vr[sgr 0]
}
set vrdesig [sgr 2]\{[sgr 22][join $vrdesiglist [sgr 2]:[sgr 22]][sgr 2]\}[sgr 22]
} else {
set vrdesig "{[join $vrlist :]}"
}
set state [expr {$is_loading ? {loading} : {loaded}}]
return "$::error_msgs: Variant $vrdesig is already $state"
}
proc err_extraspec {xtspec} {
return "$::error_msgs: Invalid extra specification '$xtspec'"
}
proc err_extraspecifier {xtspec} {
return "$::error_msgs: Invalid extra specifier '$xtspec'\n Valid extra\
specifiers are: always-load append-path chdir complete conflict\
depends-on depends-on-any envvar family incompat load load-any\
prepend-path prereq prereq-all prereq-any provide provided-alias\
pushenv remove-path require set-alias set-function setenv switch\
switch-on switch-off tag try-load uncomplete unload unset-alias\
unset-function unsetenv use variant"
}
proc err_xtspec_notallowed {} {
return "$::error_msgs: No extra specification allowed on this command"
}
proc err_tagmanset {tag} {
return "$::error_msgs: Tag '$tag' cannot be manually set"
}
proc err_misoptval {opt} {
return "$::error_msgs: Missing value for '$opt' option"
}
proc err_unsupportedshell {shell} {
return "$::error_msgs: Unsupported shell type '$shell'"
}
proc err_unsupportedopt {opt subcmd} {
return "$::error_msgs: Unsupported option '$opt' on $subcmd sub-command"
}
proc err_coll_notfound {coll {target {}}} {
if {$target ne {}} {
set targetmsg "(for target \"$target\") "
} else {
set targetmsg {}
}
return "$::error_msgs: Collection $coll ${targetmsg}cannot be found"
}
proc err_coll_notvalid {coll} {
return "$::error_msgs: $coll is not a valid collection"
}
proc err_stash_index {idx} {
return "$::error_msgs: Invalid stash index '$idx'"
}
proc err_stash_name {name} {
return "$::error_msgs: Invalid stash collection name '$name'"
}
proc msg_named_coll {{matching 0} {target {}}} {
if {$matching} {
set msg {Matching named }
} else {
set msg {Named }
}
append msg {collection list}
if {$target ne {}} {
append msg " (for target \"$target\")"
}
append msg :
return $msg
}
proc msg_no_named_coll {{matching 0} {target {}}} {
if {$matching} {
set msg {No matching }
} else {
set msg {No }
}
append msg {named collection}
if {$target ne {}} {
append msg " (for target \"$target\")"
}
append msg .
return $msg
}
proc msg_stash_coll {{target {}}} {
set msg {Stash collection list}
if {$target ne {}} {
append msg " (for target \"$target\")"
}
append msg :
return $msg
}
proc msg_no_stash_coll {{target {}}} {
set msg {No stash collection}
if {$target ne {}} {
append msg " (for target \"$target\")"
}
append msg .
return $msg
}
proc msg_modwarn {msg cmdline modfile linenum {pad {}} {procname {}} {contact {}} {custom {}} {custom2 {while executing}}} {
return [msg_moderr $msg $cmdline $modfile $linenum $pad $procname $contact $custom $custom2 {Module WARNING}]
}
proc msg_moderr {msg cmdline modfile linenum {pad {}} {procname {}} {contact {}} {custom {}} {custom2 {while executing}} {title {Module ERROR}}} {
set linefile [expr {$procname ne {} || $linenum eq {} ? {} : " line $linenum"}]
set errcontact [expr {$contact eq {} ? $::err_contactns : "Please contact <$contact>"}]
set res "$title: $msg
$pad $custom2
$pad\"$cmdline\""
if {$procname ne {}} {
append res "
$pad (procedure \"$procname\" line $linenum)
$pad invoked from within
$pad\"$procname\""
}
if {$custom ne {}} {
foreach custline [split $custom \n] {
append res "\n$pad$custline"
}
}
append res "
$pad (file \"$modfile\"$linefile)
$pad$errcontact"
return $res
}
proc msg_cacheerr {msg cmdline modfile linenum {custom {while executing}}} {
set res "$::cacheerr_msgs: $msg
$custom
\"$cmdline\""
append res "
(file \"$modfile\" line $linenum)
$::err_contactns"
return $res
}
proc is_conf_enabled {args} {
foreach conf $args {
if {[set ::install_$conf] ne {y}} {
return 0
}
}
return 1
}
proc if_implicitdefault {then {else {}}} {
return [expr {$::install_implicitdefault eq {y} ? $then : $else}]
}
proc if_availindepth {then {else {}}} {
return [expr {$::install_availindepth eq {y} ? $then : $else}]
}
proc if_searchcontains {then {else {}}} {
return [expr {$::install_searchmatch eq {contains} ? $then : $else}]
}
proc if_configlocked {option then {else {}}} {
return [expr {[is_config_locked $option] ? $then : $else}]
}
proc is_config_locked {option} {
return [expr {[lsearch -exact $::install_lockedconfigs $option] != -1}]
}
proc is_real_shell {shell} {
return [expr {[lsearch -exact $::real_shells $shell] != -1}]
}
# helper procedures to format block message output
proc msg_block_content {args} {
set msg {}
foreach arg $args {
set first 1
set padding { }
set max_idx [expr {$::msg_disp_cols - [string length $padding]}]
set linelist [list]
foreach line [split $arg \n] {
set lineadd {}
while {$lineadd ne $line} {
# no split if no whitespace found to slice
if {[string length $line] > $max_idx && [set cut_idx [string\
last { } $line $max_idx]] != -1} {
set lineadd [string range $line 0 [expr {$cut_idx-1}]]
set line [string range $line [expr {$cut_idx+1}] end]
} else {
set lineadd $line
}
lappend linelist $lineadd
if {$first} {
set first 0
incr max_idx -[string length $padding]
}
}
}
# display each line
set first 1
foreach line $linelist {
append msg \n
if {$first} {
set first 0
} else {
append msg $padding
}
append msg "$padding$line"
}
}
return $msg
}
proc msg_load {mod args} {
set msg "Loading $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_unload {mod args} {
set msg "Unloading $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_switch {old new args} {
set msg "Switching from $old to $new"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_refresh {mod args} {
set msg "Refreshing $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_tag {mod args} {
set msg "Tagging $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_lint {mod args} {
set msg "Linting $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_delete {mod args} {
set msg "Deleting $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_create {mod args} {
set msg "Creating $mod"
append msg [eval msg_block_content $args]
return $msg
}
proc msg_top_load {mod unlist reqlolist deprelist args} {
lassign [mix_depre_depun_list $deprelist {}] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $unlist]} {
lappend args "Unloading conflict: [join $unlist]"
}
if {[llength $reqlolist]} {
lappend args "Loading requirement: [join $reqlolist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_load "{$mod}" $args]
}
proc msg_top_load_conun_noauto {mod depunlist unlist urequnlist reqlolist deprelist args} {
lassign [mix_depre_depun_list $deprelist $depunlist] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $unlist]} {
lappend args "Unloading conflict: [join $unlist]"
}
if {[llength $urequnlist]} {
lappend args "Unloading useless requirement: [join $urequnlist]"
}
if {[llength $reqlolist]} {
lappend args "Loading requirement: [join $reqlolist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_load "{$mod}" $args]
}
proc msg_top_load_conun {mod depunlist unlist urequnlist reqlolist deprelist args} {
lassign [mix_depre_depun_list $deprelist $depunlist] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $unlist]} {
lappend args "Unloading conflict: [join $unlist]"
}
if {[llength $reqlolist]} {
lappend args "Loading requirement: [join $reqlolist]"
}
if {[llength $urequnlist]} {
lappend args "Unloading useless requirement: [join $urequnlist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_load "{$mod}" $args]
}
proc msg_top_unload {mod depunlist urequnlist deprelist args} {
lassign [mix_depre_depun_list $deprelist $depunlist] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $urequnlist]} {
lappend args "Unloading useless requirement: [join $urequnlist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_unload "{$mod}" $args]
}
proc msg_top_switch_noauto {old new depunlist urequnlist unlist reqlolist deprelist args} {
lassign [mix_depre_depun_list $deprelist $depunlist] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $unlist]} {
lappend args "Unloading conflict: [join $unlist]"
}
if {[llength $urequnlist]} {
lappend args "Unloading useless requirement: [join $urequnlist]"
}
if {[llength $reqlolist]} {
lappend args "Loading requirement: [join $reqlolist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_switch "{$old}" "{$new}" $args]
}
proc msg_top_switch {old new depunlist urequnlist unlist reqlolist deprelist args} {
lassign [mix_depre_depun_list $deprelist $depunlist] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $unlist]} {
lappend args "Unloading conflict: [join $unlist]"
}
if {[llength $reqlolist]} {
lappend args "Loading requirement: [join $reqlolist]"
}
if {[llength $urequnlist]} {
lappend args "Unloading useless requirement: [join $urequnlist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_switch "{$old}" "{$new}" $args]
}
proc msg_top_switch_conun {old new depunlist urequnlist unlist reqlolist deprelist args} {
lassign [mix_depre_depun_list $deprelist $depunlist] deprelist depunlist
if {[llength $depunlist]} {
lappend args "Unloading dependent: [join $depunlist]"
}
if {[llength $unlist]} {
lappend args "Unloading conflict: [join $unlist]"
}
if {[llength $urequnlist]} {
lappend args "Unloading useless requirement: [join $urequnlist]"
}
if {[llength $reqlolist]} {
lappend args "Loading requirement: [join $reqlolist]"
}
if {[llength $deprelist]} {
lappend args "Reloading dependent: [join $deprelist]"
}
return [eval msg_switch "{$old}" "{$new}" $args]
}
proc mix_depre_depun_list {deprelist depunlist} {
# dependent reload unload phase appears with dependent unload (in actual unload order)
# if some dependent fail to unload, 1 unload list and 1 reload list could be passed
if {[llength $deprelist] == 2 && [llength [set depreun [lindex $deprelist 0]]] !=\
[llength [set deprelo [lindex $deprelist 1]]]} {
set depunlist [concat $depreun $depunlist]
set deprelist $deprelo
} else {
set depunlist [concat [lreverse $deprelist] $depunlist]
}
return [list $deprelist $depunlist]
}
proc sgr {code} {
return "\033\\\[${code}m"
}
# escape regexp chars in string
proc escre {str} {
return [string map {<EXM> (.*)+} [regsub -all {([.?*()+\[\]$])} $str {\\\1}]]
}
proc create_stash_coll {content} {
set colldir $::env(HOME)/.module
if {![file exists $colldir]} {
file mkdir $colldir
}
set coll stash-[clock milliseconds]
if {[info exists ::env(MODULES_COLLECTION_TARGET)]} {
append coll .$::env(MODULES_COLLECTION_TARGET)
}
send_user "\tCreating stash collection $colldir/$coll\n"
set fid [open $colldir/$coll w]
puts $fid $content
close $fid
}
proc delete_last_stash_coll {} {
set collfile [lindex [lsort [glob $::env(HOME)/.module/stash-*]] 0]
send_user "\tDeleting stash collection $collfile\n"
file delete $collfile
}
# fetch stash collections
proc get_all_stash_colls {} {
return [glob -types f $::env(HOME)/.module/stash-*]
}
proc get_last_stash_coll {} {
return [lindex [lsort [get_all_stash_colls]] end]
}
proc create_dummy_cachefile {mp} {
set cachefile $mp/.modulecache
send_user "\tCreating dummy cache file $cachefile\n"
set fid [open $cachefile w]
puts $fid "#%Module$::cache_mcookie_version"
close $fid
}
proc create_dummy_modulefile {modfile} {
send_user "\tCreating dummy module file $modfile\n"
set fid [open $modfile w]
puts $fid {#%Module}
close $fid
}
# create test modulefiles on the fly as those files finishing by a space character cannot
# be recorded in git repository (checkout will fail on Windows platform)
proc create_endspace_test_modulefiles {} {
set mp $::modpath.2
set module {space y }
file mkdir $mp/$module
set fid [open $mp/$module/.modulerc w]
puts $fid {#%Module
module-version {space y /1 } {n }
module-version {space y /2.2} default
module-alias {space y /a } {space y /1 }
module-virtual {space y /v } {./1 }}
close $fid
foreach f [list {1 } 2.2 2.5 2.7 2.10] {
set fid [open $mp/$module/$f w]
puts $fid {#%Module
module-whatis [module-info name]}
close $fid
}
# do not rely on cache if prebuilt
ignore_modulecache_if_built
}
proc delete_endspace_test_modulefiles {} {
set mp $::modpath.2
set module {space y }
foreach f [list .modulerc {1 } 2.2 2.5 2.7 2.10] {
file delete $mp/$module/$f
}
file delete $mp/$module
# can reuse prebuilt cache if any now temporary modules are deleted
end_ignore_modulecache_if_built
}
# ensure next tests will ignore cache files if modulecache have been built
proc ignore_modulecache_if_built {} {
if {[info exists ::env(TESTSUITE_ENABLE_MODULECACHE)]} {
send_user "\tIgnore module cache files on next tests\n"
setenv_var MODULES_IGNORE_CACHE 1
}
}
proc end_ignore_modulecache_if_built {} {
if {[info exists ::env(TESTSUITE_ENABLE_MODULECACHE)]} {
send_user "\tUse cache files again on next tests\n"
unsetenv_var MODULES_IGNORE_CACHE
}
}
|