blob: 60901cb3f73719ef4d5afb5e36909afe764ef0a5 (
plain) (
blame)
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
|
import ./make-test-python.nix ({ pkgs, ...} :
{
name = "ifm";
meta = with pkgs.lib.maintainers; {
maintainers = [ litchipi ];
};
nodes = {
server = rec {
services.ifm = {
enable = true;
port = 9001;
dataDir = "/data";
};
system.activationScripts.ifm-setup-dir = ''
mkdir -p ${services.ifm.dataDir}
chmod u+w,g+w,o+w ${services.ifm.dataDir}
'';
};
};
testScript = ''
start_all()
server.wait_for_unit("ifm.service")
server.wait_for_open_port(9001)
server.succeed("curl --fail http://localhost:9001")
server.succeed("echo \"testfile\" > testfile && shasum testfile >> checksums")
server.succeed("curl --fail http://localhost:9001 -X POST -F \"api=upload\" -F \"dir=\" -F \"file=@testfile\" | grep \"OK\"");
server.succeed("rm testfile")
server.succeed("curl --fail http://localhost:9001 -X POST -F \"api=download\" -F \"filename=testfile\" -F \"dir=\" --output testfile");
server.succeed("shasum testfile >> checksums && shasum --check checksums")
'';
})
|