aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/tests/beanstalkd.nix
blob: fa2fbc2c92abce67ae080efc716caff748e52291 (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
import ./make-test.nix ({ pkgs, lib, ... }:

let
  pythonEnv = pkgs.python3.withPackages (p: [p.beanstalkc]);

  produce = pkgs.writeScript "produce.py" ''
    #!${pythonEnv.interpreter}
    import beanstalkc

    queue = beanstalkc.Connection(host='localhost', port=11300, parse_yaml=False);
    queue.put(b'this is a job')
    queue.put(b'this is another job')
  '';

  consume = pkgs.writeScript "consume.py" ''
    #!${pythonEnv.interpreter}
    import beanstalkc

    queue = beanstalkc.Connection(host='localhost', port=11300, parse_yaml=False);

    job = queue.reserve(timeout=0)
    print(job.body.decode('utf-8'))
    job.delete()
  '';

in
{
  name = "beanstalkd";
  meta.maintainers = [ lib.maintainers.aanderse ];

  machine =
    { ... }:
    { services.beanstalkd.enable = true;
    };

  testScript = ''
    startAll;

    $machine->waitForUnit('beanstalkd.service');

    $machine->succeed("${produce}");
    $machine->succeed("${consume}") eq "this is a job\n" or die;
    $machine->succeed("${consume}") eq "this is another job\n" or die;
  '';
})