UI test for #tdf121949
Test if calc crashes when copying a noncoherent range to the
clipboard
Change-Id: I64d436ffb01775df9d50eb966ea2a12040482517
Reviewed-on: https://gerrit.libreoffice.org/76348
Tested-by: Jenkins
Reviewed-by: Zdenek Crhonek <zcrhonek@gmail.com>
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index 50fc8c3..1b2ca6b 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -254,6 +254,7 @@ $(eval $(call gb_Module_add_uicheck_targets,sc,\
UITest_pageFormat \
UITest_calc_tests8 \
UITest_calc_dialogs \
UITest_calc_tests9 \
))
endif
diff --git a/sc/UITest_calc_tests9.mk b/sc/UITest_calc_tests9.mk
new file mode 100644
index 0000000..9935977d
--- /dev/null
+++ b/sc/UITest_calc_tests9.mk
@@ -0,0 +1,20 @@
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# 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/.
#
$(eval $(call gb_UITest_UITest,calc_tests9))
$(eval $(call gb_UITest_add_modules,calc_tests9,$(SRCDIR)/sc/qa/uitest,\
calc_tests9/ \
))
$(eval $(call gb_UITest_set_defs,calc_tests9, \
TDOC="$(SRCDIR)/sc/qa/uitest/calc_tests/data" \
))
# vim: set noet sw=4 ts=4:
diff --git a/sc/qa/uitest/calc_tests9/tdf121949.py b/sc/qa/uitest/calc_tests9/tdf121949.py
new file mode 100644
index 0000000..92dd668
--- /dev/null
+++ b/sc/qa/uitest/calc_tests9/tdf121949.py
@@ -0,0 +1,30 @@
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# 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
class tdf121949 (UITestCase):
def test_tdf121949_copy_block_with_single_cell_not_included(self):
self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
# mark a range with a single cell left our and copy to clipboard
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A3"}))
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "B1:B1", "EXTEND":"1"}))
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "B3:B3", "EXTEND":"1"}))
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "C1:C3", "EXTEND":"1"}))
self.ui_test.execute_dialog_through_command(".uno:Copy")
xDialog = self.xUITest.getTopFocusWindow()
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
self.ui_test.close_doc()
# vim: set shiftwidth=4 softtabstop=4 expandtab: