1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #include <sal/config.h>
12 #include <cppunit/TestAssert.h>
13 #include <osl/file.hxx>
14 #include <unotest/directories.hxx>
18 OUString
getFileURLFromSystemPath(OUString
const& path
)
21 osl::FileBase::RC e
= osl::FileBase::getFileURLFromSystemPath(path
, url
);
22 CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None
, e
);
23 if (!url
.endsWith("/"))
31 test::Directories::Directories()
33 const char* pSrcRoot
= getenv("SRC_ROOT");
34 CPPUNIT_ASSERT_MESSAGE("SRC_ROOT env variable not set", pSrcRoot
!= nullptr);
35 CPPUNIT_ASSERT_MESSAGE("SRC_ROOT env variable not set", pSrcRoot
[0] != 0);
36 const char* pWorkdirRoot
= getenv("WORKDIR_FOR_BUILD");
37 CPPUNIT_ASSERT_MESSAGE("$WORKDIR_FOR_BUILD env variable not set", pWorkdirRoot
!= nullptr);
38 CPPUNIT_ASSERT_MESSAGE("$WORKDIR_FOR_BUILD env variable not set", pWorkdirRoot
[0] != 0);
39 m_aSrcRootPath
= OUString::createFromAscii(pSrcRoot
);
40 m_aSrcRootURL
= getFileURLFromSystemPath(m_aSrcRootPath
);
42 m_aWorkdirRootPath
= OUString::createFromAscii(pWorkdirRoot
);
43 m_aWorkdirRootURL
= getFileURLFromSystemPath(m_aWorkdirRootPath
);
46 OUString
test::Directories::getURLFromSrc(std::u16string_view rPath
) const
48 return m_aSrcRootURL
+ rPath
;
51 OUString
test::Directories::getPathFromSrc(std::u16string_view rPath
) const
53 return m_aSrcRootPath
+ rPath
;
56 OUString
test::Directories::getURLFromWorkdir(std::u16string_view rPath
) const
58 return m_aWorkdirRootURL
+ rPath
;
61 OUString
test::Directories::getPathFromWorkdir(std::u16string_view rPath
) const
63 return m_aWorkdirRootPath
+ rPath
;
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */