bump product version to 7.2.5.1
[LibreOffice.git] / unotest / source / cpp / directories.cxx
blob93bcd4daed6d43f5bf5e2f04e003b3bfdf68be0e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #include <sal/config.h>
12 #include <cppunit/TestAssert.h>
13 #include <osl/file.hxx>
14 #include <unotest/directories.hxx>
16 namespace
18 OUString getFileURLFromSystemPath(OUString const& path)
20 OUString url;
21 osl::FileBase::RC e = osl::FileBase::getFileURLFromSystemPath(path, url);
22 CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
23 if (!url.endsWith("/"))
25 url += "/";
27 return url;
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: */