blob: b84a195747e791a5ea880a73042ef179cb03f6d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Test ClamAV.
{ lib, pkgs, ... }:
{
name = "clamav";
nodes = {
machine = {
services.clamav = {
daemon.enable = true;
clamonacc.enable = true;
daemon.settings = {
OnAccessPrevention = true;
OnAccessIncludePath = "/opt";
};
};
# Add the definition for our test file.
# We cannot download definitions from Internet using freshclam in sandboxed test.
systemd.tmpfiles.settings."10-eicar"."/var/lib/clamav/test.hdb".L.argument = "${pkgs.runCommand
"test.hdb"
{ }
''
echo CLAMAVTEST > testfile
${lib.getExe' pkgs.clamav "sigtool"} --sha256 testfile > $out
''
}";
# Test using /opt as the ClamAV on-access scanner-protected directory.
systemd.tmpfiles.settings."10-testdir"."/opt".d = { };
};
};
testScript = ''
start_all()
machine.wait_for_unit("default.target")
# Write test file into the test directory.
# This won't trigger ClamAV as it scans on file open.
machine.succeed("echo CLAMAVTEST > /opt/testfile")
machine.fail("cat /opt/testfile")
'';
}
|