/* -*- 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 #include "com/sun/star/lang/XComponent.hpp" #include "com/sun/star/lang/XMultiComponentFactory.hpp" #include "com/sun/star/uno/Reference.hxx" #include "com/sun/star/uno/XComponentContext.hpp" #include "com/sun/star/uri/ExternalUriReferenceTranslator.hpp" #include "com/sun/star/uri/UriReferenceFactory.hpp" #include "com/sun/star/uri/VndSunStarPkgUrlReferenceFactory.hpp" #include "com/sun/star/uri/XExternalUriReferenceTranslator.hpp" #include "com/sun/star/uri/XUriReference.hpp" #include "com/sun/star/uri/XUriReferenceFactory.hpp" #include "com/sun/star/uri/XVndSunStarExpandUrlReference.hpp" #include "com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.hpp" #include "com/sun/star/uri/XVndSunStarScriptUrlReference.hpp" #include "com/sun/star/util/XMacroExpander.hpp" #include "cppuhelper/bootstrap.hxx" #include "cppunit/TestAssert.h" #include "cppunit/TestFixture.h" #include "cppunit/extensions/HelperMacros.h" #include "cppunit/plugin/TestPlugIn.h" #include "osl/diagnose.h" #include "rtl/string.h" #include "rtl/string.hxx" #include "rtl/textenc.h" #include "rtl/ustrbuf.hxx" #include "rtl/ustring.hxx" #include "sal/types.h" #include #include namespace { #define TEST_ASSERT_EQUAL(token1, token2, token3, expected, actual) \ CPPUNIT_ASSERT_MESSAGE( \ createTestAssertEqualMessage( \ token1, token2, token3, #expected, #actual, expected, actual). \ getStr(), \ (actual) == (expected)) template< typename T > void append( rtl::OUStringBuffer & buffer, T const & value) { buffer.append(value); } template<> void append(rtl::OUStringBuffer & buffer, bool const & value) { buffer.append(static_cast< sal_Bool >(value)); } template<> void append(rtl::OUStringBuffer & buffer, std::size_t const & value) { buffer.append(static_cast< sal_Int32 >(value)); } template<> void append(rtl::OUStringBuffer & buffer, char const * const & value) { buffer.appendAscii(value); } template< typename T1, typename T2, typename T3, typename T4 > rtl::OString createTestAssertEqualMessage( char const * token1, T1 const & token2, T2 const & token3, char const * expectedExpr, char const * actualExpr, T3 const & expected, T4 const & actual) { rtl::OUStringBuffer buf; buf.appendAscii(token1); buf.append(static_cast< sal_Unicode >('|')); append(buf, token2); buf.append(static_cast< sal_Unicode >('|')); append(buf, token3); buf.appendAscii(RTL_CONSTASCII_STRINGPARAM(": TEST_ASSERT_EQUAL(")); buf.appendAscii(expectedExpr); buf.appendAscii(RTL_CONSTASCII_STRINGPARAM(", ")); buf.appendAscii(actualExpr); buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("): <")); append(buf, expected); buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("> != <")); append(buf, actual); buf.append(static_cast< sal_Unicode >('>')); return rtl::OUStringToOString( buf.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US); } class Test: public CppUnit::TestFixture { public: virtual void setUp(); virtual void tearDown(); void testParse(); void testMakeAbsolute(); void testMakeRelative(); void testVndSunStarExpand(); void testVndSunStarScript(); void testTranslator(); void testPkgUrlFactory(); CPPUNIT_TEST_SUITE(Test); CPPUNIT_TEST(testParse); CPPUNIT_TEST(testMakeAbsolute); CPPUNIT_TEST(testMakeRelative); CPPUNIT_TEST(testVndSunStarExpand); CPPUNIT_TEST(testVndSunStarScript); CPPUNIT_TEST(testTranslator); CPPUNIT_TEST(testPkgUrlFactory); CPPUNIT_TEST_SUITE_END(); private: css::uno::Reference< css::uno::XComponentContext > m_context; css::uno::Reference< css::uri::XUriReferenceFactory > m_uriFactory; }; void Test::setUp() { m_context = cppu::defaultBootstrap_InitialComponentContext(); m_uriFactory = css::uri::UriReferenceFactory::create(m_context); } void Test::tearDown() { m_uriFactory.clear(); css::uno::Reference< css::lang::XComponent >( m_context, css::uno::UNO_QUERY_THROW)->dispose(); } void Test::testParse() { struct Data { char const * uriReference; char const * scheme; char const * schemeSpecificPart; bool isHierarchical; char const * authority; char const * path; bool hasRelativePath; sal_Int32 pathSegmentCount; char const * pathSegment0; char const * pathSegment1; char const * pathSegment2; char const * pathSegment3; char const * pathSegment4; char const * query; char const * fragment; }; Data data[] = { { "", 0, "", true, 0, "", true, 0, "", "", "", "", "", 0, 0 }, { "scheme:", 0, 0, false, 0, 0, false, 0, 0, 0, 0, 0, 0, 0, 0 }, { "scheme:/", "scheme", "/", true, 0, "/", false, 1, "", "", "", "", "", 0, 0 }, { "scheme://", "scheme", "//", true, "", "", false, 0, "", "", "", "", "", 0, 0 }, { "scheme:///", "scheme", "///", true, "", "/", false, 1, "", "", "", "", "", 0, 0 }, { "scheme:////", "scheme", "////", true, "", "//", false, 2, "", "", "", "", "", 0, 0 }, { "scheme:////", "scheme", "////", true, "", "//", false, 2, "", "", "", "", "", 0, 0 }, { "scheme:#", 0, 0, false, 0, 0, false, 0, 0, 0, 0, 0, 0, 0, 0 }, { "scheme:?", "scheme", "?", false, 0, "?", false, 0, "", "", "", "", "", 0, 0 }, { "/", 0, "/", true, 0, "/", false, 1, "", "", "", "", "", 0, 0 }, { "//", 0, "//", true, "", "", false, 0, "", "", "", "", "", 0, 0 }, { "///", 0, "///", true, "", "/", false, 1, "", "", "", "", "", 0, 0 }, { "////", 0, "////", true, "", "//", false, 2, "", "", "", "", "", 0, 0 } }; for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { css::uno::Reference< css::uri::XUriReference > uriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].uriReference))); CPPUNIT_ASSERT(uriRef.is() == (data[i].schemeSpecificPart != 0)); if (uriRef.is()) { TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].uriReference), uriRef->getUriReference()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].scheme != 0, uriRef->isAbsolute()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii( data[i].scheme == 0 ? "" : data[i].scheme), uriRef->getScheme()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].schemeSpecificPart), uriRef->getSchemeSpecificPart()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].isHierarchical, static_cast< bool >(uriRef->isHierarchical())); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].authority != 0, uriRef->hasAuthority()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii( data[i].authority == 0 ? "" : data[i].authority), uriRef->getAuthority()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].path), uriRef->getPath()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].hasRelativePath, static_cast< bool >(uriRef->hasRelativePath())); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].pathSegmentCount, uriRef->getPathSegmentCount()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString(""), uriRef->getPathSegment(-1)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].pathSegment0), uriRef->getPathSegment(0)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].pathSegment1), uriRef->getPathSegment(1)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].pathSegment2), uriRef->getPathSegment(2)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].pathSegment3), uriRef->getPathSegment(3)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].pathSegment4), uriRef->getPathSegment(4)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString(), uriRef->getPathSegment(5)); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].query != 0, uriRef->hasQuery()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii( data[i].query == 0 ? "" : data[i].query), uriRef->getQuery()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, data[i].fragment != 0, uriRef->hasFragment()); TEST_ASSERT_EQUAL( "testParse", i, data[i].uriReference, rtl::OUString::createFromAscii( data[i].fragment == 0 ? "" : data[i].fragment), uriRef->getFragment()); } } } void Test::testMakeAbsolute() { struct Data { char const * baseUriReference; char const * uriReference; bool processSpecialBaseSegments; css::uri::RelativeUriExcessParentSegments excessParentSegments; char const * absolute; }; Data data[] = { // The following tests are taken from RFC 2396, Appendix C: { "http://a/b/c/d;p?q", "g:h", true, css::uri::RelativeUriExcessParentSegments_ERROR, "g:h" }, { "http://a/b/c/d;p?q", "g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g" }, { "http://a/b/c/d;p?q", "./g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g" }, { "http://a/b/c/d;p?q", "g/", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g/" }, { "http://a/b/c/d;p?q", "//g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://g" }, { "http://a/b/c/d;p?q", "?y", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/?y" }, { "http://a/b/c/d;p?q", "g?y", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g?y" }, { "http://a/b/c/d;p?q", "#s", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/d;p?q#s" }, { "http://a/b/c/d;p?q", "g#s", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g#s" }, { "http://a/b/c/d;p?q", "g?y#s", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g?y#s" }, { "http://a/b/c/d;p?q", ";x", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/;x" }, { "http://a/b/c/d;p?q", "g;x", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g;x" }, { "http://a/b/c/d;p?q", "g;x?y#s", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g;x?y#s" }, { "http://a/b/c/d;p?q", ".", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/" }, { "http://a/b/c/d;p?q", "./", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/" }, { "http://a/b/c/d;p?q", "..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/" }, { "http://a/b/c/d;p?q", "../", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/" }, { "http://a/b/c/d;p?q", "../g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/g" }, { "http://a/b/c/d;p?q", "../..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/" }, { "http://a/b/c/d;p?q", "../../", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/" }, { "http://a/b/c/d;p?q", "../../g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/g" }, { "http://a/b/c/d;p?q", "", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/d;p?q" }, { "http://a/b/c/d;p?q", "../../../g", true, css::uri::RelativeUriExcessParentSegments_ERROR, 0 }, { "http://a/b/c/d;p?q", "../../../g", true, css::uri::RelativeUriExcessParentSegments_RETAIN, "http://a/../g" }, { "http://a/b/c/d;p?q", "../../../g", true, css::uri::RelativeUriExcessParentSegments_REMOVE, "http://a/g" }, { "http://a/b/c/d;p?q", "../../../../g", true, css::uri::RelativeUriExcessParentSegments_ERROR, 0 }, { "http://a/b/c/d;p?q", "../../../../g", true, css::uri::RelativeUriExcessParentSegments_RETAIN, "http://a/../../g" }, { "http://a/b/c/d;p?q", "../../../../g", true, css::uri::RelativeUriExcessParentSegments_REMOVE, "http://a/g" }, { "http://a/b/c/d;p?q", "/./g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/./g" }, { "http://a/b/c/d;p?q", "/../g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/../g" }, { "http://a/b/c/d;p?q", "g.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g." }, { "http://a/b/c/d;p?q", ".g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/.g" }, { "http://a/b/c/d;p?q", "g..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g.." }, { "http://a/b/c/d;p?q", "..g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/..g" }, { "http://a/b/c/d;p?q", "./../g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/g" }, { "http://a/b/c/d;p?q", "./g/.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g/" }, { "http://a/b/c/d;p?q", "g/./h", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g/h" }, { "http://a/b/c/d;p?q", "g/../h", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/h" }, { "http://a/b/c/d;p?q", "g;x=1/./y", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g;x=1/y" }, { "http://a/b/c/d;p?q", "g;x=1/../y", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/y" }, { "http://a/b/c/d;p?q", "g?y/./x", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g?y/./x" }, { "http://a/b/c/d;p?q", "g?y/../x", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g?y/../x" }, { "http://a/b/c/d;p?q", "g#s/./x", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g#s/./x" }, { "http://a/b/c/d;p?q", "g#s/../x", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http://a/b/c/g#s/../x" }, { "http.://a/b/c/d;p?q", "http.:g", true, css::uri::RelativeUriExcessParentSegments_ERROR, "http.:g" }, { "scheme://a", "", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", ".", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/../", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "././x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "././x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "./././x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a/", "", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", ".", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/../", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "././x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "././x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/", "./././x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b" }, { "scheme://a/b", ".", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/../", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "././x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "././x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b", "./././x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/" }, { "scheme://a/b/", "", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", ".", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/../", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./././x/..", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./x/../.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./x/.././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "././x/.././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "././x/../././", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a/b/", "./././x/../././.", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a/b/" }, { "scheme://a#s", "", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a" }, { "scheme://a", "?q", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a?q" }, { "scheme://a#s", "?q", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a?q" }, { "scheme://a", "#s", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a#s" }, { "scheme://a#s1", "#s2", true, css::uri::RelativeUriExcessParentSegments_ERROR, "scheme://a#s2" } }; for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { css::uno::Reference< css::uri::XUriReference > baseUriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].baseUriReference))); CPPUNIT_ASSERT(baseUriRef.is()); css::uno::Reference< css::uri::XUriReference > uriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].uriReference))); CPPUNIT_ASSERT(uriRef.is()); css::uno::Reference< css::uri::XUriReference > absolute( m_uriFactory->makeAbsolute( baseUriRef, uriRef, data[i].processSpecialBaseSegments, data[i].excessParentSegments)); TEST_ASSERT_EQUAL( "testMakeAbsolute", i, data[i].uriReference, data[i].absolute != 0, absolute.is()); if (absolute.is()) { TEST_ASSERT_EQUAL( "testMakeAbsolute", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].absolute), absolute->getUriReference()); } } } void Test::testMakeRelative() { struct Data { char const * baseUriReference; char const * uriReference; bool preferAuthorityOverRelativePath; bool preferAbsoluteOverRelativePath; bool encodeRetainedSpecialSegments; char const * relative; char const * absolute; }; Data data[] = { { "scheme1://a/b/c", "scheme2://a/b/c?q#s", true, true, false, "scheme2://a/b/c?q#s", 0 }, { "scheme://a/b/c", "scheme:a/b/c?q#s", true, true, false, "scheme:a/b/c?q#s", 0 }, { "scheme://a/b/c", "", true, true, false, "", "scheme://a/b/c" }, { "scheme://a/b/c", "//d/e/f", true, true, false, "//d/e/f", "scheme://d/e/f" }, { "scheme://a/b/c", "./e?q#s", true, true, false, "./e?q#s", "scheme://a/b/e?q#s" }, { "scheme://a/b", "scheme://a?q", true, true, false, "/?q", "scheme://a/?q" }, { "scheme://a/b", "scheme://a?q", true, false, false, "?q", "scheme://a/?q" }, { "scheme://a", "scheme://a?q", true, true, false, "?q", 0 }, { "scheme://a/", "scheme://a?q", true, true, false, "?q", "scheme://a/?q" }, { "scheme://a", "scheme://a/?q", true, true, false, "?q", "scheme://a?q" }, { "scheme://a/", "scheme://a/?q", true, true, false, "?q", "scheme://a/?q" }, { "scheme://a?q", "scheme://a?q", true, true, false, "", 0 }, { "scheme://a/?q", "scheme://a?q", true, true, false, "", "scheme://a/?q" }, { "scheme://a?q", "scheme://a/?q", true, true, false, "", "scheme://a?q" }, { "scheme://a/?q", "scheme://a/?q", true, true, false, "", 0 }, { "scheme://a/b/c/d", "scheme://a//", true, true, false, "//a//", 0 }, { "scheme://a/b/c/d", "scheme://a//", false, true, false, "../..//", 0 }, { "scheme://a/b/c/d", "scheme://a//", true, false, false, "../..//", 0 }, { "scheme://a/b/c/d", "scheme://a//", false, false, false, "../..//", 0 }, { "scheme://a/b/c/d", "scheme://a/e", true, true, false, "/e", 0 }, { "scheme://a/b/c/d", "scheme://a/e", true, false, false, "../../e", 0 }, { "scheme://a/b/c/d/e", "scheme://a/b/f", true, true, false, "../../f", 0 }, { "scheme://a/b/c/d/e", "scheme://a/b", true, true, false, "/b", 0 }, { "scheme://a/b/c/d/e", "scheme://a/b", true, false, false, "../../../b", 0 }, { "scheme://a/b/c/d/e", "scheme://a/b/", true, true, false, "../..", 0 }, { "scheme://a/b/c/d/e", "scheme://a/b/c", true, true, false, "../../c", 0 }, { "scheme://a/b/c/d/e", "scheme://a/b/c/", true, true, false, "..", 0 }, { "scheme://a/b/", "scheme://a/b/c/d", true, true, false, "c/d", 0 }, { "scheme://a/b/", "scheme://a/b/c/d/", true, true, false, "c/d/", 0 }, { "scheme://a/b/c", "scheme://a/b//", true, true, false, ".//", 0 }, { "scheme://a/b/c", "scheme://a/b//d", true, true, false, ".//d", 0 }, { "scheme://a/b/c", "scheme://a/b//d//", true, true, false, ".//d//", 0 }, { "scheme://a/b/c", "scheme://a/b/d+:", true, true, false, "./d+:", 0 }, { "scheme://a/b/c", "scheme://a/b/+d:", true, true, false, "+d:", 0 }, { "scheme://a/b/c", "scheme://a/b/d#e:f", true, true, false, "d#e:f", 0 }, { "scheme://a/b/c/", "scheme://a/b/../d/.e/.", true, true, false, "../../d/.e/.", "scheme://a/d/.e/" }, { "scheme://a/b/c/", "scheme://a/b/../d/.e/.", true, true, true, "../%2E%2E/d/.e/%2E", "scheme://a/b/%2E%2E/d/.e/%2E" }, { "scheme://auth/a/b", "scheme://auth//c/d", true, true, false, "//auth//c/d", 0 }, { "scheme://auth/a/b", "scheme://auth//c/d", false, true, false, "..//c/d", 0 }, { "scheme://auth/a/b", "scheme://auth/c/d", true, true, false, "/c/d", 0 }, { "scheme://auth/a/b", "scheme://auth/c/d", true, false, false, "../c/d", 0 } }; for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { css::uno::Reference< css::uri::XUriReference > baseUriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].baseUriReference))); CPPUNIT_ASSERT(baseUriRef.is()); css::uno::Reference< css::uri::XUriReference > uriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].uriReference))); CPPUNIT_ASSERT(uriRef.is()); css::uno::Reference< css::uri::XUriReference > relative( m_uriFactory->makeRelative( baseUriRef, uriRef, data[i].preferAuthorityOverRelativePath, data[i].preferAbsoluteOverRelativePath, data[i].encodeRetainedSpecialSegments)); TEST_ASSERT_EQUAL( "testMakeRelative", i, data[i].uriReference, data[i].relative != 0, relative.is()); if (relative.is()) { TEST_ASSERT_EQUAL( "testMakeRelative", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].relative), relative->getUriReference()); css::uno::Reference< css::uri::XUriReference > absolute( m_uriFactory->makeAbsolute( baseUriRef, relative, true, css::uri::RelativeUriExcessParentSegments_ERROR)); CPPUNIT_ASSERT(absolute.is()); TEST_ASSERT_EQUAL( "testMakeRelative", i, data[i].uriReference, rtl::OUString::createFromAscii( data[i].absolute == 0 ? data[i].uriReference : data[i].absolute), absolute->getUriReference()); } } } void Test::testVndSunStarExpand() { struct Data { char const * uriReference; char const * expanded; }; Data data[] = { { "vnd.sun.star.expand:", "" }, // liberally accepted { "vnd.sun.star.expand:/", "/" }, // liberally accepted { "vnd.sun.star.expand:%80", 0 }, { "vnd.sun.star.expand:%5C$%5C%24%5C%5C", "$$\\" } }; css::uno::Reference< css::util::XMacroExpander > expander( m_context->getValueByName( rtl::OUString( "/singletons/com.sun.star.util.theMacroExpander")), css::uno::UNO_QUERY_THROW); for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { css::uno::Reference< css::uri::XUriReference > uriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].uriReference))); TEST_ASSERT_EQUAL( "testVndSunStarExpand", i, data[i].uriReference, data[i].expanded != 0, uriRef.is()); if (uriRef.is()) { css::uno::Reference< css::uri::XVndSunStarExpandUrlReference > expandUrl(uriRef, css::uno::UNO_QUERY_THROW); TEST_ASSERT_EQUAL( "testVndSunStarExpand", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].expanded), expandUrl->expand(expander)); } } } void Test::testVndSunStarScript() { struct Parameter { char const * key; char const * value; }; std::size_t const parameterCount = 3; struct Data { char const * uriReference; char const * name; const bool normalized; Parameter parameters[parameterCount]; }; Data data[] = { { "vnd.sun.star.script:", 0, false, {} }, { "vnd.sun.star.script:/", 0, false, {} }, { "vnd.sun.star.script:/abc/def?ghi=jkl&mno=pqr", 0, false, {} }, { "vnd.sun.star.script:abc%3fdef/ghi", "abc?def/ghi", false, {} }, { "vnd.sun.star.script:name?a", 0, false, {} }, { "vnd.sun.star.script:name?a=", "name", true, { { "a", "" }, { "A", 0 } } }, { "vnd.sun.star.script:name?a=&", 0, true, {} }, { "vnd.sun.star.script:name?key1=&%26=%3D&key1=hello", "name", true, { { "key1", "" }, { "key2", 0 }, { "&", "=" } } } }; for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { css::uno::Reference< css::uri::XUriReference > uriRef( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].uriReference))); TEST_ASSERT_EQUAL( "testVndSunStarScript", i, data[i].uriReference, data[i].name != 0, uriRef.is()); if (uriRef.is()) { css::uno::Reference< css::uri::XVndSunStarScriptUrlReference > scriptUrl(uriRef, css::uno::UNO_QUERY_THROW); TEST_ASSERT_EQUAL( "testVndSunStarScript", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].uriReference), scriptUrl->getUriReference()); TEST_ASSERT_EQUAL( "testVndSunStarScript", i, data[i].uriReference, rtl::OUString::createFromAscii(data[i].name), scriptUrl->getName()); rtl::OUString originalReference(uriRef->getUriReference()); for (std::size_t j = 0; j < parameterCount; ++j) { if (data[i].parameters[j].key != 0) { TEST_ASSERT_EQUAL( "testVndSunStarScript", static_cast< double >(i) + static_cast< double >(j) / 10.0, data[i].uriReference, data[i].parameters[j].value != 0, scriptUrl->hasParameter( rtl::OUString::createFromAscii( data[i].parameters[j].key))); TEST_ASSERT_EQUAL( "testVndSunStarScript", static_cast< double >(i) + static_cast< double >(j) / 10.0, data[i].uriReference, rtl::OUString::createFromAscii( data[i].parameters[j].value), scriptUrl->getParameter( rtl::OUString::createFromAscii( data[i].parameters[j].key))); // setting the parameter to its original value should not change // the overall uri reference (provided it was normalized before) if ( data[i].normalized ) { if ( scriptUrl->hasParameter(rtl::OUString::createFromAscii( data[i].parameters[j].key)) ) { scriptUrl->setParameter( rtl::OUString::createFromAscii( data[i].parameters[j].key), scriptUrl->getParameter( rtl::OUString::createFromAscii( data[i].parameters[j].key))); TEST_ASSERT_EQUAL( "testVndSunStarScript", static_cast< double >(i) + static_cast< double >(j) / 10.0, ::rtl::OUString("setParameter"), originalReference, uriRef->getUriReference()); } } } } if ( data[i].normalized ) { scriptUrl->setName(scriptUrl->getName()); TEST_ASSERT_EQUAL( "testVndSunStarScript", i, ::rtl::OUString("setName"), originalReference, uriRef->getUriReference()); } } } css::uno::Reference< css::uri::XUriReference > uriRef( m_uriFactory->parse( rtl::OUString( "vnd.sun.star.script:Hello?location=Library.Module")), css::uno::UNO_SET_THROW); css::uno::Reference< css::uri::XVndSunStarScriptUrlReference > scriptUrl(uriRef, css::uno::UNO_QUERY_THROW); scriptUrl->setParameter( ::rtl::OUString("location"), ::rtl::OUString("foo")); TEST_ASSERT_EQUAL( "testVndSunStarScript", (sal_Int32)10, (sal_Int32)1, uriRef->getUriReference(), ::rtl::OUString("vnd.sun.star.script:Hello?location=foo")); scriptUrl->setParameter( ::rtl::OUString("language"), ::rtl::OUString("StarBasic")); TEST_ASSERT_EQUAL( "testVndSunStarScript", (sal_Int32)10, (sal_Int32)2, uriRef->getUriReference(), ::rtl::OUString("vnd.sun.star.script:Hello?location=foo&language=StarBasic")); bool caughtExpected = false; try { scriptUrl->setName(::rtl::OUString()); } catch( const css::lang::IllegalArgumentException& ) { caughtExpected = true; } TEST_ASSERT_EQUAL( "testVndSunStarScript", ::rtl::OUString("illegal arguments"), ::rtl::OUString("name"), caughtExpected, true); caughtExpected = false; try { scriptUrl->setParameter( ::rtl::OUString(), ::rtl::OUString("non-empty")); } catch( const css::lang::IllegalArgumentException& ) { caughtExpected = true; } TEST_ASSERT_EQUAL( "testVndSunStarScript", ::rtl::OUString("illegal arguments"), ::rtl::OUString("parameter"), caughtExpected, true); } void Test::testTranslator() { struct Data { char const * externalUriReference; char const * internalUriReference; bool toInternal; }; Data data[] = { { "", "", true }, { "#fragment", "#fragment", true }, { "segment/segment?query#fragment", "segment/segment?query#fragment", true }, { "/segment/segment?query#fragment", "/segment/segment?query#fragment", true }, { "//authority/segment?query#fragment", "//authority/segment?query#fragment", true }, { "foo:bar#fragment", "foo:bar#fragment", true }, { "file:///abc/def", "file:///abc/def", true }, { "file:///abc/%FEef", "file:///abc/%feef", false }, { "file:///abc/%80%80ef", "file:///abc/%80%80ef", false }, { "file:///abc/%ED%A0%80%ED%B0%80ef", "file:///abc/%ED%A0%80%ED%B0%80ef", false }, { "file:///abc/%25.ef", "file:///abc/%.ef", false }, { "file:///abc/%25ef", "file:///abc/%25ef", true } }; css::uno::Reference< css::uri::XExternalUriReferenceTranslator > translator(css::uri::ExternalUriReferenceTranslator::create(m_context)); for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { if (data[i].toInternal) { TEST_ASSERT_EQUAL( "testTranslator, translateToInternal", i, data[i].externalUriReference, rtl::OUString::createFromAscii(data[i].internalUriReference), translator->translateToInternal( rtl::OUString::createFromAscii( data[i].externalUriReference))); } TEST_ASSERT_EQUAL( "testTranslator, translateToExternal", i, data[i].internalUriReference, rtl::OUString::createFromAscii(data[i].externalUriReference), translator->translateToExternal( rtl::OUString::createFromAscii(data[i].internalUriReference))); } } void Test::testPkgUrlFactory() { struct Data { char const * authority; char const * result; }; Data data[] = { { "a/b/c", 0 }, { "file:///#foo", 0 }, { "file:///a%25b%2fc/d~e&f@g?h", "vnd.sun.star.pkg://file:%2F%2F%2Fa%2525b%252fc%2Fd~e&f@g%3Fh" } }; css::uno::Reference< css::uri::XVndSunStarPkgUrlReferenceFactory > factory( css::uri::VndSunStarPkgUrlReferenceFactory::create(m_context)); for (std::size_t i = 0; i < SAL_N_ELEMENTS(data); ++i) { css::uno::Reference< css::uri::XUriReference > url( factory->createVndSunStarPkgUrlReference( m_uriFactory->parse( rtl::OUString::createFromAscii(data[i].authority)))); TEST_ASSERT_EQUAL( "testVndSunStarPkgFactory", i, data[i].authority, data[i].result != 0, static_cast< bool >(url.is())); if (data[i].result != 0) { TEST_ASSERT_EQUAL( "testVndSunStarPkgFactory", i, data[i].authority, rtl::OUString::createFromAscii(data[i].result), url->getUriReference()); } } } CPPUNIT_TEST_SUITE_REGISTRATION(Test); } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ='private/mmeeks/aafixes44'>private/mmeeks/aafixes44 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-02-01git hooks: update commit-msg to Gerrit 2.16.15Jan-Marek Glogowski
2020-01-24git hooks: update the change-id part of commit-msgMiklos Vajna
2019-12-03Don't count terminating newline when determining line lengthStephan Bergmann
2019-06-05git-hooks: show length of first line if it's too longMiklos Vajna
2019-02-13Remove unhelpful "Check for whitespace in front of *'s" from .git-hooksStephan Bergmann
2018-11-22git hooks: Tell what to do in another problematic submodules case.Jan Holesovsky
2018-11-22git hooks: Check that you are not committing to submodules by accident.Jan Holesovsky
2018-10-03Add Python files to pre-commit hook checksThorsten Behrens
2018-05-22Restore .git-hooks/commit-msg accidentally removed earlierTor Lillqvist
2018-05-22tdf#117342 - Add Karasa Jaga to LibreOffice coreRizal Muttaqin
2018-02-09clang-format: improve error message when CI failsMiklos Vajna
2018-01-15git pre-commit hook: catch copy&pasted author identityMiklos Vajna
2017-12-15clang-format: restore lost warning on touching formatted file without checkMiklos Vajna
2017-12-13clang-format: ignore not staged hunksMiklos Vajna
2017-11-21git-hooks: fix pre-commit in submodulesMiklos Vajna
2017-11-20clang-format: enforce coding style via JenkinsMiklos Vajna
2017-11-16git-hooks: mention download link for clang-format when warning about itMiklos Vajna
2017-11-16Warn when commit touches new files, but no suitable clang-format is foundStephan Bergmann
2017-11-13First look for clang-format in CLANG_FORMT env varStephan Bergmann
2017-11-13clang-format: standardize on 5.0.0Miklos Vajna
2017-11-03Enforce coding style with clang-format for new codeMiklos Vajna
2017-10-30git-hooks: don't complain about large .ui filesMichael Stahl
2017-09-20pre-commit-hook: Also check xsl files for whitespace and tabsSamuel Mehrbrodt
2017-09-11insist in a domain in .ui filesCaolán McNamara
2017-09-11disallow .ui translatable entries without context at checkinCaolán McNamara
2017-03-24git pre-commit hook: Also check swift filesSamuel Mehrbrodt
2016-12-08tdf#102784 - Enhance git pre-commit hookMarina Latini
2015-09-08git-hooks: Info how to install them manually.Jan Holesovsky
2015-06-13Catch funny line-ends in pre-commit hook.Thorsten Behrens
2015-02-13git-hooks: post-merge script does not need /bin/bashThomas Klausner
2015-02-13git-hooks: recognize multiple bug idsMiklos Vajna
2015-02-12git hooks: reject suspicious fdo referencesMiklos Vajna