summaryrefslogtreecommitdiff
path: root/test/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-30 13:02:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-30 13:02:35 +0100
commitbebf836275b749ddfa80ddb5c84b54379120f662 (patch)
tree5f98c22ab7f3b7de4219b06efcc7361b5de95a71 /test/inc
parent665fc0285cbf7688839dd9f406aa1318de330945 (diff)
new files
Diffstat (limited to 'test/inc')
-rw-r--r--test/inc/test/filters-test.hxx78
1 files changed, 78 insertions, 0 deletions
diff --git a/test/inc/test/filters-test.hxx b/test/inc/test/filters-test.hxx
new file mode 100644
index 000000000000..721f44227177
--- /dev/null
+++ b/test/inc/test/filters-test.hxx
@@ -0,0 +1,78 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Version: MPL 1.1 / GPLv3+ / LGPLv3+
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (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.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Initial Developer of the Original Code is
+ * Caolán McNamara <caolanm@redhat.com>
+ * Portions created by the Initial Developer are Copyright (C) 2011 the
+ * Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ * Caolán McNamara <caolanm@redhat.com>
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+ * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+ * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+ * instead of those above.
+ */
+
+#include <rtl/ustring.hxx>
+#include <test/bootstrapfixture.hxx>
+#include "test/testdllapi.hxx"
+
+namespace test {
+
+enum filterStatus
+{
+ fail = 0,
+ pass = 1,
+ indeterminate = 2
+};
+
+/* Implementation of Filters test */
+
+class OOO_DLLPUBLIC_TEST FiltersTest : public test::BootstrapFixture
+{
+public:
+ FiltersTest(bool bAssertOnDialog = true, bool bNeedUCB = true)
+ : BootstrapFixture(bAssertOnDialog, bNeedUCB)
+ {}
+
+ virtual void setUp() {}
+ virtual void tearDown() {}
+
+ void testDir(
+ //filter name
+ const rtl::OUString &rFilter,
+ //root dir of test files, must contain pass, fail, indeterminate
+ const rtl::OUString &rURL,
+ //additional filter data for SfxFilter
+ const rtl::OUString &rUserData);
+
+ virtual bool load(
+ const rtl::OUString &rFilter,
+ const rtl::OUString &rURL,
+ const rtl::OUString &rUserData) = 0;
+
+protected:
+ void recursiveScan(
+ const rtl::OUString &rFilter,
+ const rtl::OUString &rURL,
+ const rtl::OUString &rUserData,
+ filterStatus nExpected);
+};
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */