Kaydet (Commit) 97ed3b93 authored tarafından Zdeněk Crhonek's avatar Zdeněk Crhonek Kaydeden (comit) Samuel Mehrbrodt

uitest Calc signature line

Change-Id: I249c843f89ed5fe1d413f17fa57671d4ef9c69b2
Reviewed-on: https://gerrit.libreoffice.org/62404
Tested-by: Jenkins
Reviewed-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
üst 51b6a52e
...@@ -197,6 +197,7 @@ $(eval $(call gb_Module_add_uicheck_targets,sc,\ ...@@ -197,6 +197,7 @@ $(eval $(call gb_Module_add_uicheck_targets,sc,\
UITest_validity \ UITest_validity \
UITest_key_f4 \ UITest_key_f4 \
UITest_textCase \ UITest_textCase \
UITest_signatureLine \
)) ))
endif endif
......
# -*- 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,signatureLine))
$(eval $(call gb_UITest_add_modules,signatureLine,$(SRCDIR)/sc/qa/uitest,\
signatureLine/ \
))
$(eval $(call gb_UITest_set_defs,signatureLine, \
TDOC="$(SRCDIR)/sc/qa/uitest/calc_tests/data" \
))
# vim: set noet sw=4 ts=4:
# -*- 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
from uitest.uihelper.common import get_state_as_dict, type_text
from libreoffice.uno.propertyvalue import mkPropertyValues
#Bug 117903 - Allow signature lines in Calc
class insertSignatureLineCalc(UITestCase):
def test_insert_signature_line_calc(self):
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
self.ui_test.execute_dialog_through_command(".uno:InsertSignatureLine")
xDialog = self.xUITest.getTopFocusWindow()
xName = xDialog.getChild("edit_name")
xTitle = xDialog.getChild("edit_title")
xEmail = xDialog.getChild("edit_email")
xComment = xDialog.getChild("checkbox_can_add_comments")
xInstructions = xDialog.getChild("edit_instructions")
xName.executeAction("TYPE", mkPropertyValues({"TEXT":"Name"})) #set the signature line
xTitle.executeAction("TYPE", mkPropertyValues({"TEXT":"Title"}))
xEmail.executeAction("TYPE", mkPropertyValues({"TEXT":"Email"}))
xComment.executeAction("CLICK", tuple())
xInstructions.executeAction("TYPE", mkPropertyValues({"TEXT":"Instructions"}))
xOKBtn = xDialog.getChild("ok")
xOKBtn.executeAction("CLICK", tuple())
#check the signature Line in the document
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerName, "Name")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerTitle, "Title")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerEmail, "Email")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerTitle, "Title")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineCanAddComment, False)
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineShowSignDate, True)
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSigningInstructions, "Instructions")
self.ui_test.close_doc()
def test_insert_signature_line2_calc(self):
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
self.ui_test.execute_dialog_through_command(".uno:InsertSignatureLine")
xDialog = self.xUITest.getTopFocusWindow()
xName = xDialog.getChild("edit_name")
xTitle = xDialog.getChild("edit_title")
xEmail = xDialog.getChild("edit_email")
xComment = xDialog.getChild("checkbox_can_add_comments")
xDate = xDialog.getChild("checkbox_show_sign_date")
xInstructions = xDialog.getChild("edit_instructions")
xName.executeAction("TYPE", mkPropertyValues({"TEXT":"Name"})) #set the signature line
xTitle.executeAction("TYPE", mkPropertyValues({"TEXT":"Title"}))
xEmail.executeAction("TYPE", mkPropertyValues({"TEXT":"Email"}))
xDate.executeAction("CLICK", tuple())
xComment.executeAction("CLICK", tuple())
xInstructions.executeAction("TYPE", mkPropertyValues({"TEXT":"Instructions"}))
xOKBtn = xDialog.getChild("ok")
xOKBtn.executeAction("CLICK", tuple())
#check the signature Line in the document
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerName, "Name")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerTitle, "Title")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerEmail, "Email")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSuggestedSignerTitle, "Title")
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineCanAddComment, False)
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineShowSignDate, False)
self.assertEqual(document.Sheets.getByIndex(0).DrawPage.getByIndex(0).SignatureLineSigningInstructions, "Instructions")
self.ui_test.close_doc()
# vim: set shiftwidth=4 softtabstop=4 expandtab:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment