summaryrefslogtreecommitdiff
path: root/sal/qa/osl/getsystempathfromfileurl/test-getsystempathfromfileurl.cxx
blob: 6c16a3e5bd48d280c875557e3c9486f3a3d66d15 (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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <sal/config.h>

#include <cppunit/TestAssert.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h>

#include <osl/file.hxx>

#if defined WNT
#define MY_PATH_IN "/c:/foo/bar"
#define MY_PATH_OUT "c:\\foo\\bar"
#define MY_PATH_OUT_CONT MY_PATH_OUT "\\"
#define MY_PATH_OUT_REL "foo\\bar"
#else
#define MY_PATH_IN "/foo/bar"
#define MY_PATH_OUT MY_PATH_IN
#define MY_PATH_OUT_CONT MY_PATH_OUT "/"
#define MY_PATH_OUT_REL "foo/bar"
#endif

namespace {

class Test: public CppUnit::TestFixture {
private:
    CPPUNIT_TEST_SUITE(Test);
    CPPUNIT_TEST(testBadScheme);
    CPPUNIT_TEST(testNoScheme);
    CPPUNIT_TEST(testBadAuthority);
    CPPUNIT_TEST(testLocalhost1Authority);
    CPPUNIT_TEST(testLocalhost2Authority);
    CPPUNIT_TEST(testLocalhost3Authority);
    CPPUNIT_TEST(testNoAuthority);
    CPPUNIT_TEST(testEmptyPath);
    CPPUNIT_TEST(testHomeAbbreviation);
    CPPUNIT_TEST(testOtherHomeAbbreviation);
    CPPUNIT_TEST(testRelative);
    CPPUNIT_TEST(testEscape);
    CPPUNIT_TEST(testBadEscape2f);
    CPPUNIT_TEST(testBadEscape2F);
    CPPUNIT_TEST(testBad0);
    CPPUNIT_TEST(testBadEscape0);
    CPPUNIT_TEST(testBadQuery);
    CPPUNIT_TEST(testBadFragment);
    CPPUNIT_TEST_SUITE_END();

    void testBadScheme();
    void testNoScheme();
    void testBadAuthority();
    void testLocalhost1Authority();
    void testLocalhost2Authority();
    void testLocalhost3Authority();
    void testNoAuthority();
    void testEmptyPath();
    void testHomeAbbreviation();
    void testOtherHomeAbbreviation();
    void testRelative();
    void testEscape();
    void testBadEscape2f();
    void testBadEscape2F();
    void testBad0();
    void testBadEscape0();
    void testBadQuery();
    void testBadFragment();
};

void Test::testBadScheme() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL("foo:bar", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

void Test::testNoScheme() {
#if !defined WNT //TODO
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL("//" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString(MY_PATH_OUT), p);
#endif
}

void Test::testBadAuthority() {
#if defined UNX
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://baz" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
#endif
}

void Test::testLocalhost1Authority() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://localhost" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString(MY_PATH_OUT), p);
}

void Test::testLocalhost2Authority() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://LOCALHOST" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString(MY_PATH_OUT), p);
}

void Test::testLocalhost3Authority() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://127.0.0.1" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString(MY_PATH_OUT), p);
}

void Test::testNoAuthority() {
#if !defined WNT //TODO
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL("file:" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString(MY_PATH_OUT), p);
#endif
}

void Test::testEmptyPath() {
#if defined UNX
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL("file://", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString("/"), p);
#endif
}

void Test::testHomeAbbreviation() {
#if defined UNX
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL("file:///~", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
        // could theoretically fail due to osl::Security::getHomeDir problem
    e = osl::FileBase::getSystemPathFromFileURL("file:///~/foo%2525/bar", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
        // could theoretically fail due to osl::Security::getHomeDir problem
    CPPUNIT_ASSERT(p.endsWith("/foo%25/bar"));
#endif
}

void Test::testOtherHomeAbbreviation() {
#if defined UNX
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file:///~baz" MY_PATH_IN, p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e); // not supported for now
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
#endif
}

void Test::testRelative() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL("foo/bar", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT(p.endsWith(MY_PATH_OUT_REL));
}

void Test::testEscape() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://" MY_PATH_IN "/b%61z", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
    CPPUNIT_ASSERT_EQUAL(OUString(MY_PATH_OUT_CONT "baz"), p);
}

void Test::testBadEscape2f() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://" MY_PATH_IN "/b%2fz", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

void Test::testBadEscape2F() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://" MY_PATH_IN "/b%2Fz", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

void Test::testBad0() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        OUString(RTL_CONSTASCII_USTRINGPARAM("file://" MY_PATH_IN "/b\x00z")),
        p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

void Test::testBadEscape0() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://" MY_PATH_IN "/b%00z", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

void Test::testBadQuery() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://" MY_PATH_IN "?baz", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

void Test::testBadFragment() {
    OUString p;
    auto e = osl::FileBase::getSystemPathFromFileURL(
        "file://" MY_PATH_IN "#baz", p);
    CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_INVAL, e);
    CPPUNIT_ASSERT_EQUAL(OUString(), p);
}

CPPUNIT_TEST_SUITE_REGISTRATION(Test);

}

CPPUNIT_PLUGIN_IMPLEMENT();

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */