anaconda/anaconda-40.22.3.13/tests/lib/iconcheck.py
2024-11-14 21:39:56 -08:00

38 lines
1.3 KiB
Python

#
# iconcheck.py: Gtk icon testing
#
# 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/>.
import os
ICON_PATH = "/usr/share/icons/Adwaita"
ICON_EXTS = ("png", "jpg", "svg")
# This method depends on adwaita-icon-theme being installed.
def icon_exists(icon_name):
for dirpath, _dirs, files in os.walk(ICON_PATH):
for icon in (icon_name + "." + ext for ext in ICON_EXTS):
if icon in files:
icon_path = os.path.join(dirpath, icon)
# If the file is a symbolic link, it's a legacy icon; reject it
if os.path.islink(icon_path):
return False
else:
return True
# Nothing found
return False