summaryrefslogtreecommitdiff
path: root/tests/chage/32_chage_interractive_date_invalid2/run.exp
blob: edc3f78bb8afc06df535d075b952a9372625dc98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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 myuser1
expect -re "Minimum Password Age .0\]: "
send "13\r"
expect -re "Maximum Password Age .99999\]: "
send "14\r"
expect -re "Last Password Change \[(]YYYY-MM-DD\[)] .2005-07-27\]: "
send "2000-mm-42\r"
expect "chage: error changing fields\r\n"
expect {
	eof {
	} default {
		puts "\nFAIL"
		exit 1
	}
}

puts "\nPASS"
exit 0