sl@0
|
1 |
# Commands covered: AppleScript
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# This file contains a collection of tests for one or more of the Tcl
|
sl@0
|
4 |
# built-in commands. Sourcing this file into Tcl runs the tests and
|
sl@0
|
5 |
# generates output for errors. No output means no errors were found.
|
sl@0
|
6 |
#
|
sl@0
|
7 |
# Copyright (c) 1997 Sun Microsystems, Inc.
|
sl@0
|
8 |
# Copyright (c) 1998-1999 by Scriptics Corporation.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
# See the file "license.terms" for information on usage and redistribution
|
sl@0
|
11 |
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# RCS: @(#) $Id: osa.test,v 1.6 2000/04/10 17:19:02 ericm Exp $
|
sl@0
|
14 |
|
sl@0
|
15 |
if {[lsearch [namespace children] ::tcltest] == -1} {
|
sl@0
|
16 |
package require tcltest
|
sl@0
|
17 |
namespace import -force ::tcltest::*
|
sl@0
|
18 |
}
|
sl@0
|
19 |
|
sl@0
|
20 |
# Only run the test if we can load the AppleScript command
|
sl@0
|
21 |
set ::tcltest::testConstraints(appleScript) [expr {[info commands AppleScript] != ""}]
|
sl@0
|
22 |
|
sl@0
|
23 |
test osa-1.1 {Tcl_OSAComponentCmd} {macOnly appleScript} {
|
sl@0
|
24 |
list [catch AppleScript msg] $msg
|
sl@0
|
25 |
} {1 {wrong # args: should be "AppleScript option ?arg ...?"}}
|
sl@0
|
26 |
test osa-1.2 {Tcl_OSAComponentCmd} {macOnly appleScript} {
|
sl@0
|
27 |
list [catch {AppleScript x} msg] $msg
|
sl@0
|
28 |
} {1 {bad option "x": should be compile, decompile, delete, execute, info, load, run or store}}
|
sl@0
|
29 |
|
sl@0
|
30 |
test osa-1.3 {TclOSACompileCmd} {macOnly appleScript} {
|
sl@0
|
31 |
list [catch {AppleScript compile} msg] $msg
|
sl@0
|
32 |
} {1 {wrong # args: should be "AppleScript compile ?options? code"}}
|
sl@0
|
33 |
|
sl@0
|
34 |
# cleanup
|
sl@0
|
35 |
::tcltest::cleanupTests
|
sl@0
|
36 |
return
|
sl@0
|
37 |
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
|