Add a test for udisks2
This commit is contained in:
parent
fa9ed04997
commit
894e2dfb25
|
@ -61,6 +61,7 @@ in rec {
|
||||||
(all nixos.tests.printing)
|
(all nixos.tests.printing)
|
||||||
(all nixos.tests.proxy)
|
(all nixos.tests.proxy)
|
||||||
(all nixos.tests.udisks)
|
(all nixos.tests.udisks)
|
||||||
|
(all nixos.tests.udisks2)
|
||||||
(all nixos.tests.xfce)
|
(all nixos.tests.xfce)
|
||||||
|
|
||||||
nixpkgs.tarball
|
nixpkgs.tarball
|
||||||
|
|
|
@ -245,6 +245,7 @@ in rec {
|
||||||
tests.simple = callTest tests/simple.nix {};
|
tests.simple = callTest tests/simple.nix {};
|
||||||
tests.tomcat = callTest tests/tomcat.nix {};
|
tests.tomcat = callTest tests/tomcat.nix {};
|
||||||
tests.udisks = callTest tests/udisks.nix {};
|
tests.udisks = callTest tests/udisks.nix {};
|
||||||
|
tests.udisks2 = callTest tests/udisks2.nix {};
|
||||||
tests.xfce = callTest tests/xfce.nix {};
|
tests.xfce = callTest tests/xfce.nix {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
import ./make-test.nix ({ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
stick = pkgs.fetchurl {
|
||||||
|
url = http://nixos.org/~eelco/nix/udisks-test.img.xz;
|
||||||
|
sha256 = "0was1xgjkjad91nipzclaz5biv3m4b2nk029ga6nk7iklwi19l8b";
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
machine =
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{ services.udisks2.enable = true;
|
||||||
|
imports = [ ./common/user-account.nix ];
|
||||||
|
|
||||||
|
security.polkit.extraConfig =
|
||||||
|
''
|
||||||
|
polkit.addRule(function(action, subject) {
|
||||||
|
if (subject.user == "alice") return "yes";
|
||||||
|
});
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript =
|
||||||
|
''
|
||||||
|
my $stick = $machine->stateDir . "/usbstick.img";
|
||||||
|
system("xz -d < ${stick} > $stick") == 0 or die;
|
||||||
|
|
||||||
|
$machine->succeed("udisksctl info -b /dev/vda >&2");
|
||||||
|
$machine->fail("udisksctl info -b /dev/sda1");
|
||||||
|
|
||||||
|
# Attach a USB stick and wait for it to show up.
|
||||||
|
$machine->sendMonitorCommand("usb_add disk:$stick");
|
||||||
|
$machine->waitUntilSucceeds("udisksctl info -b /dev/sda1");
|
||||||
|
$machine->succeed("udisksctl info -b /dev/sda1 | grep 'IdLabel:.*USBSTICK'");
|
||||||
|
|
||||||
|
# Mount the stick as a non-root user and do some stuff with it.
|
||||||
|
$machine->succeed("su - alice -c 'udisksctl info -b /dev/sda1'");
|
||||||
|
$machine->succeed("su - alice -c 'udisksctl mount -b /dev/sda1'");
|
||||||
|
$machine->succeed("su - alice -c 'cat /run/media/alice/USBSTICK/test.txt'") =~ /Hello World/ or die;
|
||||||
|
$machine->succeed("su - alice -c 'echo foo > /run/media/alice/USBSTICK/bar.txt'");
|
||||||
|
|
||||||
|
# Unmounting the stick should make the mountpoint disappear.
|
||||||
|
$machine->succeed("su - alice -c 'udisksctl unmount -b /dev/sda1'");
|
||||||
|
$machine->fail("[ -d /run/media/alice/USBSTICK ]");
|
||||||
|
|
||||||
|
# Remove the USB stick.
|
||||||
|
$machine->sendMonitorCommand("usb_del 0.3"); # FIXME
|
||||||
|
$machine->waitUntilFails("udisksctl info -b /dev/sda1");
|
||||||
|
$machine->fail("[ -e /dev/sda ]");
|
||||||
|
'';
|
||||||
|
|
||||||
|
})
|
Loading…
Reference in New Issue