~brendan-donegan/checkbox/bug916859_record_playback

« back to all changes in this revision

Viewing changes to jobs/wireless.txt.in

  • Committer: Daniel Manrique
  • Date: 2012-01-10 21:59:37 UTC
  • mfrom: (1156.2.8 monitor_connection_wait)
  • Revision ID: daniel.manrique@canonical.com-20120110215937-go9js2ji2k3qh9dr
merge Brendan's reliability tweaks to monitor_connection tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
requires: device.category == 'WIRELESS'
25
25
user: root
26
26
environ: WPA_BG_SSID WPA_BG_PSK
27
 
command: create_connection $WPA_BG_SSID --security=wpa --key=$WPA_BG_PSK && nmcli con up id $WPA_BG_SSID && internet_test
 
27
command: create_connection $WPA_BG_SSID --security=wpa --key=$WPA_BG_PSK && ifconfig eth0 down; internet_test; ifconfig eth0 up; rm -f /etc/NetworkManager/system-connections/$WPA_BG_SSID
28
28
_description:
29
29
 Tests that the systems wireless hardware can connect to a router using WPA
30
30
 security and the 802.11b/g protocols.
34
34
requires: device.category == 'WIRELESS'
35
35
user: root
36
36
environ: OPEN_BG_SSID
37
 
command: create_connection $OPEN_BG_SSID && nmcli con up id $OPEN_BG_SSID && internet_test
 
37
command: create_connection $OPEN_BG_SSID && ifconfig eth0 down; internet_test; ifconfig eth0 up; rm -f /etc/NetworkManager/system-connections/$OPEN_BG_SSID
38
38
_description:
39
39
 Tests that the systems wireless hardware can connect to a router using no
40
40
 no security and the 802.11b/g protocols.
44
44
requires: device.category == 'WIRELESS'
45
45
user: root
46
46
environ: WPA_N_SSID WPA_N_PSK
47
 
command: create_connection $WPA_N_SSID --security=wpa --key=$WPA_N_PSK && nmcli con up id $WPA_N_SSID && internet_test
 
47
command: create_connection $WPA_N_SSID --security=wpa --key=$WPA_N_PSK && ifconfig eth0 down; internet_test; ifconfig eth0 up; rm -f /etc/NetworkManager/system-connections/$WPA_N_SSID
48
48
_description:
49
49
 Tests that the systems wireless hardware can connect to a router using WPA
50
50
 security and the 802.11n protocol.
54
54
requires: device.category == 'WIRELESS'
55
55
user: root
56
56
environ: OPEN_N_SSID
57
 
command: create_connection $OPEN_N_SSID && nmcli con up id $OPEN_N_SSID && internet_test
 
57
command: create_connection $OPEN_N_SSID && ifconfig eth0 down; internet_test; ifconfig eth0 up; rm -f /etc/NetworkManager/system-connections/$OPEN_N_SSID
58
58
_description:
59
59
 Tests that the systems wireless hardware can connect to a router using no
60
60
 no security and the 802.11n protocol.
66
66
 device.category == 'WIRELESS'
67
67
user: root
68
68
environ: WPA_BG_SSID WPA_BG_PSK SERVER_IPERF
69
 
command: create_connection $WPA_BG_SSID --security=wpa --key=$WPA_BG_PSK && nmcli con up id $WPA_BG_SSID && ifconfig eth0 down; iperf -c $SERVER_IPERF -t 30; ifconfig eth0 up
 
69
command: create_connection $WPA_BG_SSID --security=wpa --key=$WPA_BG_PSK && ifconfig eth0 down; iperf -c $SERVER_IPERF -t 300 -i 30; ifconfig eth0 up; rm -f /etc/NetworkManager/system-connections/$WPA_BG_SSID
70
70
_description:
71
71
 Tests the performance of a systems wireless connection through the iperf tool.
72
72
 
77
77
 device.category == 'WIRELESS'
78
78
user: root
79
79
environ: WPA_BG_SSID WPA_BG_PSK SERVER_IPERF
80
 
command: create_connection $WPA_BG_SSID --security=wpa --key=$WPA_BG_PSK && nmcli con up id $WPA_BG_SSID && ifconfig eth0 down; iperf -c $SERVER_IPERF -t 30 -u -b 100m -p 5050; ifconfig eth0 up
 
80
command: create_connection $WPA_BG_SSID --security=wpa --key=$WPA_BG_PSK && ifconfig eth0 down; iperf -c $SERVER_IPERF -t 300 -i 30 -u -b 100m -p 5050; ifconfig eth0 up; rm -f /etc/NetworkManager/system-connections/$WPA_BG_SSID
81
81
_description:
82
82
 Tests the performance of a systems wireless connection through the iperf tool, using UDP packets.