sw/qa/uitest/writer_tests8/tdf158794.py |   37 ++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

New commits:
commit 68722fce71ac5bee808bebb76caf32128d6e9ca0
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Tue Mar 4 11:56:19 2025 +0100
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Tue Mar 4 21:08:22 2025 +0100

    tdf#158794: sw: Add UItest
    
    Change-Id: I6b7fd51861bd03af993a68d04886bb0c10705e09
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182471
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>
    Tested-by: Jenkins

diff --git a/sw/qa/uitest/writer_tests8/tdf158794.py 
b/sw/qa/uitest/writer_tests8/tdf158794.py
new file mode 100644
index 000000000000..fc9a6d36b01c
--- /dev/null
+++ b/sw/qa/uitest/writer_tests8/tdf158794.py
@@ -0,0 +1,37 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-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/.
+#
+from uitest.framework import UITestCase
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.calc import enter_text_to_cell
+
+class tdf158794(UITestCase):
+    def test_tdf158794(self):
+        with self.ui_test.create_doc_in_start_center("calc"):
+
+            xCalcDoc = self.xUITest.getTopFocusWindow()
+            gridwin = xCalcDoc.getChild("grid_window")
+
+            enter_text_to_cell(gridwin, "A1", "1")
+
+            gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
+
+            self.xUITest.executeCommand(".uno:Copy")
+
+        with self.ui_test.load_empty_file("writer") as document:
+
+            self.xUITest.executeCommand(".uno:InsertFootnote")
+
+            # Paste as DDE link
+            # Without the fix in place, this test would have crashed here
+            formatProperty = mkPropertyValues({"SelectedFormat": 59})
+            
self.xUITest.executeCommandWithParameters(".uno:ClipboardFormatItems", 
formatProperty)
+
+            self.assertEqual("", document.Footnotes[0].String)
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:

Reply via email to