6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
45 lines
2.3 KiB
Python
45 lines
2.3 KiB
Python
#
|
|
# Copyright (C) 2014 Red Hat, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
# by the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from collections import Counter
|
|
from gladecheck import GladeTest
|
|
|
|
class CheckValidity(GladeTest):
|
|
def checkGlade(self, tree):
|
|
"""Check for common glade validity errors"""
|
|
# Check for duplicate IDs
|
|
# Build a Counter from a list of all ids and extract the ones with count > 1
|
|
# Fun fact: glade uses <col id="<number>"> in GtkListStore data, so ids
|
|
# aren't actually unique and getting an object with a particular ID
|
|
# isn't as simple as document.getElementById. Only check the IDs on objects.
|
|
for glade_id in [c for c in Counter(tree.xpath(".//object/@id")).most_common() \
|
|
if c[1] > 1]:
|
|
raise AssertionError("%s: ID %s appears %d times" %
|
|
(tree.getroot().base, glade_id[0], glade_id[1]))
|
|
|
|
# Check for ID references
|
|
# mnemonic_widget properties and action-widget elements need to refer to
|
|
# valid object ids.
|
|
for mnemonic_widget in tree.xpath(".//property[@name='mnemonic_widget']"):
|
|
self.assertTrue(tree.xpath(".//object[@id='%s']" % mnemonic_widget.text),
|
|
msg="mnemonic_widget reference to invalid ID %s at line %d of %s" %
|
|
(mnemonic_widget.text, mnemonic_widget.sourceline, mnemonic_widget.base))
|
|
|
|
for action_widget in tree.xpath(".//action-widget"):
|
|
self.assertTrue(tree.xpath(".//object[@id='%s']" % action_widget.text),
|
|
msg="action-widget reference to invalid ID %s at line %d of %s" %
|
|
(action_widget.text, action_widget.sourceline, action_widget.base))
|