We're losing the svn history (which we could probably keep if we tried hard enough) but don't consider that worthwhile. Note these tests are destructive, so run them only in a throwaway environment like a chroot, container, or vm. The tests/run.all script should be the one which launches all the tests. Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
32 lines
641 B
Plaintext
Executable File
32 lines
641 B
Plaintext
Executable File
#!/usr/bin/expect
|
|
|
|
set timeout 5
|
|
|
|
# I've not been able to put the opening bracket in the regular expressions
|
|
# If anyone knows...
|
|
|
|
spawn /usr/bin/chage myuser7
|
|
expect -re "Minimum Password Age .11\]: "
|
|
send "13\r"
|
|
expect -re "Maximum Password Age .12\]: "
|
|
send "14\r"
|
|
expect -re "Last Password Change \[(]YYYY-MM-DD\[)] .2030-03-02\]: "
|
|
send "2005-07-26\r"
|
|
expect -re "Password Expiration Warning .4\]: "
|
|
send "9\r"
|
|
expect -re "Password Inactive .10\]: "
|
|
send "35\r"
|
|
expect -re "Account Expiration Date \[(]YYYY-MM-DD\[)] .1979-11-24\]: "
|
|
send "2012-07-27\r"
|
|
expect {
|
|
eof {
|
|
} default {
|
|
puts "\nFAIL"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
puts "\nPASS"
|
|
exit 0
|
|
|