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
220
221
222
223
224
225
226
227
228
229
|
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: recent_docs.cxx,v $
*
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2005-09-07 19:41:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#include <cppunit/simpleheader.hxx>
#include "systemshell.hxx"
#include "osl/file.hxx"
#include "osl/security.hxx"
#include "rtl/ustring.hxx"
#include <stdlib.h>
#include <iostream>
//########################################
using namespace osl;
using namespace rtl;
namespace syssh = SystemShell;
//########################################
const OUString SXW_MIME_TYPE = OUString::createFromAscii("application/vnd.sun.xml.writer");
const OUString SXC_MIME_TYPE = OUString::createFromAscii("application/vnd.sun.xml.calc");
const OUString SXI_MIME_TYPE = OUString::createFromAscii("application/vnd.sun.xml.impress");
const OUString SXD_MIME_TYPE = OUString::createFromAscii("application/vnd.sun.xml.draw");
const OUString SXM_MIME_TYPE = OUString::createFromAscii("application/vnd.sun.xml.math");
class Test_AddToRecentDocs : public CppUnit::TestFixture
{
public:
Test_AddToRecentDocs()
{
}
//------------------------------------------------
void test_existing_recently_used_file_with_valid_xml()
{
system("rm $HOME/.recently-used");
system("echo '<?xml version=\"1.0\"?>\n<RecentFiles>\n<RecentItem>\n<URI>file:///home/federico/gedit.txt</URI>\n<Mime-Type>text/plain</Mime-Type>\n<Timestamp>1046485966</Timestamp>\n<Groups>\n<Group>gedit</Group>\n</Groups>\n</RecentItem>\n</RecentFiles>' > $HOME/.recently-used");
rtl::OUString url = rtl::OUString::createFromAscii("file:///home_athene/test.sxw");
syssh::AddToRecentDocumentList(url, SXW_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxc");
syssh::AddToRecentDocumentList(url, SXC_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxi");
syssh::AddToRecentDocumentList(url, SXI_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxd");
syssh::AddToRecentDocumentList(url, SXD_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxm");
syssh::AddToRecentDocumentList(url, SXM_MIME_TYPE);
}
//------------------------------------------------
void test_existing_recently_used_file_with_invalid_xml()
{
system("rm $HOME/.recently-used");
system("echo '<?xml version=\"1.0\"?>\n<RecentFiles>\n<RecentItem>\n<URI>file:///home/federico/gedit.txt</URI>\n<Mime-Type>text/plain</Mime-Type>\n<Timestamp>1046485966</Timestamp>\n<Groups>\n<Group>gedit</Group>\n</Groups>\n<RecentItem>\n<URI>file:///home/federico/gedit2.txt</URI>\n<Mime-Type>text/plain</Mime-Type>\n<Timestamp>1046485966</Timestamp>\n<Groups>\n<Group>gedit</Group>\n</Groups>\n</RecentItem>\n</RecentFiles>' > $HOME/.recently-used");
rtl::OUString url = rtl::OUString::createFromAscii("file:///home_athene/test.sxw");
syssh::AddToRecentDocumentList(url, SXW_MIME_TYPE);
}
//------------------------------------------------
void test_non_existing_recently_used_file()
{
int ret = system("rm $HOME/.recently-used");
rtl::OUString url = rtl::OUString::createFromAscii("file:///home_athene/test.sxw");
syssh::AddToRecentDocumentList(url, SXW_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxc");
syssh::AddToRecentDocumentList(url, SXC_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxi");
syssh::AddToRecentDocumentList(url, SXI_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxd");
syssh::AddToRecentDocumentList(url, SXD_MIME_TYPE);
url = rtl::OUString::createFromAscii("file:///home_athene/test.sxm");
syssh::AddToRecentDocumentList(url, SXM_MIME_TYPE);
ret = system("ls $HOME/.recently-used");
CPPUNIT_ASSERT_MESSAGE(".recently-used doesn't exist", 0 == ret);
}
//------------------------------------------------
OUString get_recently_used_url()
{
Security sec;
OUString recently_used_url;
CPPUNIT_ASSERT_MESSAGE("cannot get user home directory", sec.getHomeDir(recently_used_url));
if ((recently_used_url.getLength() > 0) &&
('/' != recently_used_url.pData->buffer[recently_used_url.getLength() - 1]))
recently_used_url += rtl::OUString::createFromAscii("/");
recently_used_url += rtl::OUString::createFromAscii(".recently-used");
return recently_used_url;
}
//------------------------------------------------
void read_recently_used(void* buffer, size_t size)
{
File ruf(get_recently_used_url());
FileBase::RC rc = ruf.open(OpenFlag_Read);
CPPUNIT_ASSERT_MESSAGE("Cannot open ~/.recently-used", FileBase::E_None == rc);
sal_uInt64 read;
ruf.read(buffer, size, read);
ruf.close();
CPPUNIT_ASSERT_MESSAGE("Cannot read .recently-used", (read > 0));
}
//------------------------------------------------
void test_existing_recently_used_file_without_xml()
{
// remove an existing .recently-used file
// create a new one with non xml data
system("rm $HOME/.recently-used");
system("date > $HOME/.recently-used");
char cnt_before[128];
memset(cnt_before, 0, sizeof(cnt_before));
read_recently_used(cnt_before, sizeof(cnt_before));
OUString url = OUString::createFromAscii("file:///home_athene/test.sxw");
syssh::AddToRecentDocumentList(url, SXW_MIME_TYPE);
char cnt_after[128];
memset(cnt_after, 0, sizeof(cnt_after));
read_recently_used(cnt_after, sizeof(cnt_after));
CPPUNIT_ASSERT_MESSAGE(".recently-used unexpectly touched", (0 == strcmp(cnt_before, cnt_after)));
}
//------------------------------------------------
void test_existing_recently_used_with_unknown_xml()
{
system("rm $HOME/.recently-used");
char* xml_unknown = "<?xml version=\"1.0\"?>\n<test>test</test>";
char cmd[256];
sprintf(cmd, "echo '%s' > $HOME/.recently-used", xml_unknown);
system(cmd);
OUString url = OUString::createFromAscii("file:///home_athene/test.sxw");
syssh::AddToRecentDocumentList(url, SXW_MIME_TYPE);
char buffer[256];
memset(buffer, 0, sizeof(buffer));
read_recently_used(buffer, sizeof(buffer));
CPPUNIT_ASSERT_MESSAGE("Unexpected recently-used content", (0 == strncmp(xml_unknown, buffer, strlen(xml_unknown))));
}
//------------------------------------------------
void test_existing_empty_recently_used_file()
{
system("rm $HOME/.recently-used");
system("touch $HOME/.recently-used");
OUString url = OUString::createFromAscii("file:///home_athene/test.sxw");
syssh::AddToRecentDocumentList(url, SXW_MIME_TYPE);
char buffer[256];
memset(buffer, 0, sizeof(buffer));
read_recently_used(buffer, sizeof(buffer));
char* expected = "<?xml version=\"1.0\"?>\n<RecentFiles>";
CPPUNIT_ASSERT_MESSAGE("Unexpected recently-used content", (0 == strncmp(buffer, expected, strlen(expected))));
}
//------------------------------------------------
CPPUNIT_TEST_SUITE(Test_AddToRecentDocs);
CPPUNIT_TEST(test_existing_recently_used_file_with_valid_xml);
CPPUNIT_TEST(test_non_existing_recently_used_file);
CPPUNIT_TEST(test_existing_recently_used_file_without_xml);
CPPUNIT_TEST(test_existing_recently_used_with_unknown_xml);
CPPUNIT_TEST(test_existing_empty_recently_used_file);
CPPUNIT_TEST(test_existing_recently_used_file_with_invalid_xml);
CPPUNIT_TEST_SUITE_END();
};
//#####################################
// register test suites
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(Test_AddToRecentDocs, "Test_AddToRecentDocs");
NOADDITIONAL;
|