summaryrefslogtreecommitdiff
path: root/filter/qa/cppunit/filters-tiff-test.cxx
blob: eb12ff75739fe9693771a52d0a4426433e0c6580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* -*- 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/.
 */

#include <unotest/filters-test.hxx>
#include <test/bootstrapfixture.hxx>
#include <vcl/FilterConfigItem.hxx>
#include <tools/stream.hxx>
#include <vcl/graph.hxx>

#include <osl/file.hxx>
#include <osl/process.h>

extern "C"
{
    SAL_DLLPUBLIC_EXPORT bool SAL_CALL
        itiGraphicImport(SvStream & rStream, Graphic & rGraphic,
        FilterConfigItem*);
}

using namespace ::com::sun::star;

/* Implementation of Filters test */

class TiffFilterTest
    : public test::FiltersTest
    , public test::BootstrapFixture
{
public:
    TiffFilterTest() : BootstrapFixture(true, false) {}

    virtual bool load(const OUString &,
        const OUString &rURL, const OUString &,
        SfxFilterFlags, SotClipboardFormatId, unsigned int) override;

    /**
     * Ensure CVEs remain unbroken
     */
    void testCVEs();

    CPPUNIT_TEST_SUITE(TiffFilterTest);
    CPPUNIT_TEST(testCVEs);
    CPPUNIT_TEST_SUITE_END();
};

bool TiffFilterTest::load(const OUString &,
    const OUString &rURL, const OUString &,
    SfxFilterFlags, SotClipboardFormatId, unsigned int)
{
    SvFileStream aFileStream(rURL, StreamMode::READ);
    Graphic aGraphic;
    return itiGraphicImport(aFileStream, aGraphic, NULL);
}

void TiffFilterTest::testCVEs()
{
    testDir(OUString(),
        getURLFromSrc("/filter/qa/cppunit/data/tiff/"),
        OUString());
}

CPPUNIT_TEST_SUITE_REGISTRATION(TiffFilterTest);

CPPUNIT_PLUGIN_IMPLEMENT();

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
an title='2015-09-24 22:47:59 +0200'>2015-09-24android.util.FloatMath is deprecated/was removed in ver 23Christian Lohmaier 2015-09-18Fix typosAndrea Gelmini 2015-09-11Android: i18-ize some stringsJacobo Aragunde Pérez 2015-09-11Android: check file modify date to know if save is completeJacobo Aragunde Pérez 2015-09-11Android: Implement cloud saveJacobo Aragunde Pérez 2015-09-11Android: provide an ID to document providersJacobo Aragunde Pérez 2015-08-11gbuild/config stop using VERBOSE, use only verbose=tNorbert Thiebaud 2015-07-04Fix typosAndrea Gelmini 2015-06-15java: 'final static' to 'static final'Noel Grandin 2015-06-12Android: show drawer ("hamburger") icon on root directoryJacobo Aragunde Pérez 2015-06-12Android: do not hide toolbar under the drawerJacobo Aragunde Pérez 2015-06-12tdf#87434: android: system back key to go one level upJacobo Aragunde Pérez 2015-06-12Android: properly set default dir for the document browserJacobo Aragunde Pérez 2015-06-11java:regulatize the order of 'final' and public/privateNoel Grandin 2015-06-10Android: improve error handling in ownCloud provider.Jacobo Aragunde Pérez 2015-06-10Android: document providers listen to changes in preferences.Jacobo Aragunde Pérez 2015-06-10Android: add menu entry for document provider settingsJacobo Aragunde Pérez 2015-06-10Android: setup ownCloud provider with user-defined settingsJacobo Aragunde Pérez 2015-06-10Android: settings activity for document providersJacobo Aragunde Pérez 2015-06-10Android: download documents from ownCloud.Jacobo Aragunde Pérez 2015-06-10Android: initial implementation of ownCloud provider.Jacobo Aragunde Pérez 2015-06-10Android: add ownCloud library to the build.Jacobo Aragunde Pérez