2019-11-06 06:54:16 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
2017-12-12 00:14:00 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "yabar";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ ma27 ];
|
|
|
|
};
|
|
|
|
|
2018-09-20 11:47:46 +01:00
|
|
|
machine = {
|
2017-12-12 00:14:00 +00:00
|
|
|
imports = [ ./common/x11.nix ./common/user-account.nix ];
|
|
|
|
|
2020-01-26 22:41:19 +00:00
|
|
|
test-support.displayManager.auto.user = "bob";
|
2017-12-12 00:14:00 +00:00
|
|
|
|
|
|
|
programs.yabar.enable = true;
|
2018-09-20 11:47:46 +01:00
|
|
|
programs.yabar.bars = {
|
|
|
|
top.indicators.date.exec = "YABAR_DATE";
|
|
|
|
};
|
2017-12-12 00:14:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-06 06:54:16 +00:00
|
|
|
machine.start()
|
|
|
|
machine.wait_for_x()
|
2017-12-12 00:14:00 +00:00
|
|
|
|
2018-09-20 11:47:46 +01:00
|
|
|
# confirm proper startup
|
2019-11-06 06:54:16 +00:00
|
|
|
machine.wait_for_unit("yabar.service", "bob")
|
|
|
|
machine.sleep(10)
|
|
|
|
machine.wait_for_unit("yabar.service", "bob")
|
2018-09-20 11:47:46 +01:00
|
|
|
|
2019-11-06 06:54:16 +00:00
|
|
|
machine.screenshot("top_bar")
|
2017-12-12 00:14:00 +00:00
|
|
|
'';
|
|
|
|
})
|