regexpcomp.test

来自「tcl是工具命令语言」· TEST 代码 · 共 824 行 · 第 1/2 页

TEST
824
字号
# Commands covered:  regexp, regsub## This file contains a collection of tests for one or more of the Tcl# built-in commands.  Sourcing this file into Tcl runs the tests and# generates output for errors.  No output means no errors were found.## Copyright (c) 1991-1993 The Regents of the University of California.# Copyright (c) 1998 Sun Microsystems, Inc.# Copyright (c) 1998-1999 by Scriptics Corporation.## See the file "license.terms" for information on usage and redistribution# of this file, and for a DISCLAIMER OF ALL WARRANTIES.## RCS: @(#) $Id$if {[lsearch [namespace children] ::tcltest] == -1} {    package require tcltest    namespace import -force ::tcltest::*}# Procedure to evaluate a script within a proc, to test compilation# functionalityproc evalInProc { script } {    proc testProc {} $script    set status [catch {	testProc     } result]    rename testProc {}    return $result    #return [list $status $result]}catch {unset foo}test regexp-1.1 {basic regexp operation} {    evalInProc {	regexp ab*c abbbc    }} 1test regexp-1.2 {basic regexp operation} {    evalInProc {	regexp ab*c ac    }} 1test regexp-1.3 {basic regexp operation} {    evalInProc {    	regexp ab*c ab    }} 0test regexp-1.4 {basic regexp operation} {    evalInProc {	regexp -- -gorp abc-gorpxxx    }} 1test regexp-1.5 {basic regexp operation} {    evalInProc {	regexp {^([^ ]*)[ ]*([^ ]*)} "" a    }} 1test regexp-1.6 {basic regexp operation} {    list [catch {regexp {} abc} msg] $msg} {0 1}test regexp-1.7 {regexp utf compliance} {    # if not UTF-8 aware, result is "0 1"    evalInProc {	set foo "\u4e4eb q"	regexp "\u4e4eb q" "a\u4e4eb qw\u5e4e\x4e wq" bar	list [string compare $foo $bar] [regexp 4 $bar]    }} {0 0}test regexp-2.1 {getting substrings back from regexp} {    evalInProc {	set foo {}	list [regexp ab*c abbbbc foo] $foo    }} {1 abbbbc}test regexp-2.2 {getting substrings back from regexp} {    evalInProc {	set foo {}	set f2 {}	list [regexp a(b*)c abbbbc foo f2] $foo $f2    }} {1 abbbbc bbbb}test regexp-2.3 {getting substrings back from regexp} {    evalInProc {	set foo {}	set f2 {}	list [regexp a(b*)(c) abbbbc foo f2] $foo $f2    }} {1 abbbbc bbbb}test regexp-2.4 {getting substrings back from regexp} {    evalInProc {	set foo {}	set f2 {}	set f3 {}	list [regexp a(b*)(c) abbbbc foo f2 f3] $foo $f2 $f3    }} {1 abbbbc bbbb c}test regexp-2.5 {getting substrings back from regexp} {    evalInProc {	set foo {}; set f1 {}; set f2 {}; set f3 {}; set f4 {}; set f5 {};	set f6 {}; set f7 {}; set f8 {}; set f9 {}; set fa {}; set fb {};	list [regexp (1*)(2*)(3*)(4*)(5*)(6*)(7*)(8*)(9*)(a*)(b*) \		12223345556789999aabbb \		foo f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb] $foo $f1 $f2 $f3 $f4 $f5 \		$f6 $f7 $f8 $f9 $fa $fb    }} {1 12223345556789999aabbb 1 222 33 4 555 6 7 8 9999 aa bbb}test regexp-2.6 {getting substrings back from regexp} {    evalInProc {	set foo 2; set f2 2; set f3 2; set f4 2	list [regexp (a)(b)? xay foo f2 f3 f4] $foo $f2 $f3 $f4    }} {1 a a {} {}}test regexp-2.7 {getting substrings back from regexp} {    evalInProc {	set foo 1; set f2 1; set f3 1; set f4 1	list [regexp (a)(b)?(c) xacy foo f2 f3 f4] $foo $f2 $f3 $f4    }} {1 ac a {} c}test regexp-2.8 {getting substrings back from regexp} {    evalInProc {	set match {}	list [regexp {^a*b} aaaab match] $match    }} {1 aaaab}test regexp-3.1 {-indices option to regexp} {    evalInProc {	set foo {}	list [regexp -indices ab*c abbbbc foo] $foo    }} {1 {0 5}}test regexp-3.2 {-indices option to regexp} {    evalInProc {	set foo {}	set f2 {}	list [regexp -indices a(b*)c abbbbc foo f2] $foo $f2    }} {1 {0 5} {1 4}}test regexp-3.3 {-indices option to regexp} {    evalInProc {	set foo {}	set f2 {}	list [regexp -indices a(b*)(c) abbbbc foo f2] $foo $f2    }} {1 {0 5} {1 4}}test regexp-3.4 {-indices option to regexp} {    evalInProc {	set foo {}	set f2 {}	set f3 {}	list [regexp -indices a(b*)(c) abbbbc foo f2 f3] $foo $f2 $f3    }} {1 {0 5} {1 4} {5 5}}test regexp-3.5 {-indices option to regexp} {    evalInProc {	set foo {}; set f1 {}; set f2 {}; set f3 {}; set f4 {}; set f5 {};	set f6 {}; set f7 {}; set f8 {}; set f9 {}	list [regexp -indices (1*)(2*)(3*)(4*)(5*)(6*)(7*)(8*)(9*) \		12223345556789999 \		foo f1 f2 f3 f4 f5 f6 f7 f8 f9] $foo $f1 $f2 $f3 $f4 $f5 \		$f6 $f7 $f8 $f9    }} {1 {0 16} {0 0} {1 3} {4 5} {6 6} {7 9} {10 10} {11 11} {12 12} {13 16}}test regexp-3.6 {getting substrings back from regexp} {    evalInProc {	set foo 2; set f2 2; set f3 2; set f4 2	list [regexp -indices (a)(b)? xay foo f2 f3 f4] $foo $f2 $f3 $f4    }} {1 {1 1} {1 1} {-1 -1} {-1 -1}}test regexp-3.7 {getting substrings back from regexp} {    evalInProc {	set foo 1; set f2 1; set f3 1; set f4 1	list [regexp -indices (a)(b)?(c) xacy foo f2 f3 f4] $foo $f2 $f3 $f4    }} {1 {1 2} {1 1} {-1 -1} {2 2}}test regexp-4.1 {-nocase option to regexp} {    evalInProc {	regexp -nocase foo abcFOo    }} 1test regexp-4.2 {-nocase option to regexp} {    evalInProc {	set f1 22	set f2 33	set f3 44	list [regexp -nocase {a(b*)([xy]*)z} aBbbxYXxxZ22 f1 f2 f3] $f1 $f2 $f3    }} {1 aBbbxYXxxZ Bbb xYXxx}test regexp-4.3 {-nocase option to regexp} {    evalInProc {	regexp -nocase FOo abcFOo    }} 1set ::x abcdefghijklmnopqrstuvwxyz1234567890set ::x $x$x$x$x$x$x$x$x$x$x$x$xtest regexp-4.4 {case conversion in regexp} {    evalInProc {	list [regexp -nocase $::x $::x foo] $foo    }} "1 $x"catch {unset ::x}test regexp-5.1 {exercise cache of compiled expressions} {    evalInProc {	regexp .*a b	regexp .*b c	regexp .*c d	regexp .*d e	regexp .*e f	regexp .*a bbba    }} 1test regexp-5.2 {exercise cache of compiled expressions} {    evalInProc {	regexp .*a b	regexp .*b c	regexp .*c d	regexp .*d e	regexp .*e f	regexp .*b xxxb    }} 1test regexp-5.3 {exercise cache of compiled expressions} {    evalInProc {	regexp .*a b	regexp .*b c	regexp .*c d	regexp .*d e	regexp .*e f	regexp .*c yyyc    }} 1test regexp-5.4 {exercise cache of compiled expressions} {    evalInProc {	regexp .*a b	regexp .*b c	regexp .*c d	regexp .*d e	regexp .*e f	regexp .*d 1d    }} 1test regexp-5.5 {exercise cache of compiled expressions} {    evalInProc {	regexp .*a b	regexp .*b c	regexp .*c d	regexp .*d e	regexp .*e f	regexp .*e xe    }} 1test regexp-6.1 {regexp errors} {    evalInProc {	list [catch {regexp a} msg] $msg    }} {1 {wrong # args: should be "regexp ?switches? exp string ?matchVar? ?subMatchVar subMatchVar ...?"}}test regexp-6.2 {regexp errors} {    evalInProc {	list [catch {regexp -nocase a} msg] $msg    }} {1 {wrong # args: should be "regexp ?switches? exp string ?matchVar? ?subMatchVar subMatchVar ...?"}}test regexp-6.3 {regexp errors} {    evalInProc {	list [catch {regexp -gorp a} msg] $msg    }} {1 {bad switch "-gorp": must be -all, -about, -indices, -inline, -expanded, -line, -linestop, -lineanchor, -nocase, -start, or --}}test regexp-6.4 {regexp errors} {    evalInProc {	list [catch {regexp a( b} msg] $msg    }} {1 {couldn't compile regular expression pattern: parentheses () not balanced}}test regexp-6.5 {regexp errors} {    evalInProc {	list [catch {regexp a( b} msg] $msg    }} {1 {couldn't compile regular expression pattern: parentheses () not balanced}}test regexp-6.6 {regexp errors} {    evalInProc {	list [catch {regexp a a f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1} msg] $msg    }} {0 1}test regexp-6.7 {regexp errors} {    evalInProc {	list [catch {regexp (x)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.) xyzzy} msg] $msg    }} {0 0}test regexp-6.8 {regexp errors} {    evalInProc {	catch {unset f1}	set f1 44	list [catch {regexp abc abc f1(f2)} msg] $msg    }} {1 {couldn't set variable "f1(f2)"}}test regexp-6.9 {regexp errors, -start bad int check} {    evalInProc {	list [catch {regexp -start bogus {^$} {}} msg] $msg    }} {1 {expected integer but got "bogus"}}test regexp-7.1 {basic regsub operation} {    evalInProc {	list [regsub aa+ xaxaaaxaa 111&222 foo] $foo    }} {1 xax111aaa222xaa}test regexp-7.2 {basic regsub operation} {    evalInProc {	list [regsub aa+ aaaxaa &111 foo] $foo    }} {1 aaa111xaa}test regexp-7.3 {basic regsub operation} {    evalInProc {	list [regsub aa+ xaxaaa 111& foo] $foo    }} {1 xax111aaa}test regexp-7.4 {basic regsub operation} {    evalInProc {	list [regsub aa+ aaa 11&2&333 foo] $foo    }} {1 11aaa2aaa333}test regexp-7.5 {basic regsub operation} {    evalInProc {	list [regsub aa+ xaxaaaxaa &2&333 foo] $foo    }} {1 xaxaaa2aaa333xaa}test regexp-7.6 {basic regsub operation} {    evalInProc {	list [regsub aa+ xaxaaaxaa 1&22& foo] $foo    }} {1 xax1aaa22aaaxaa}test regexp-7.7 {basic regsub operation} {    evalInProc {	list [regsub a(a+) xaxaaaxaa {1\122\1} foo] $foo    }} {1 xax1aa22aaxaa}test regexp-7.8 {basic regsub operation} {    evalInProc {	list [regsub a(a+) xaxaaaxaa {1\\\122\1} foo] $foo    }} "1 {xax1\\aa22aaxaa}"test regexp-7.9 {basic regsub operation} {    evalInProc {	list [regsub a(a+) xaxaaaxaa {1\\122\1} foo] $foo    }} "1 {xax1\\122aaxaa}"test regexp-7.10 {basic regsub operation} {    evalInProc {	list [regsub a(a+) xaxaaaxaa {1\\&\1} foo] $foo    }} "1 {xax1\\aaaaaxaa}"test regexp-7.11 {basic regsub operation} {    evalInProc {	list [regsub a(a+) xaxaaaxaa {1\&\1} foo] $foo    }} {1 xax1&aaxaa}test regexp-7.12 {basic regsub operation} {    evalInProc {	list [regsub a(a+) xaxaaaxaa {\1\1\1\1&&} foo] $foo    }} {1 xaxaaaaaaaaaaaaaaxaa}test regexp-7.13 {basic regsub operation} {    evalInProc {	set foo xxx	list [regsub abc xyz 111 foo] $foo    }} {0 xyz}test regexp-7.14 {basic regsub operation} {    evalInProc {	set foo xxx	list [regsub ^ xyz "111 " foo] $foo    }} {1 {111 xyz}}test regexp-7.15 {basic regsub operation} {    evalInProc {	set foo xxx	list [regsub -- -foo abc-foodef "111 " foo] $foo    }} {1 {abc111 def}}test regexp-7.16 {basic regsub operation} {    evalInProc {	set foo xxx	list [regsub x "" y foo] $foo    }} {0 {}}test regexp-7.17 {regsub utf compliance} {    evalInProc {	# if not UTF-8 aware, result is "0 1"	set foo "xyz555ijka\u4e4ebpqr"	regsub a\u4e4eb xyza\u4e4ebijka\u4e4ebpqr 555 bar	list [string compare $foo $bar] [regexp 4 $bar]    }} {0 0}test regexp-8.1 {case conversion in regsub} {    evalInProc {	list [regsub -nocase a(a+) xaAAaAAay & foo] $foo    }} {1 xaAAaAAay}test regexp-8.2 {case conversion in regsub} {    evalInProc {	list [regsub -nocase a(a+) xaAAaAAay & foo] $foo    }} {1 xaAAaAAay}test regexp-8.3 {case conversion in regsub} {    evalInProc {	set foo 123	list [regsub a(a+) xaAAaAAay & foo] $foo

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?