summaryrefslogtreecommitdiff
path: root/sw/qa/extras/accessibility/basics.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/extras/accessibility/basics.cxx')
-rw-r--r--sw/qa/extras/accessibility/basics.cxx95
1 files changed, 95 insertions, 0 deletions
diff --git a/sw/qa/extras/accessibility/basics.cxx b/sw/qa/extras/accessibility/basics.cxx
new file mode 100644
index 000000000000..e4d3a479378d
--- /dev/null
+++ b/sw/qa/extras/accessibility/basics.cxx
@@ -0,0 +1,95 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
+/*
+ * 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 <com/sun/star/awt/Key.hpp>
+#include <LibreOfficeKit/LibreOfficeKitEnums.h>
+#include <vcl/scheduler.hxx>
+
+#include <test/a11y/accessibletestbase.hxx>
+#include <test/a11y/AccessibilityTools.hxx>
+
+using namespace css;
+
+CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, TestBasicStructure)
+{
+ loadFromSrc(u"/sw/qa/python/testdocuments/xtextcontent.odt"_ustr);
+ auto xContext = getDocumentAccessibleContext();
+ CPPUNIT_ASSERT(xContext.is());
+
+ dumpA11YTree(xContext);
+ CPPUNIT_ASSERT_EQUAL(
+ u"<PARAGRAPH>String1</PARAGRAPH><PARAGRAPH/><PARAGRAPH/><PARAGRAPH/>"
+ "<TABLE name=\"Table1-1\" description=\"Table1 on page 1\">"
+ "<TABLE_CELL name=\"A1\" description=\"A1\">"
+ "<PARAGRAPH>String2</PARAGRAPH>"
+ "</TABLE_CELL>"
+ "</TABLE>"
+ "<PARAGRAPH/>"
+ "<TEXT_FRAME name=\"Frame1\"><PARAGRAPH>Frame1</PARAGRAPH></TEXT_FRAME>"
+ "<TEXT_FRAME name=\"Frame2\"><PARAGRAPH>Frame2</PARAGRAPH></TEXT_FRAME>"_ustr,
+ collectText(xContext));
+}
+
+CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, TestTypeSimple)
+{
+ load(u"private:factory/swriter"_ustr);
+ auto xContext = getDocumentAccessibleContext();
+ CPPUNIT_ASSERT(xContext.is());
+
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'h', 0);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'e', 0);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'l', 0);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'l', 0);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'o', 0);
+ Scheduler::ProcessEventsToIdle();
+
+ CPPUNIT_ASSERT_EQUAL(u"<PARAGRAPH>hello</PARAGRAPH>"_ustr, collectText(xContext));
+}
+
+CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, TestTypeMultiPara)
+{
+ load(u"private:factory/swriter"_ustr);
+ auto xContext = getDocumentAccessibleContext();
+ CPPUNIT_ASSERT(xContext.is());
+
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'A', 0);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, awt::Key::RETURN);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'B', 0);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, awt::Key::RETURN);
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 'C', 0);
+ Scheduler::ProcessEventsToIdle();
+
+ CPPUNIT_ASSERT_EQUAL(
+ u"<PARAGRAPH>A</PARAGRAPH><PARAGRAPH>B</PARAGRAPH><PARAGRAPH>C</PARAGRAPH>"_ustr,
+ collectText(xContext));
+}
+
+CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, TestMenuInsertPageNumber)
+{
+ load(u"private:factory/swriter"_ustr);
+ CPPUNIT_ASSERT(activateMenuItem(u"Insert", u"Field", u"Page Number"));
+ CPPUNIT_ASSERT_EQUAL(u"<PARAGRAPH>1</PARAGRAPH>"_ustr, collectText());
+}
+
+CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, TestMenuInsertPageBreak)
+{
+ load(u"private:factory/swriter"_ustr);
+
+ CPPUNIT_ASSERT(activateMenuItem(u"Insert", u"Field", u"Page Number"));
+ CPPUNIT_ASSERT(activateMenuItem(u"Insert", u"Page Break"));
+ // we need to move focus to the paragraph after the page break to insert the page number there
+ documentPostKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, awt::Key::DOWN);
+ CPPUNIT_ASSERT(activateMenuItem(u"Insert", u"Field", u"Page Number"));
+
+ CPPUNIT_ASSERT_EQUAL(u"<PARAGRAPH>1</PARAGRAPH><PARAGRAPH>2</PARAGRAPH>"_ustr, collectText());
+}
+
+CPPUNIT_PLUGIN_IMPLEMENT();
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */