python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / hound.nix
bloba9b036deb0dda8e01c57b2e0abcc781002289186
1 # Test whether `houndd` indexes nixpkgs
2 import ./make-test-python.nix ({ pkgs, ... } : {
3   name = "hound";
4   meta = with pkgs.lib.maintainers; {
5     maintainers = [ grahamc ];
6   };
7   nodes.machine = { pkgs, ... }: {
8     services.hound = {
9       enable = true;
10       config = ''
11         {
12           "max-concurrent-indexers": 1,
13           "dbpath": "/var/lib/hound/data",
14           "repos": {
15             "nix": {
16               "url": "file:///var/lib/hound/my-git"
17             }
18           }
19         }
20       '';
21     };
23     systemd.services.houndseed = {
24       description = "seed hound with a git repo";
25       requiredBy = [ "hound.service" ];
26       before = [ "hound.service" ];
28       serviceConfig = {
29         User = "hound";
30         Group = "hound";
31         WorkingDirectory = "/var/lib/hound";
32       };
33       path = [ pkgs.git ];
34       script = ''
35         git config --global user.email "you@example.com"
36         git config --global user.name "Your Name"
37         git init my-git --bare
38         git init my-git-clone
39         cd my-git-clone
40         echo 'hi nix!' > hello
41         git add hello
42         git commit -m "hello there :)"
43         git remote add origin /var/lib/hound/my-git
44         git push origin master
45       '';
46     };
47   };
49   testScript = ''
50     start_all()
52     machine.wait_for_unit("network.target")
53     machine.wait_for_unit("hound.service")
54     machine.wait_for_open_port(6080)
55     machine.wait_until_succeeds(
56         "curl -f http://127.0.0.1:6080/api/v1/search\?stats\=fosho\&repos\=\*\&rng=%3A20\&q\=hi\&files\=\&i=nope | grep 'Filename' | grep 'hello'"
57     )
58   '';