本文整理汇总了Python中safe_qgis.keywords_dialog.KeywordsDialog.getValueForKey方法的典型用法代码示例。如果您正苦于以下问题:Python KeywordsDialog.getValueForKey方法的具体用法?Python KeywordsDialog.getValueForKey怎么用?Python KeywordsDialog.getValueForKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类safe_qgis.keywords_dialog.KeywordsDialog
的用法示例。
在下文中一共展示了KeywordsDialog.getValueForKey方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_on_radPostprocessing_toggled
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_on_radPostprocessing_toggled(self):
"""Test hazard radio button toggle behaviour works"""
myLayer = makePolygonLayer()
myDefaults = getDefaults()
myDialog = KeywordsDialog(PARENT, IFACE, theLayer=myLayer)
myButton = myDialog.radPostprocessing
myButton.setChecked(False)
QTest.mouseClick(myButton, QtCore.Qt.LeftButton)
myMessage = ('Toggling the postprocessing radio did not add a '
'category to the keywords list.')
assert myDialog.getValueForKey(
'category') == 'postprocessing', myMessage
myMessage = ('Toggling the postprocessing radio did not add an '
'aggregation attribute to the keywords list.')
assert myDialog.getValueForKey(
myDefaults['AGGR_ATTR_KEY']) == 'KAB_NAME', myMessage
myMessage = ('Toggling the postprocessing radio did not add a '
'female ratio attribute to the keywords list.')
assert myDialog.getValueForKey(
myDefaults['FEM_RATIO_ATTR_KEY']) == \
myDialog.tr('Use default'), myMessage
myMessage = ('Toggling the postprocessing radio did not add a '
'female ratio default value to the keywords list.')
assert float(myDialog.getValueForKey(
myDefaults['FEM_RATIO_KEY'])) == \
myDefaults['FEM_RATIO'], myMessage
示例2: test_on_dsbFemaleRatioDefault_valueChanged
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_on_dsbFemaleRatioDefault_valueChanged(self):
"""Test hazard radio button toggle behaviour works"""
myLayer = makePolygonLayer()
myDefaults = getDefaults()
myDialog = KeywordsDialog(PARENT, IFACE, theLayer=myLayer)
myButton = myDialog.radPostprocessing
myButton.setChecked(False)
QTest.mouseClick(myButton, QtCore.Qt.LeftButton)
myFemaleRatioAttrBox = myDialog.cboFemaleRatioAttribute
#set to Don't use
myIndex = myFemaleRatioAttrBox.findText(
myDialog.tr('Don\'t use'))
myMessage = (myDialog.tr('Don\'t use') + ' not found')
assert (myIndex != -1), myMessage
myFemaleRatioAttrBox.setCurrentIndex(myIndex)
myMessage = ('Toggling the female ratio attribute combo to'
' "Don\'t use" did not add it to the keywords list.')
assert myDialog.getValueForKey(
myDefaults['FEM_RATIO_ATTR_KEY']) ==\
myDialog.tr('Don\'t use'), myMessage
myMessage = ('Toggling the female ratio attribute combo to'
' "Don\'t use" did not disable dsbFemaleRatioDefault.')
myIsEnabled = myDialog.dsbFemaleRatioDefault.isEnabled()
assert not myIsEnabled, myMessage
myMessage = ('Toggling the female ratio attribute combo to'
' "Don\'t use" did not remove the keyword.')
assert (myDialog.getValueForKey(myDefaults['FEM_RATIO']) is
None), myMessage
#set to TEST_REAL
myIndex = myFemaleRatioAttrBox.findText('TEST_REAL')
myMessage = ('TEST_REAL not found')
assert (myIndex != -1), myMessage
myFemaleRatioAttrBox.setCurrentIndex(myIndex)
myMessage = ('Toggling the female ratio attribute combo to "TEST_REAL"'
' did not add it to the keywords list.')
assert myDialog.getValueForKey(
myDefaults['FEM_RATIO_ATTR_KEY']) == 'TEST_REAL', myMessage
myMessage = ('Toggling the female ratio attribute combo to "TEST_REAL"'
' did not disable dsbFemaleRatioDefault.')
myIsEnabled = myDialog.dsbFemaleRatioDefault.isEnabled()
assert not myIsEnabled, myMessage
myMessage = ('Toggling the female ratio attribute combo to "TEST_REAL"'
' did not remove the keyword.')
assert (myDialog.getValueForKey(myDefaults['FEM_RATIO']) is
None), myMessage
示例3: test_addWarningsForColons
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_addWarningsForColons(self):
"""Test add entry to list works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myDialog.reset(False)
myDialog.addListEntry('bar', 'fo:o')
myResult = myDialog.getValueForKey('bar')
myExpectedResult = 'fo.o'
myMessage = ('\nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
#print 'Dict', myDialog.getKeywords()
assert myResult == myExpectedResult, myMessage
#
# Check the user gets a message if they put colons in the value
#
myExpectedResult = 'Colons are not allowed, replaced with "."'
myResult = str(myDialog.lblMessage.text())
myMessage = ('lblMessage error \nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
#print 'Dict', myDialog.getKeywords()
assert myResult == myExpectedResult, myMessage
#
# Check the user gets a message if they put colons in the key
#
myDialog.addListEntry('ba:r', 'foo')
myExpectedResult = 'Colons are not allowed, replaced with "."'
myResult = str(myDialog.lblMessage.text())
myMessage = ('lblMessage error \nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
#print 'Dict', myDialog.getKeywords()
assert myResult == myExpectedResult, myMessage
示例4: test_getValueForKey
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_getValueForKey(self):
"""Test get value for key works"""
makePadangLayer()
myDialog = KeywordsDialog(PARENT, IFACE)
myExpectedValue = 'hazard'
myValue = myDialog.getValueForKey('category')
myMessage = ('\nExpected key value of %s\nGot %s' %
(myExpectedValue, myValue))
assert myValue == myExpectedValue, myMessage
示例5: test_on_radHazard_toggled
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_on_radHazard_toggled(self):
"""Test hazard radio button toggle behaviour works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myButton = myDialog.radHazard
myButton.setChecked(False)
QTest.mouseClick(myButton, QtCore.Qt.LeftButton)
myMessage = ('Toggling the hazard radio did not add a category '
'to the keywords list.')
assert myDialog.getValueForKey('category') == 'hazard', myMessage
示例6: test_setCategory
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_setCategory(self):
"""Test set category works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myDialog.reset(False)
myDialog.setCategory('hazard')
myExpectedResult = 'hazard'
myResult = myDialog.getValueForKey('category')
myMessage = ('\nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
#print 'Dict', myDialog.getKeywords()
assert myResult == myExpectedResult, myMessage
示例7: test_addListEntry
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_addListEntry(self):
"""Test add entry to list works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myDialog.reset(False)
myDialog.addListEntry('bar', 'foo')
myResult = myDialog.getValueForKey('bar')
myExpectedResult = 'foo'
myMessage = ('\nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
#print 'Dict', myDialog.getKeywords()
assert myResult == myExpectedResult, myMessage
示例8: Xtest_on_radExposure_toggled
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def Xtest_on_radExposure_toggled(self):
"""Test exposure radio button toggle behaviour works"""
# Cannot get this test to work, but it works fine in the safe_qgis
myDialog = KeywordsDialog(PARENT, IFACE)
myButton = myDialog.radExposure
myButton.setChecked(False)
QTest.mouseClick(myButton, QtCore.Qt.LeftButton)
myMessage = ('Toggling the exposure radio did not add a category '
'to the keywords list.')
assert myDialog.getValueForKey('category') == 'exposure', myMessage
示例9: test_on_pbnAddToList1_clicked
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_on_pbnAddToList1_clicked(self):
"""Test adding an item to the list using predefined form works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myDialog.reset(False)
myDialog.radPredefined.setChecked(True)
myDialog.cboKeyword.setCurrentIndex(2)
myExpectedResult = 'foo'
myDialog.lePredefinedValue.setText(myExpectedResult)
# Work around for commented out line below
myDialog.on_pbnAddToList1_clicked()
#QTest.mouseClick(myDialog.pbnAddToList1, QtCore.Qt.LeftButton)
myResult = myDialog.getValueForKey('datatype')
myMessage = ('\nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
assert myResult == myExpectedResult, myMessage
示例10: test_on_pbnAddToList2_clicked
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_on_pbnAddToList2_clicked(self):
"""Test adding an item to the list using user defened form works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myDialog.reset(False)
myDialog.radUserDefined.setChecked(True)
myDialog.leKey.setText('foo')
myDialog.leValue.setText('bar')
myExpectedResult = 'bar'
myDialog.lePredefinedValue.setText(myExpectedResult)
# Work around for commented out line below
myDialog.on_pbnAddToList2_clicked()
#QTest.mouseClick(myDialog.pbnAddToList2, QtCore.Qt.LeftButton)
myResult = myDialog.getValueForKey('foo')
myMessage = ('\nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
print 'Dict', myDialog.getKeywords()
assert myResult == myExpectedResult, myMessage
示例11: test_on_cboSubcategory_currentIndexChanged
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_on_cboSubcategory_currentIndexChanged(self):
"""Test subcategory combo change event works"""
myDialog = KeywordsDialog(PARENT, IFACE)
myButton = myDialog.radHazard
myButton.setChecked(True)
myButton = myDialog.radExposure
QTest.mouseClick(myButton, QtCore.Qt.LeftButton)
myCombo = myDialog.cboSubcategory
QTest.mouseClick(myCombo, QtCore.Qt.LeftButton)
QTest.keyClick(myCombo, QtCore.Qt.Key_Up)
QTest.keyClick(myCombo, QtCore.Qt.Key_Enter)
myMessage = ('Changing the subcategory did not add '
'to the keywords list for %s' %
myCombo.currentText())
myKey = myDialog.getValueForKey('subcategory')
assert myKey is not None, myMessage
assert myKey in str(myCombo.currentText()), myMessage
示例12: test_addKeywordWhenPressOkButton
# 需要导入模块: from safe_qgis.keywords_dialog import KeywordsDialog [as 别名]
# 或者: from safe_qgis.keywords_dialog.KeywordsDialog import getValueForKey [as 别名]
def test_addKeywordWhenPressOkButton(self):
"""Test add keyword when ok button is pressed."""
#_, myFile = makePadangLayerClone()
makePadangLayerClone()
myDialog = KeywordsDialog(PARENT, IFACE)
myDialog.radUserDefined.setChecked(True)
myDialog.leKey.setText('foo')
myDialog.leValue.setText('bar')
okButton = myDialog.buttonBox.button(QtGui.QDialogButtonBox.Ok)
QTest.mouseClick(okButton, QtCore.Qt.LeftButton)
# delete temp file
# removeTempFile(myFile)
myExpectedResult = 'bar'
myResult = myDialog.getValueForKey('foo')
myMessage = ('\nGot: %s\nExpected: %s\n' %
(myResult, myExpectedResult))
assert myExpectedResult == myResult, myMessage