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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
'encoding UTF-8 Do not remove or change this line!
'**************************************************************************
' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
'
' Copyright 2000, 2010 Oracle and/or its affiliates.
'
' OpenOffice.org - a multi-platform office productivity suite
'
' This file is part of OpenOffice.org.
'
' OpenOffice.org is free software: you can redistribute it and/or modify
' it under the terms of the GNU Lesser General Public License version 3
' only, as published by the Free Software Foundation.
'
' OpenOffice.org is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU Lesser General Public License version 3 for more details
' (a copy is included in the LICENSE file that accompanied this code).
'
' You should have received a copy of the GNU Lesser General Public License
' version 3 along with OpenOffice.org. If not, see
' <http://www.openoffice.org/license.html>
' for a copy of the LGPLv3 License.
'
'/************************************************************************
'*
'* owner : gregor.hartmann@oracle.com
'*
'* short description : 1. test for general group userdata ... view)
'*
'\******************************************************************************
testcase tOOoMemory
Dim lsSave (7) as String
Dim lbSave as Boolean
Dim sValue as String
dim bHasQuickstarter as boolean
hNewDocument
ToolsOptions
hToolsOptions ( "StarOffice", "Memory" )
printlog " - check platform dependences "
if ( LoadQuickstarter.exists() and LoadQuickstarter.isVisible() and LoadQuickstarter.isEnabled() ) then
bHasQuickstarter = TRUE
printlog( "Quickstarter is available" )
else
bHasQuickstarter = FALSE
printlog( "Quickstarter is NOT available on this platform" )
endif
printlog " - save old data"
lsSave(1) = UndoSteps.GetText
lsSave(2) = StarOffice.GetText
lsSave(3) = MemoryPerObject.GetText
lsSave(4) = RemoveFromMemoryAfter.GetText
lsSave(5) = NumberOfObjects.GetText
if ( bHasQuickstarter ) then
lbSave = LoadQuickstarter.IsChecked
endif
printlog " - invert/change data"
UndoSteps.SetText "80"
StarOffice.SetText "50"
if Instr ( lsSave(3), "," ) <> 0 then
sValue = "4,1"
else
sValue = "4.1"
end if
MemoryPerObject.SetText sValue
RemoveFromMemoryAfter.SetText "00:41"
NumberOfObjects.SetText "81"
if ( bHasQuickstarter ) then
LoadQuickstarter.UnCheck
endif
Kontext "ExtrasOptionenDlg"
ExtrasOptionenDlg.OK
if ( ExtrasOptionenDlg.notExists( 3 ) ) then
printlog( "Options closed" )
endif
hCloseDocument
printlog " - exit/restart StarOffice"
ExitRestartTheOffice
printlog " - check data"
ToolsOptions
hToolsOptions ( "StarOffice", "Memory" )
if UndoSteps.GetText <> "80" then
Warnlog "Undo steps => changes not saved!"
endif
if StarOffice.GetText <> "50" then
Warnlog "Use For StarOffice => changes not saved!"
endif
if MemoryPerObject.GetText <> sValue then
Warnlog "Memory per object => changes not saved! => " + MemoryPerObject.GetText
endif
if RemoveFromMemoryAfter.GetText <> "00:41" then
Warnlog "Remove from memory after => changes not saved! =>" + RemoveFromMemoryAfter.GetText
endif
if NumberOfObjects.GetText <> "81" then
Warnlog "Number of objects => changes not saved!"
endif
if ( bHasQuickstarter ) then
if LoadQuickstarter.IsEnabled then
if LoadQuickstarter.IsChecked = TRUE then
Warnlog "Load StarOffice during system-startup => changes not saved!"
end if
end if
endif
printlog " - 2. change data"
UndoSteps.SetText "5"
StarOffice.SetText "11"
if Instr ( lsSave(3), "," ) <> 0 then
sValue = "1,9"
else
sValue = "1.9"
end if
MemoryPerObject.SetText sValue
RemoveFromMemoryAfter.SetText "01:32"
NumberOfObjects.SetText "2"
if ( bHasQuickstarter ) then
LoadQuickstarter.Check
endif
Kontext "ExtrasOptionenDlg"
ExtrasOptionenDlg.OK
if ( ExtrasOptionenDlg.notExists( 3 ) ) then
printlog( "Options closed" )
endif
printlog " - check data"
ToolsOptions
hToolsOptions ( "StarOffice", "Memory" )
if UndoSteps.GetText <> "5" then
Warnlog "Undo steps => changes not saved!"
endif
if StarOffice.GetText <> "11" then
Warnlog "Use For StarOffice => changes not saved!"
endif
if MemoryPerObject.GetText <> sValue then
Warnlog "Memory per object => changes not saved! => " + MemoryPerObject.GetText
endif
if RemoveFromMemoryAfter.GetText <> "01:32" then
Warnlog "Remove from memory after => changes not saved! => " + RemoveFromMemoryAfter.GetText
endif
if NumberOfObjects.GetText <> "2" then
Warnlog "Number of objects => changes not saved!"
endif
if ( bHasQuickstarter ) then
if LoadQuickstarter.IsChecked <> TRUE then
Warnlog "Load StarOffice during system-startup => changes not saved!"
end if
endif
printlog " - reset to saved data"
UndoSteps.SetText lsSave(1)
StarOffice.SetText lsSave(2)
MemoryPerObject.SetText lsSave(3)
RemoveFromMemoryAfter.SetText lsSave(4)
NumberOfObjects.SetText lsSave(5)
if ( bHasQuickstarter ) then
if lbSave = TRUE then
LoadQuickstarter.Check else LoadQuickstarter.UnCheck
endif
endif
Kontext "ExtrasOptionenDlg"
ExtrasOptionenDlg.OK
if ( ExtrasOptionenDlg.notExists( 3 ) ) then
printlog( "Options closed" )
endif
ToolsOptions
hToolsOptions ( "StarOffice", "Memory" )
printlog " - check the reset data"
if UndoSteps.GetText <> lsSave(1) then
Warnlog "Undo steps => changes not saved!"
endif
if StarOffice.GetText <> lsSave(2) then
Warnlog "Use For StarOffice => changes not saved!"
endif
if MemoryPerObject.GetText <> lsSave(3) then
Warnlog "Memory per object => changes not saved! => " + MemoryPerObject.GetText
endif
if RemoveFromMemoryAfter.GetText <> lsSave(4) then
Warnlog "Remove from memory after => changes not saved! =>" + RemoveFromMemoryAfter.GetText
endif
if NumberOfObjects.GetText <> lsSave(5) then
Warnlog "Number of objects => changes not saved!"
endif
if ( bHasQuickstarter ) then
if LoadQuickstarter.IsChecked <> lbSave then
Warnlog "Load StarOffice during system-startup => changes not saved!"
endif
endif
Kontext "ExtrasOptionenDlg"
ExtrasOptionenDlg.OK
if ( ExtrasOptionenDlg.notExists( 3 ) ) then
printlog( "Options closed" )
endif
endcase
|