wchisp: remove overuse of with lib (#357239)
[NixPkgs.git] / nixos / tests / botamusique.nix
blobecb79cb69867efe7d02fee5a0d649fbb7eacea54
1 import ./make-test-python.nix ({ pkgs, lib, ...} :
4   name = "botamusique";
5   meta.maintainers = with lib.maintainers; [ hexa ];
7   nodes = {
8     machine = { config, ... }: {
9       networking.extraHosts = ''
10         127.0.0.1 all.api.radio-browser.info
11       '';
13       services.murmur = {
14         enable = true;
15         registerName = "NixOS tests";
16       };
18       services.botamusique = {
19         enable = true;
20         settings = {
21           server = {
22             channel = "NixOS tests";
23           };
24           bot = {
25             version = false;
26             auto_check_update = false;
27           };
28         };
29       };
30     };
31   };
33   testScript = ''
34     start_all()
36     machine.wait_for_unit("murmur.service")
37     machine.wait_for_unit("botamusique.service")
39     machine.sleep(10)
41     machine.wait_until_succeeds(
42         "journalctl -u murmur.service -e | grep -q '<1:botamusique(-1)> Authenticated'"
43     )
45     with subtest("Check systemd hardening"):
46         output = machine.execute("systemctl show botamusique.service")[1]
47         machine.log(output)
48         output = machine.execute("systemd-analyze security botamusique.service")[1]
49         machine.log(output)
50   '';