Expect


Expect is an extension to the Tcl scripting language written by Don Libes. The program automates interactions with programs that expose a text terminal interface. Expect, originally written in 1990 for the Unix platform, has since become available for Microsoft Windows and other systems.

Basics

Expect is used to automate control of interactive applications such as Telnet, FTP, passwd, fsck, rlogin, tip, SSH, and others. Expect uses pseudo terminals or emulates a console, starts the target program, and then communicates with it, just as a human would, via the terminal or console interface. Tk, another Tcl extension, can be used to provide a GUI.

Usage

Expect serves as a "glue" to link existing utilities together. The general idea is to figure out how to make Expect use the system's existing tools rather than figure out how to solve a problem inside of Expect.
A key usage of Expect involves commercial software products. Many of these products provide some type of command-line interface, but these usually lack the power needed to write scripts. They were built to service the users administering the product, but the company often does not spend the resources to fully implement a robust scripting language. An Expect script can spawn a shell, look up environmental variables, perform some Unix commands to retrieve more information, and then enter into the product's command-line interface armed with the necessary information to achieve the user's goal. After retrieving information by interacting with the product via its command-line interface, the script can make intelligent decisions about what action to take, if any.
Every time an Expect operation is completed, the results are stored in a local variable called $expect_out. This allows the script to harvest information to feedback to the user, and it also allows conditional behavior of what to send next based on the circumstances.
A common use of Expect is to set up a testing suite, whether it be for programs, utilities or embedded systems. DejaGnu is a testing suite written using Expect for use in testing. It has been used extensively for testing GCC and is very well suited to testing remote targets such as embedded development.
One can automate the generation of an Expect script using a tool called 'autoexpect'. This tool observes your actions and generates an Expect script using heuristics. Though generated code may be large and somewhat cryptic, one can always tweak the generated script to get the exact code.

  1. Assume $remote_server, $my_user_id, $my_password, and
  2. $my_command were read in earlier in the script.
  3. Open a Telnet session to a remote server, and wait
  4. for a username prompt.
spawn telnet $remote_server
expect "username:"
  1. Send the username, and then wait for a password prompt.
send "$my_user_id\r"
expect "password:"
  1. Send the password, and then wait for a shell prompt.
send "$my_password\r"
expect "%"
  1. Send the prebuilt command, and then wait
  2. for another shell prompt.
send "$my_command\r"
expect "%"
  1. Capture the results of the command into a variable. This
  2. can be displayed, or written to disk.
set results $expect_out
  1. Exit the Telnet session, and wait for a special
  2. end-of-file character.
send "exit\r"
expect eof

Another example is a script that automates FTP:

  1. Set timeout parameter to a proper value.
  2. For example, the file size is indeed big and the network
  3. speed is really one problem, you'd better set this
  4. parameter a value.
set timeout -1
  1. Open an FTP session to a remote server, and
  2. wait for a username prompt.
spawn ftp $remote_server
expect "username:"
  1. Send the username, and then wait for a password prompt.
send "$my_user_id\r"
expect "password:"
  1. Send the password, and then wait for an 'ftp' prompt.
send "$my_password\r"
expect "ftp>"
  1. Switch to binary mode, and then wait for an 'ftp' prompt.
send "bin\r"
expect "ftp>"
  1. Turn off prompting.
send "prompt\r"
expect "ftp>"
  1. Get all the files
send "mget *\r"
expect "ftp>"
  1. Exit the FTP session, and wait for a special
  2. end-of-file character.
send "bye\r"
expect eof

Below is an example that automates SFTP :

  1. !/usr/bin/env expect -f
  2. Procedure to attempt connecting; result 0 if OK, 1 otherwise
proc connect
  1. Read the input parameters
set user
set passw
set host
set location
set file1
set file2
  1. puts "Argument data:\n";
  2. puts "user: $user";
  3. puts "passw: $passw";
  4. puts "host: $host";
  5. puts "location: $location";
  6. puts "file1: $file1";
  7. puts "file2: $file2";
  8. Check if all were provided
if
  1. Sftp to specified host and send the files
spawn sftp $user@$host
set rez
if
puts "\nError connecting to server: $host, user: $user and password: $passw!\n"
exit 1

Using passwords as command-line arguments, like in this example, is a huge security hole, as any other user on the machine can read this password by running "ps". You can, however, add code that will prompt you for your password rather than giving your password as an argument. This should be more secure. See the example below.

stty -echo
send_user -- "Enter Password: "
expect_user -re "\n"
send_user "\n"
stty echo
set PASS $expect_out

Another example of automated SSH login to a user machine:

  1. Timeout is a predefined variable in Expect which by
  2. default is set to 10 seconds.
  3. spawn_id is another default variable in Expect.
  4. It is good practice to close spawn_id handle
  5. created by spawn command.
set timeout 60
spawn ssh $user@machine
while
wait
close $spawn_id

Alternatives

Various projects implement Expect-like functionality in other languages, such as C#, Java, Scala, Groovy, Perl, Python, Ruby, Shell and Go. These are generally not exact clones of the original Expect, but the concepts tend to be very similar.

C#