1 # Commands covered: apply
3 # This file contains a collection of tests for one or more of the Tcl
4 # built-in commands. Sourcing this file into Tcl runs the tests and
5 # generates output for errors. No output means no errors were found.
7 # Copyright (c) 1991-1993 The Regents of the University of California.
8 # Copyright (c) 1994-1996 Sun Microsystems, Inc.
9 # Copyright (c) 1998-1999 by Scriptics Corporation.
10 # Copyright (c) 2005-2006 Miguel Sofer
12 # See the file "license.terms" for information on usage and redistribution
13 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
15 source [file dirname [info script]]/testing.tcl
20 # Tests for runtime errors in the lambda expression
22 # Note: Jim doesn't have the concept of non-existent namespaces
24 test apply-3.1 {non-existing namespace} -constraints tcl -body {
25 apply [list x {set x 1} ::NONEXIST::FOR::SURE] x
26 } -returnCodes error -result {namespace "::NONEXIST::FOR::SURE" not found}
27 test apply-3.2 {non-existing namespace} -constraints tcl -body {
28 namespace eval ::NONEXIST::FOR::SURE {}
29 set lambda [list x {set x 1} ::NONEXIST::FOR::SURE]
31 namespace delete ::NONEXIST
33 } -returnCodes error -result {namespace "::NONEXIST::FOR::SURE" not found}
34 test apply-3.3 {non-existing namespace} -constraints tcl -body {
35 apply [list x {set x 1} NONEXIST::FOR::SURE] x
36 } -returnCodes error -result {namespace "::NONEXIST::FOR::SURE" not found}
37 test apply-3.4 {non-existing namespace} -constraints tcl -body {
38 namespace eval ::NONEXIST::FOR::SURE {}
39 set lambda [list x {set x 1} NONEXIST::FOR::SURE]
41 namespace delete ::NONEXIST
43 } -returnCodes error -result {namespace "::NONEXIST::FOR::SURE" not found}
45 # Tests for correct namespace scope
47 namespace eval ::testApply {
48 proc testApply args {return testApply}
51 test apply-7.1 {namespace access} {
53 set body {set x 1; set x}
54 list [apply [list args $body ::testApply]] $::testApply::x
56 test apply-7.2 {namespace access} {
58 set body {variable x; set x}
59 list [apply [list args $body ::testApply]] $::testApply::x
61 test apply-7.3 {namespace access} {
63 set body {variable x; set x 1}
64 list [apply [list args $body ::testApply]] $::testApply::x
66 test apply-7.4 {namespace access} {
69 apply [list args $body ::testApply]
71 test apply-7.5 {namespace access} {
73 set body {set x 1; set x}
74 list [apply [list args $body testApply]] $::testApply::x
76 test apply-7.6 {namespace access} {
78 set body {variable x; set x}
79 list [apply [list args $body testApply]] $::testApply::x
81 test apply-7.7 {namespace access} {
83 set body {variable x; set x 1}
84 list [apply [list args $body testApply]] $::testApply::x
86 test apply-7.8 {namespace access} {
89 apply [list args $body testApply]
92 namespace delete testApply