2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package com
.sun
.star
.lib
.util
;
22 import java
.net
.MalformedURLException
;
24 import org
.junit
.Test
;
25 import static org
.junit
.Assert
.*;
27 public final class NativeLibraryLoader_Test
{
28 @Test public void testEncoded() throws MalformedURLException
{
29 File dir
= new File(System
.getProperty("user.dir"));
30 File subdir
= new File(dir
, "with space");
31 File file1
= new File(subdir
, "file");
33 String fileUrl
= dir
.toURI().toURL().toString();
34 if (!fileUrl
.endsWith("/")) {
37 fileUrl
+= "with%20space/file";
38 final URL url
= new URL(fileUrl
);
40 File file2
= NativeLibraryLoader
.getResource(
43 public URL
getResource(String name
) {
48 assertEquals("Files are equal", file1
, file2
);
51 @Test public void testUnencoded() throws MalformedURLException
{
52 File dir
= new File(System
.getProperty("user.dir"));
53 File subdir
= new File(dir
, "with space");
54 File file1
= new File(subdir
, "file");
56 String fileUrl
= dir
.toURI().toURL().toString();
57 if (!fileUrl
.endsWith("/")) {
60 fileUrl
+= "with space/file";
61 final URL url
= new URL(fileUrl
);
63 File file2
= NativeLibraryLoader
.getResource(
66 public URL
getResource(String name
) {
71 assertEquals("Files are equal", file1
, file2
);