about summary refs log tree commit diff
path: root/nixos/tests/lightdm.nix
AgeCommit message (Collapse)AuthorFilesLines
2022-03-28treewide: machine -> nodes.machineRobert Hensing1-1/+1
2021-05-07treewide: remove worldofpeace from meta.maintainersVladimír Čunát1-1/+1
(It was requested by them.) I left one case due to fetching from their personal repo: pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix
2021-01-10treewide: simplify pkgs.stdenv.lib -> pkgs.libDominik Xaver Hörl1-1/+1
The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
2019-12-15nixos/displayManager: deprecate separate options for default wm/dmJan Tojnar1-2/+1
The upstream session files display managers use have no concept of sessions being composed from desktop manager and window manager. To be able to set upstream session files as default session, we need a single option. Having two different ways to set default session would be confusing, though, so we decided to deprecate the old method. We also created separate script for each session, just like we already had a separate desktop file for each one, and started using displayManager.sessionPackages mechanism to make the session handling more uniform.
2019-11-09nixosTests.lightdm: port to pythonworldofpeace1-8/+8
2019-08-06nixosTests.lightdm: add me to maintainersworldofpeace1-1/+1
2018-07-20[bot] nixos/*: remove unused arguments in lambdasvolth1-1/+1
2018-06-30nixos/tests: users.(extraUsers|extraGroup->users|group)Florian Klink1-1/+1
2016-04-12Fix X11 tests broken by the removal of -acEelco Dolstra1-0/+2
Probably missed a few. Also adding xauth to the system path (it was already in the closure).
2015-08-20nixos/tests/lightdm: Drop "session" screenshot.aszlig1-1/+0
Using waitForWindow on the IceWM root window doesn't necessarily mean that the panel will be shown. In the lightdm test, we only make sure that the login is working and thus it doesn't matter how the session itself will look or whether IceWM is broken, so we don't need that screenshot. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-08-15nixos/tests/lightdm: Fix waiting for the login to succeedTuomas Tynkkynen1-1/+1
Currently the lightdm test detects a successful login by OCR'ing the screen and searching for the clock widget's text. Since the last IceWM update (commit bdd20ced), either the font or the colors of the clock changed such that the OCR doesn't pick it up anymore. Instead, just look for a matching (root) window title, e.g. "IceWM 1.3.9 (Linux/i686)"
2015-07-12all tests: added meta.maintainers sectionJoachim Schiele1-2/+5
2015-05-27nixos: Add small VM test for lightdm.aszlig1-0/+25
Serves as a regression test for #7902. It's not yet referenced in release(-combined)?.nix because it will fail until the issue is resolved. Tested successfully against libgcrypt with libcap passed as null however. As for the test itself, I'm not quite sure whether checking for the time displayed by IceWM is a good idea, but we can still fix that if it turns out to be a problem. Signed-off-by: aszlig <aszlig@redmoonstudios.org>