nixpkgs/nixos/tests/packagekit.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
668 B
Nix
Raw Normal View History

2019-11-05 19:42:44 +00:00
import ./make-test-python.nix ({ pkgs, ... }: {
2019-04-24 08:45:29 +00:00
name = "packagekit";
meta = with pkgs.lib.maintainers; {
2019-04-24 08:45:29 +00:00
maintainers = [ peterhoeg ];
};
2022-03-20 23:15:30 +00:00
nodes.machine = { ... }: {
2019-04-24 08:45:29 +00:00
environment.systemPackages = with pkgs; [ dbus ];
services.packagekit = {
enable = true;
};
};
testScript = ''
2019-11-05 19:42:44 +00:00
start_all()
2019-04-24 08:45:29 +00:00
# send a dbus message to activate the service
2019-11-05 19:42:44 +00:00
machine.succeed(
"dbus-send --system --type=method_call --print-reply --dest=org.freedesktop.PackageKit /org/freedesktop/PackageKit org.freedesktop.DBus.Introspectable.Introspect"
)
2019-04-24 08:45:29 +00:00
# so now it should be running
2019-11-05 19:42:44 +00:00
machine.wait_for_unit("packagekit.service")
2019-04-24 08:45:29 +00:00
'';
})