summaryrefslogtreecommitdiffstats
path: root/tests/msgcat.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-08-13 21:39:24 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-08-13 21:39:24 (GMT)
commitd9ab72b3082ccef8f68082f7e05484e303a27d37 (patch)
tree40e17c45b7747508177587d20cbd2f42e572da34 /tests/msgcat.test
parent610769bdb8172c2f6fa55f1cb6b0b4f7d40bc5ce (diff)
downloadtcl-d9ab72b3082ccef8f68082f7e05484e303a27d37.zip
tcl-d9ab72b3082ccef8f68082f7e05484e303a27d37.tar.gz
tcl-d9ab72b3082ccef8f68082f7e05484e303a27d37.tar.bz2
* library/msgcat/msgcat.tcl: Added checks to prevent [mclocale]
* tests/msgcat.test: from registering filesystem paths to possibly malicious code to be evaluated by a later [mcload].
Diffstat (limited to 'tests/msgcat.test')
-rw-r--r--tests/msgcat.test22
1 files changed, 19 insertions, 3 deletions
diff --git a/tests/msgcat.test b/tests/msgcat.test
index 2f37408..6e05d64 100644
--- a/tests/msgcat.test
+++ b/tests/msgcat.test
@@ -12,15 +12,15 @@
# Note that after running these tests, entries will be left behind in the
# message catalogs for locales foo, foo_BAR, and foo_BAR_baz.
#
-# RCS: @(#) $Id: msgcat.test,v 1.14 2003/10/21 05:10:17 dgp Exp $
+# RCS: @(#) $Id: msgcat.test,v 1.15 2004/08/13 21:39:24 dgp Exp $
package require Tcl 8.2
if {[catch {package require tcltest 2}]} {
puts stderr "Skipping tests in [info script]. tcltest 2 required."
return
}
-if {[catch {package require msgcat 1.4}]} {
- puts stderr "Skipping tests in [info script]. No msgcat 1.4 found to test."
+if {[catch {package require msgcat 1.4.1}]} {
+ puts stderr "Skipping tests in [info script]. No msgcat 1.4.1 found to test."
return
}
@@ -165,6 +165,22 @@ namespace eval ::msgcat::test {
mcpreferences
} -result {en_us_funky en_us en {}}
+ test msgcat-1.12 {mclocale set, reject evil input} -setup {
+ variable locale [mclocale]
+ } -cleanup {
+ mclocale $locale
+ } -body {
+ mclocale /path/to/evil/code
+ } -returnCodes error -match glob -result {invalid newLocale value *}
+
+ test msgcat-1.13 {mclocale set, reject evil input} -setup {
+ variable locale [mclocale]
+ } -cleanup {
+ mclocale $locale
+ } -body {
+ mclocale looks/ok/../../../../but/is/path/to/evil/code
+ } -returnCodes error -match glob -result {invalid newLocale value *}
+
# Tests msgcat-2.*: [mcset], [mcmset], namespace partitioning
test msgcat-2.1 {mcset, global scope} {