mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-22 12:35:01 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
34 lines
968 B
Python
34 lines
968 B
Python
# SPDX-FileCopyrightText: no
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
#
|
|
# Calamares Boilerplate
|
|
import libcalamares
|
|
libcalamares.globalstorage = libcalamares.GlobalStorage(None)
|
|
libcalamares.globalstorage.insert("testing", True)
|
|
|
|
# Module prep-work
|
|
from src.modules.displaymanager import main
|
|
default_desktop_environment = main.DesktopEnvironment("startplasma-x11", "kde-plasma.desktop")
|
|
|
|
import os
|
|
os.makedirs("/tmp/etc/greetd/", exist_ok=True)
|
|
try:
|
|
os.remove("/tmp/etc/greetd/config.toml")
|
|
except FileNotFoundError as e:
|
|
pass
|
|
|
|
try:
|
|
import toml
|
|
except ImportError:
|
|
# This is a failure of the test-environment.
|
|
import sys
|
|
print("Can't find module toml.", file=sys.stderr)
|
|
sys.exit(0)
|
|
|
|
# Specific DM test
|
|
d = main.DMgreetd("/tmp")
|
|
d.set_autologin("d", True, default_desktop_environment)
|
|
# .. and again (this time checks load/save)
|
|
d.set_autologin("d", True, default_desktop_environment)
|
|
d.set_autologin("d", True, default_desktop_environment)
|