LCOV - code coverage report
Current view: top level - unotest/source/cpp - toabsolutefileurl.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 11 14 78.6 %
Date: 2012-08-25 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 6 30 20.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*
       3                 :            :  * This file is part of the LibreOffice project.
       4                 :            :  *
       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                 :            :  *
       9                 :            :  * This file incorporates work covered by the following license notice:
      10                 :            :  *
      11                 :            :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12                 :            :  *   contributor license agreements. See the NOTICE file distributed
      13                 :            :  *   with this work for additional information regarding copyright
      14                 :            :  *   ownership. The ASF licenses this file to you under the Apache
      15                 :            :  *   License, Version 2.0 (the "License"); you may not use this file
      16                 :            :  *   except in compliance with the License. You may obtain a copy of
      17                 :            :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18                 :            :  */
      19                 :            : 
      20                 :            : #include "sal/config.h"
      21                 :            : 
      22                 :            : #include "com/sun/star/uno/Reference.hxx"
      23                 :            : #include "com/sun/star/uno/RuntimeException.hpp"
      24                 :            : #include "com/sun/star/uno/XInterface.hpp"
      25                 :            : #include "osl/file.hxx"
      26                 :            : #include "osl/process.h"
      27                 :            : #include "rtl/ustring.hxx"
      28                 :            : #include "unotest/toabsolutefileurl.hxx"
      29                 :            : 
      30                 :            : namespace {
      31                 :            : 
      32                 :            : namespace css = com::sun::star;
      33                 :            : 
      34                 :            : }
      35                 :            : 
      36                 :            : namespace test {
      37                 :            : 
      38                 :          6 : rtl::OUString toAbsoluteFileUrl(rtl::OUString const & relativePathname) {
      39                 :          6 :     rtl::OUString cwd;
      40         [ +  - ]:          6 :     oslProcessError e1 = osl_getProcessWorkingDir(&cwd.pData);
      41         [ -  + ]:          6 :     if (e1 != osl_Process_E_None) {
      42                 :            :         throw css::uno::RuntimeException(
      43                 :            :             (rtl::OUString(
      44                 :            :                 RTL_CONSTASCII_USTRINGPARAM(
      45                 :            :                     "osl_getProcessWorkingDir failed with ")) +
      46                 :            :              rtl::OUString::valueOf(static_cast< sal_Int32 >(e1))),
      47 [ #  # ][ #  # ]:          0 :             css::uno::Reference< css::uno::XInterface >());
      48                 :            :     }
      49                 :          6 :     rtl::OUString url;
      50                 :            :     osl::FileBase::RC e2 = osl::FileBase::getFileURLFromSystemPath(
      51         [ +  - ]:          6 :         relativePathname, url);
      52         [ -  + ]:          6 :     if (e2 != osl::FileBase::E_None) {
      53                 :            :         throw css::uno::RuntimeException(
      54                 :            :             (rtl::OUString(
      55                 :            :                 RTL_CONSTASCII_USTRINGPARAM(
      56                 :            :                     "osl::FileBase::getFileURLFromSystemPath(")) +
      57                 :            :              relativePathname +
      58                 :            :              rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(") failed with ")) +
      59                 :            :              rtl::OUString::valueOf(static_cast< sal_Int32 >(e2))),
      60 [ #  # ][ #  # ]:          0 :             css::uno::Reference< css::uno::XInterface >());
                 [ #  # ]
      61                 :            :     }
      62                 :          6 :     rtl::OUString absUrl;
      63         [ +  - ]:          6 :     e2 = osl::FileBase::getAbsoluteFileURL(cwd, url, absUrl);
      64         [ -  + ]:          6 :     if (e2 != osl::FileBase::E_None) {
      65                 :            :         throw css::uno::RuntimeException(
      66                 :            :             (rtl::OUString(
      67                 :            :                 RTL_CONSTASCII_USTRINGPARAM(
      68                 :            :                     "osl::FileBase::getAbsoluteFileURL(")) +
      69                 :            :              cwd + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(", ")) + url +
      70                 :            :              rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(") failed with ")) +
      71                 :            :              rtl::OUString::valueOf(static_cast< sal_Int32 >(e2))),
      72 [ #  # ][ #  # ]:          0 :             css::uno::Reference< css::uno::XInterface >());
         [ #  # ][ #  # ]
      73                 :            :     }
      74                 :          6 :     return absUrl;
      75                 :            : }
      76                 :            : 
      77                 :            : }
      78                 :            : 
      79                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10