~ubuntu-branches/ubuntu/oneiric/checkbox/oneiric-updates

« back to all changes in this revision

Viewing changes to jobs/user_apps.txt.in

  • Committer: Bazaar Package Importer
  • Author(s): Marc Tardif
  • Date: 2010-06-22 10:43:52 UTC
  • Revision ID: james.westby@ubuntu.com-20100622104352-h9t46u2qwwqmkj5o
Tags: 0.10.1
New upstream release (LP: #597295):
* Added support for urwid interface.
* Added sound check test.
* Added document viewer test.
* Added update-manager and nautilus tests.
* Added resolution tests.
* Added sleep tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
plugin: manual
 
2
name: update_manager_finds_updates
 
3
depends: internet_test
 
4
user: root
 
5
requires: package.name == 'update-manager'
 
6
_description:
 
7
 This test will execute Update Manager and check to see if there are any available updates for the system. Please follow the prompts and if updates are found, install them. When Update Manager has finished, please close the app by clicking the Close button in the lower right corner.
 
8
command: update-manager --check-dist-upgrades
 
9
 
 
10
plugin: manual
 
11
name: nautilus_folder_create
 
12
requires: package.name == 'nautilus'
 
13
command: nautilus
 
14
_description:
 
15
 Click the Test button to open the File Browser. On the menu bar, click File -> Create Folder. In the name box for the new folder, enter the name Test Folder and hit Enter.
 
16
 .
 
17
 Do you now have a new folder called Test Folder?
 
18
 .
 
19
 Close the File browser.
 
20
 
 
21
plugin: manual
 
22
name: nautilus_folder_copy
 
23
depends: nautilus_folder_create
 
24
command: nautilus
 
25
_description:
 
26
 Click the Test button to open the File Browser. Right click on the folder called Test Folder and click on Copy.  Right Click on any white area in the window and click on Paste.
 
27
 .
 
28
 Right click on the folder called Test Folder(copy) and click Rename. Enter the name Test Data in the name box and hit Enter.
 
29
 .
 
30
 Do you now have a folder called Test Data?
 
31
 .
 
32
 Close the File browser.
 
33
 
 
34
plugin: manual
 
35
name: nautilus_folder_move
 
36
depends: nautilus_folder_copy
 
37
command: nautilus
 
38
_description:
 
39
 Click the Test button to open the File Browser. Click and drag the folder called Test Data onto the icon called Test Folder. Release the button. 
 
40
 .
 
41
 Double click the folder called Test Folder to open it up.
 
42
 .
 
43
 Was the folder called Test Data successfully moved into the folder called Test Folder?
 
44
 .
 
45
 Close the File Browser.
 
46
 
 
47
plugin: manual
 
48
name: nautilus_file_create
 
49
depends: nautilus_folder_create
 
50
command: nautilus $HOME/"Test Folder"
 
51
_description:
 
52
 Click the Test button to open the File Browser. Right click in the white space and click Create Document -> Empty File. Enter the name Test File 1 in the name box and hit Enter.
 
53
 .
 
54
 Do you now have a file called Test File 1?
 
55
 .
 
56
 Close the File browser.
 
57
 
 
58
plugin: manual
 
59
name: nautilus_file_copy
 
60
depends: nautilus_file_create
 
61
command: nautilus $HOME/"Test Folder"
 
62
_description:
 
63
 Click the Test button to open the File Browser. Right click on the file called Test File 2 and click Copy. Right click in the white space and click Paste.
 
64
 .
 
65
 Right click on the file called Test File 1(copy) and click Rename. Enter the name Test File 2 in the name box and hit Enter.
 
66
 .
 
67
 Do you now have a file called Test File 2?
 
68
 .
 
69
 Close the File Browser.
 
70
 
 
71
plugin: manual
 
72
name: nautilus_file_move
 
73
depends: nautilus_file_copy
 
74
command: nautilus $HOME/"Test Folder"
 
75
_description:
 
76
 Click the Test button to open the File Browser. Click and drag the file called Test File 2 onto the icon for the folder called Test Data. Release the button.
 
77
 .
 
78
 Double click the icon for Test Data to open that folder up.
 
79
 .
 
80
 Was the file Test File 2 successfully moved into the Test Data folder?
 
81
 .
 
82
 Close the File Browser.
 
83
 
 
84
plugin: manual
 
85
name: nautilus_file_delete
 
86
depends: nautilus_file_create
 
87
command: nautilus $HOME/"Test Folder"
 
88
_description:
 
89
 Click the Test button to open the File Browser. Right click on the file called Test File 1 and click on Move To Trash.
 
90
 .
 
91
 Is Test File 1 now gone?
 
92
 .
 
93
 Close the File Browser.
 
94
 
 
95
plugin: manual
 
96
name: nautilus_folder_delete
 
97
depends: nautilus_folder_create
 
98
command: nautilus
 
99
_description:
 
100
 Click the Test button to open the File Browser. Right click on the folder called Test Folder and click on Move To Trash.
 
101
 .
 
102
 Has Test Folder been successfully deleted?
 
103
 .
 
104
 Close the File Browser.
 
105
 
 
106
plugin: local
 
107
name: Document Viewer Test
 
108
requires: package.name == "ubuntu-desktop"
 
109
description: Common Document Types Test
 
110
command: 
 
111
 cat <<'EOF' | run_templates -s "find $CHECKBOX_SHARE/data -type f"
 
112
 name: `basename $0`_test
 
113
 plugin: manual
 
114
 description: 
 
115
  Now we will attempt to open the file '$0' with it's default viewer. After the viewer opens, check out the file that was opened and then close the application (OpenOffice, Doc Viewer, Totem, etc.)
 
116
  .
 
117
  Click Test to begin
 
118
  .
 
119
  Did the application open the document properly? (e.g was it displayed and did it function properly?)
 
120
 command: xdg-open $0
 
121
 EOF