safe.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:17k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # safe.test --
  2. #
  3. # This file contains a collection of tests for safe Tcl, packages loading,
  4. # and using safe interpreters. Sourcing this file into tcl runs the tests
  5. # and generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1995-1996 Sun Microsystems, Inc.
  8. # Copyright (c) 1998-1999 by Scriptics Corporation.
  9. #
  10. # See the file "license.terms" for information on usage and redistribution
  11. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. #
  13. # RCS: @(#) $Id: safe.test,v 1.13.2.3 2006/11/28 22:20:03 andreas_kupries Exp $
  14. if {[lsearch [namespace children] ::tcltest] == -1} {
  15.     package require tcltest
  16.     namespace import -force ::tcltest::*
  17. }
  18. foreach i [interp slaves] {
  19.   interp delete $i
  20. }
  21. set saveAutoPath $::auto_path
  22. set ::auto_path [info library]
  23. # Force actual loading of the safe package 
  24. # because we use un exported (and thus un-autoindexed) APIs
  25. # in this test result arguments:
  26. catch {safe::interpConfigure}
  27. proc equiv {x} {return $x}
  28. test safe-1.1 {safe::interpConfigure syntax} {
  29.     list [catch {safe::interpConfigure} msg] $msg;
  30. } {1 {no value given for parameter "slave" (use -help for full usage) :
  31.     slave name () name of the slave}}
  32. test safe-1.2 {safe::interpCreate syntax} {
  33.     list [catch {safe::interpCreate -help} msg] $msg;
  34. } {1 {Usage information:
  35.     Var/FlagName  Type     Value   Help
  36.     ------------  ----     -----   ----
  37.     ( -help                        gives this help )
  38.     ?slave?       name     ()      name of the slave (optional)
  39.     -accessPath   list     ()      access path for the slave
  40.     -noStatics    boolflag (false) prevent loading of statically linked pkgs
  41.     -statics      boolean  (true)  loading of statically linked pkgs
  42.     -nestedLoadOk boolflag (false) allow nested loading
  43.     -nested       boolean  (false) nested loading
  44.     -deleteHook   script   ()      delete hook}}
  45. test safe-1.3 {safe::interpInit syntax} {
  46.     list [catch {safe::interpInit -noStatics} msg] $msg;
  47. } {1 {bad value "-noStatics" for parameter
  48.     slave name () name of the slave}}
  49. test safe-2.1 {creating interpreters, should have no aliases} {
  50.     interp aliases
  51. } ""
  52. test safe-2.2 {creating interpreters, should have no aliases} {
  53.     catch {safe::interpDelete a}
  54.     interp create a
  55.     set l [a aliases]
  56.     safe::interpDelete a
  57.     set l
  58. } ""
  59. test safe-2.3 {creating safe interpreters, should have no aliases} {
  60.     catch {safe::interpDelete a}
  61.     interp create a -safe
  62.     set l [a aliases]
  63.     interp delete a
  64.     set l
  65. } ""
  66. test safe-3.1 {calling safe::interpInit is safe} {
  67.     catch {safe::interpDelete a}
  68.     interp create a -safe 
  69.     safe::interpInit a
  70.     catch {interp eval a exec ls} msg
  71.     safe::interpDelete a
  72.     set msg
  73. } {invalid command name "exec"}
  74. test safe-3.2 {calling safe::interpCreate on trusted interp} {
  75.     catch {safe::interpDelete a}
  76.     safe::interpCreate a
  77.     set l [lsort [a aliases]]
  78.     safe::interpDelete a
  79.     set l
  80. } {encoding exit file load source}
  81. test safe-3.3 {calling safe::interpCreate on trusted interp} {
  82.     catch {safe::interpDelete a}
  83.     safe::interpCreate a
  84.     set x [interp eval a {source [file join $tcl_library init.tcl]}]
  85.     safe::interpDelete a
  86.     set x
  87. } ""
  88. test safe-3.4 {calling safe::interpCreate on trusted interp} {
  89.     catch {safe::interpDelete a}
  90.     safe::interpCreate a
  91.     catch {set x 
  92. [interp eval a {source [file join $tcl_library init.tcl]}]} msg
  93.     safe::interpDelete a
  94.     list $x $msg
  95. } {{} {}}
  96. test safe-4.1 {safe::interpDelete} {
  97.     catch {safe::interpDelete a}
  98.     interp create a
  99.     safe::interpDelete a
  100. } ""
  101. test safe-4.2 {safe::interpDelete, indirectly} {
  102.     catch {safe::interpDelete a}
  103.     interp create a
  104.     a alias exit safe::interpDelete a
  105.     a eval exit
  106. } ""
  107. test safe-4.3 {safe::interpDelete, state array (not a public api)} {
  108.     catch {safe::interpDelete a}
  109.     namespace eval safe {set [InterpStateName a](foo) 33}
  110.     # not an error anymore to call it if interp is already
  111.     # deleted, to make trhings smooth if it's called twice...
  112.     catch {safe::interpDelete a} m1
  113.     catch {namespace eval safe {set [InterpStateName a](foo)}} m2
  114.     list $m1 $m2
  115. } "{}
  116.    {can't read "[safe::InterpStateName a](foo)": no such variable}"
  117. test safe-4.4 {safe::interpDelete, state array, indirectly (not a public api)} {
  118.     catch {safe::interpDelete a}
  119.     safe::interpCreate a
  120.     namespace eval safe {set [InterpStateName a](foo) 33}
  121.     a eval exit
  122.     catch {namespace eval safe {set [InterpStateName a](foo)}} msg
  123. } 1
  124. test safe-4.5 {safe::interpDelete} {
  125.     catch {safe::interpDelete a}
  126.     safe::interpCreate a
  127.     catch {safe::interpCreate a} msg
  128.     set msg
  129. } {interpreter named "a" already exists, cannot create}
  130. test safe-4.6 {safe::interpDelete, indirectly} {
  131.     catch {safe::interpDelete a}
  132.     safe::interpCreate a
  133.     a eval exit
  134. } ""
  135. # The following test checks whether the definition of tcl_endOfWord can be
  136. # obtained from auto_loading.
  137. test safe-5.1 {test auto-loading in safe interpreters} {
  138.     catch {safe::interpDelete a}
  139.     safe::interpCreate a
  140.     set r [catch {interp eval a {tcl_endOfWord "" 0}} msg]
  141.     safe::interpDelete a
  142.     list $r $msg
  143. } {0 -1}
  144. # test safe interps 'information leak'
  145. proc SI {} {
  146.     global I
  147.     set I [interp create -safe];
  148. }
  149. proc DI {} {
  150.     global I;
  151.     interp delete $I;
  152. }
  153. test safe-6.1 {test safe interpreters knowledge of the world} {
  154.     SI; set r [lsort [$I eval {info globals}]]; DI; set r
  155. } {tcl_interactive tcl_patchLevel tcl_platform tcl_version}
  156. test safe-6.2 {test safe interpreters knowledge of the world} {
  157.     SI; set r [$I eval {info script}]; DI; set r
  158. } {}
  159. test safe-6.3 {test safe interpreters knowledge of the world} {
  160.     SI
  161.     set r [lsort [$I eval {array names tcl_platform}]]
  162.     DI
  163.     # If running a windows-debug shell, remove the "debug" element from r.
  164.     if {$tcl_platform(platform) == "windows" && 
  165.     [lsearch $r "debug"] != -1} {
  166. set r [lreplace $r 1 1]
  167.     }
  168.     set threaded [lsearch $r "threaded"]
  169.     if {$threaded != -1} {
  170. set r [lreplace $r $threaded $threaded]
  171.     }
  172.     set tip [lsearch $r "tip,268"]
  173.     if {$tip != -1} {
  174. set r [lreplace $r $tip $tip]
  175.     }
  176.     set tip [lsearch $r "tip,280"]
  177.     if {$tip != -1} {
  178. set r [lreplace $r $tip $tip]
  179.     }
  180.     set r
  181. } {byteOrder platform wordSize}
  182. # more test should be added to check that hostname, nameofexecutable,
  183. # aren't leaking infos, but they still do...
  184. # high level general test
  185. test safe-7.1 {tests that everything works at high level} {
  186.     set i [safe::interpCreate];
  187.     # no error shall occur:
  188.     # (because the default access_path shall include 1st level sub dirs
  189.     #  so package require in a slave works like in the master)
  190.     set v [interp eval $i {package require http 1}]
  191.     # no error shall occur:
  192.     interp eval $i {http_config};
  193.     safe::interpDelete $i
  194.     set v
  195. } 1.0
  196. test safe-7.2 {tests specific path and interpFind/AddToAccessPath} {
  197.     set i [safe::interpCreate -nostat -nested 1 -accessPath [list [info library]]];
  198.     # should not add anything (p0)
  199.     set token1 [safe::interpAddToAccessPath $i [info library]]
  200.     # should add as p1
  201.     set token2 [safe::interpAddToAccessPath $i "/dummy/unixlike/test/path"];
  202.     # an error shall occur (http is not anymore in the secure 0-level
  203.     # provided deep path)
  204.     list $token1 $token2 
  205.     [catch {interp eval $i {package require http 1}} msg] $msg 
  206.     [safe::interpConfigure $i]
  207.     [safe::interpDelete $i]
  208. } "{$p(:0:)} {$p(:1:)} 1 {can't find package http 1} {-accessPath {[list $tcl_library /dummy/unixlike/test/path]} -statics 0 -nested 1 -deleteHook {}} {}"
  209. # test source control on file name
  210. test safe-8.1 {safe source control on file} {
  211.     set i "a";
  212.     catch {safe::interpDelete $i}
  213.     safe::interpCreate $i;
  214.     list  [catch {$i eval {source}} msg] 
  215.     $msg 
  216.     [safe::interpDelete $i] ;
  217. } {1 {wrong # args: should be "source fileName"} {}}
  218. # test source control on file name
  219. test safe-8.2 {safe source control on file} {
  220.     set i "a";
  221.     catch {safe::interpDelete $i}
  222.     safe::interpCreate $i;
  223.     list  [catch {$i eval {source}} msg] 
  224.     $msg 
  225.     [safe::interpDelete $i] ;
  226. } {1 {wrong # args: should be "source fileName"} {}}
  227. test safe-8.3 {safe source control on file} {
  228.     set i "a";
  229.     catch {safe::interpDelete $i}
  230.     safe::interpCreate $i;
  231.     set log {};
  232.     proc safe-test-log {str} {global log; lappend log $str}
  233.     set prevlog [safe::setLogCmd];
  234.     safe::setLogCmd safe-test-log;
  235.     list  [catch {$i eval {source .}} msg] 
  236.     $msg 
  237.     $log 
  238.     [safe::setLogCmd $prevlog; unset log] 
  239.     [safe::interpDelete $i] ;
  240. } {1 {permission denied} {{ERROR for slave a : ".": is a directory}} {} {}}
  241. test safe-8.4 {safe source control on file} {
  242.     set i "a";
  243.     catch {safe::interpDelete $i}
  244.     safe::interpCreate $i;
  245.     set log {};
  246.     proc safe-test-log {str} {global log; lappend log $str}
  247.     set prevlog [safe::setLogCmd];
  248.     safe::setLogCmd safe-test-log;
  249.     list  [catch {$i eval {source /abc/def}} msg] 
  250.     $msg 
  251.     $log 
  252.     [safe::setLogCmd $prevlog; unset log] 
  253.     [safe::interpDelete $i] ;
  254. } {1 {permission denied} {{ERROR for slave a : "/abc/def": not in access_path}} {} {}}
  255. test safe-8.5 {safe source control on file} {
  256.     # This tested filename == *.tcl or tclIndex, but that restriction
  257.     # was removed in 8.4a4 - hobbs
  258.     set i "a";
  259.     catch {safe::interpDelete $i}
  260.     safe::interpCreate $i;
  261.     set log {};
  262.     proc safe-test-log {str} {global log; lappend log $str}
  263.     set prevlog [safe::setLogCmd];
  264.     safe::setLogCmd safe-test-log;
  265.     list  [catch {$i eval {source [file join [info lib] blah]}} msg] 
  266.     $msg 
  267.     $log 
  268.     [safe::setLogCmd $prevlog; unset log] 
  269.     [safe::interpDelete $i] ;
  270. } [list 1 {no such file or directory} [list "ERROR for slave a : [file join [info library] blah]:no such file or directory"] {} {}]
  271. test safe-8.6 {safe source control on file} {
  272.     set i "a";
  273.     catch {safe::interpDelete $i}
  274.     safe::interpCreate $i;
  275.     set log {};
  276.     proc safe-test-log {str} {global log; lappend log $str}
  277.     set prevlog [safe::setLogCmd];
  278.     safe::setLogCmd safe-test-log;
  279.     list  [catch {$i eval {source [file join [info lib] blah.tcl]}} msg] 
  280.     $msg 
  281.     $log 
  282.     [safe::setLogCmd $prevlog; unset log] 
  283.     [safe::interpDelete $i] ;
  284. } [list 1 {no such file or directory} [list "ERROR for slave a : [file join [info library] blah.tcl]:no such file or directory"] {} {}]
  285. test safe-8.7 {safe source control on file} {
  286.     # This tested length of filename, but that restriction
  287.     # was removed in 8.4a4 - hobbs
  288.     set i "a";
  289.     catch {safe::interpDelete $i}
  290.     safe::interpCreate $i;
  291.     set log {};
  292.     proc safe-test-log {str} {global log; lappend log $str}
  293.     set prevlog [safe::setLogCmd];
  294.     safe::setLogCmd safe-test-log;
  295.     list  [catch {$i eval {source [file join [info lib] xxxxxxxxxxx.tcl]}}
  296.  msg] 
  297.     $msg 
  298.     $log 
  299.     [safe::setLogCmd $prevlog; unset log] 
  300.     [safe::interpDelete $i] ;
  301. } [list 1 {no such file or directory} [list "ERROR for slave a : [file join [info library] xxxxxxxxxxx.tcl]:no such file or directory"] {} {}]
  302. test safe-8.8 {safe source forbids -rsrc} {
  303.     set i "a";
  304.     catch {safe::interpDelete $i}
  305.     safe::interpCreate $i;
  306.     list  [catch {$i eval {source -rsrc Init}} msg] 
  307.     $msg 
  308.     [safe::interpDelete $i] ;
  309. } {1 {wrong # args: should be "source fileName"} {}}
  310. test safe-9.1 {safe interps' deleteHook} {
  311.     set i "a";
  312.     catch {safe::interpDelete $i}
  313.     set res {}
  314.     proc testDelHook {args} {
  315. global res;
  316. # the interp still exists at that point
  317. interp eval a {set delete 1}
  318. # mark that we've been here (successfully)
  319. set res $args;
  320.     }
  321.     safe::interpCreate $i -deleteHook "testDelHook arg1 arg2";
  322.     list [interp eval $i exit] $res
  323. } {{} {arg1 arg2 a}}
  324. test safe-9.2 {safe interps' error in deleteHook} {
  325.     set i "a";
  326.     catch {safe::interpDelete $i}
  327.     set res {}
  328.     proc testDelHook {args} {
  329. global res;
  330. # the interp still exists at that point
  331. interp eval a {set delete 1}
  332. # mark that we've been here (successfully)
  333. set res $args;
  334. # create an exception
  335. error "being catched";
  336.     }
  337.     set log {};
  338.     proc safe-test-log {str} {global log; lappend log $str}
  339.     safe::interpCreate $i -deleteHook "testDelHook arg1 arg2";
  340.     set prevlog [safe::setLogCmd];
  341.     safe::setLogCmd safe-test-log;
  342.     list  [safe::interpDelete $i] $res 
  343.     $log 
  344.     [safe::setLogCmd $prevlog; unset log];
  345. } {{} {arg1 arg2 a} {{NOTICE for slave a : About to delete} {ERROR for slave a : Delete hook error (being catched)} {NOTICE for slave a : Deleted}} {}}
  346. test safe-9.3 {dual specification of statics} {
  347.     list [catch {safe::interpCreate -stat true -nostat} msg] $msg
  348. } {1 {conflicting values given for -statics and -noStatics}}
  349. test safe-9.4 {dual specification of statics} {
  350.     # no error shall occur
  351.     safe::interpDelete [safe::interpCreate -stat false -nostat]
  352. } {}
  353. test safe-9.5 {dual specification of nested} {
  354.     list [catch {safe::interpCreate -nested 0 -nestedload} msg] $msg
  355. } {1 {conflicting values given for -nested and -nestedLoadOk}}
  356. test safe-9.6 {interpConfigure widget like behaviour} {
  357.    # this test shall work, don't try to "fix it" unless
  358.    # you *really* know what you are doing (ie you are me :p) -- dl
  359.    list [set i [safe::interpCreate 
  360.                            -noStatics 
  361.                                    -nestedLoadOk 
  362.                            -deleteHook {foo bar}];
  363.          safe::interpConfigure $i -accessPath /foo/bar ;
  364.          safe::interpConfigure $i]
  365. [safe::interpConfigure $i -aCCess]
  366. [safe::interpConfigure $i -nested]
  367. [safe::interpConfigure $i -statics]
  368. [safe::interpConfigure $i -DEL]
  369. [safe::interpConfigure $i -accessPath /blah -statics 1;
  370.  safe::interpConfigure $i]
  371. [safe::interpConfigure $i -deleteHook toto -nosta -nested 0;
  372.  safe::interpConfigure $i]
  373. } {{-accessPath /foo/bar -statics 0 -nested 1 -deleteHook {foo bar}} {-accessPath /foo/bar} {-nested 1} {-statics 0} {-deleteHook {foo bar}} {-accessPath /blah -statics 1 -nested 1 -deleteHook {foo bar}} {-accessPath /blah -statics 0 -nested 0 -deleteHook toto}}
  374. # testing that nested and statics do what is advertised
  375. # (we use a static package : Tcltest)
  376. if {[catch {package require Tcltest} msg]} {
  377.     puts "This application hasn't been compiled with Tcltest"
  378.     puts "skipping remining safe test that relies on it."
  379. } else {
  380.     # we use the Tcltest package , which has no Safe_Init
  381. test safe-10.1 {testing statics loading} {
  382.     set i [safe::interpCreate]
  383.     list 
  384.     [catch {interp eval $i {load {} Tcltest}} msg] 
  385.     $msg 
  386.             [safe::interpDelete $i];
  387. } {1 {can't use package in a safe interpreter: no Tcltest_SafeInit procedure} {}}
  388. test safe-10.2 {testing statics loading / -nostatics} {
  389.     set i [safe::interpCreate -nostatics]
  390.     list 
  391.     [catch {interp eval $i {load {} Tcltest}} msg] 
  392.     $msg 
  393.             [safe::interpDelete $i];
  394. } {1 {permission denied (static package)} {}}
  395. test safe-10.3 {testing nested statics loading / no nested by default} {
  396.     set i [safe::interpCreate]
  397.     list 
  398.     [catch {interp eval $i {interp create x; load {} Tcltest x}} msg] 
  399.     $msg 
  400.             [safe::interpDelete $i];
  401. } {1 {permission denied (nested load)} {}}
  402. test safe-10.4 {testing nested statics loading / -nestedloadok} {
  403.     set i [safe::interpCreate -nestedloadok]
  404.     list 
  405.     [catch {interp eval $i {interp create x; load {} Tcltest x}} msg] 
  406.     $msg 
  407.             [safe::interpDelete $i];
  408. } {1 {can't use package in a safe interpreter: no Tcltest_SafeInit procedure} {}}
  409. }
  410. test safe-11.1 {testing safe encoding} {
  411.     set i [safe::interpCreate]
  412.     list 
  413.     [catch {interp eval $i encoding} msg] 
  414.     $msg 
  415.     [safe::interpDelete $i];
  416. } {1 {wrong # args: should be "encoding option ?arg ...?"} {}}
  417. test safe-11.2 {testing safe encoding} {
  418.     set i [safe::interpCreate]
  419.     list 
  420.     [catch {interp eval $i encoding system cp775} msg] 
  421.     $msg 
  422.     [safe::interpDelete $i];
  423. } {1 {wrong # args: should be "encoding system"} {}}
  424. test safe-11.3 {testing safe encoding} {
  425.     set i [safe::interpCreate]
  426.     set result [catch {
  427. string match [encoding system] [interp eval $i encoding system]
  428.     } msg]
  429.     list $result $msg [safe::interpDelete $i]
  430. } {0 1 {}}
  431. test safe-11.4 {testing safe encoding} {
  432.     set i [safe::interpCreate]
  433.     set result [catch {
  434. string match [encoding names] [interp eval $i encoding names]
  435.     } msg]
  436.     list $result $msg  [safe::interpDelete $i]
  437. } {0 1 {}}
  438. test safe-11.5 {testing safe encoding} {
  439.     set i [safe::interpCreate]
  440.     list 
  441.     [catch {interp eval $i encoding convertfrom cp1258 foobar} msg] 
  442.     $msg 
  443.     [safe::interpDelete $i];
  444. } {0 foobar {}}
  445. test safe-11.6 {testing safe encoding} {
  446.     set i [safe::interpCreate]
  447.     list 
  448.     [catch {interp eval $i encoding convertto cp1258 foobar} msg] 
  449.     $msg 
  450.     [safe::interpDelete $i];
  451. } {0 foobar {}}
  452. test safe-11.7 {testing safe encoding} {
  453.     set i [safe::interpCreate]
  454.     list 
  455.     [catch {interp eval $i encoding convertfrom} msg] 
  456.     $msg 
  457.     [safe::interpDelete $i];
  458. } {1 {wrong # args: should be "encoding convertfrom ?encoding? data"} {}}
  459. test safe-11.8 {testing safe encoding} {
  460.     set i [safe::interpCreate]
  461.     list 
  462.     [catch {interp eval $i encoding convertto} msg] 
  463.     $msg 
  464.     [safe::interpDelete $i];
  465. } {1 {wrong # args: should be "encoding convertto ?encoding? data"} {}}
  466. set ::auto_path $saveAutoPath
  467. # cleanup
  468. ::tcltest::cleanupTests
  469. return