2023-04-30 14:26:21 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
2017-12-12 00:14:00 +00:00
|
|
|
name = "yabar";
|
2023-04-30 14:26:21 +00:00
|
|
|
meta.maintainers = [ ];
|
2017-12-12 00:14:00 +00:00
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.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 10:47:46 +00: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 10:47:46 +00: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 10:47:46 +00:00
|
|
|
|
2019-11-06 06:54:16 +00:00
|
|
|
machine.screenshot("top_bar")
|
2017-12-12 00:14:00 +00:00
|
|
|
'';
|
|
|
|
})
|