Unverified Commit 64c46cbd authored by Janne Heß's avatar Janne Heß Committed by GitHub
Browse files

oxidized: add nixosTests (#431424)

parents 71ae9eb4 657e16aa
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1123,6 +1123,7 @@ in
  osquery = handleTestOn [ "x86_64-linux" ] ./osquery.nix { };
  osrm-backend = runTest ./osrm-backend.nix;
  overlayfs = runTest ./overlayfs.nix;
  oxidized = handleTest ./oxidized.nix { };
  pacemaker = runTest ./pacemaker.nix;
  packagekit = runTest ./packagekit.nix;
  paisa = runTest ./paisa.nix;
+104 −0
Original line number Diff line number Diff line
{
  system ? builtins.currentSystem,
  pkgs ? import ../.. {
    inherit system;
    config = { };
  },
}:

let
  inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
in
makeTest {
  name = "oxidized";

  nodes.server =
    { config, pkgs, ... }:
    {
      security.pam.services.sshd.allowNullPassword = true; # the default `UsePam yes` makes this necessary
      services = {
        sshd.enable = true;
        openssh = {
          settings.PermitRootLogin = "yes";
          settings.PermitEmptyPasswords = "yes";
        };
        oxidized = {
          enable = true;
          package = pkgs.oxidized;
          routerDB = pkgs.writeText "oxidized-router.db" ''
            localhost:linuxgeneric:root
          '';
          configFile = pkgs.writeText "oxidized-config.yml" ''
            # vi: ft=yaml
            ---
            extensions:
              oxidized-web:
                load: true
                listen: 127.0.0.1
                port: 8888
                vhosts:
                  - localhost
                  - 127.0.0.1
                  - oxidized
                  - oxidized.example.com
            interval: 3600
            retries: 3
            model: linuxgeneric
            username: root
            source:
              default: csv
              csv:
                file: "/var/lib/oxidized/.config/oxidized/router.db"
                delimiter: !ruby/regexp /:/
                map:
                  name: 0
                  model: 1
                  username: 2
                  password: 3
                vars_map:
                  enable: 4
            input:
              default: ssh
              utf8_encoded: true
            output:
              default: git
              git:
                single_repo:  true
                user: oxidized
                email: oxidized@example.com
                repo: /var/lib/oxidized/git
          '';
        };
      };
      systemd.services.oxidized = {
        stopIfChanged = false;
        environment.HOME = "/var/lib/oxidized";
        environment.APP_ENV = "production";
        serviceConfig = {
          StateDirectory = "oxidized";
          MemoryDenyWriteExecute = false;

          PrivateNetwork = false;
          SystemCallFilter = "@system-service";
        };

        path = [ config.programs.ssh.package ];
      };

    };

  testScript =
    { nodes, ... }:
    ''
      start_all()

      server.wait_for_unit("oxidized.service")

      with subtest("Check if oxidized reports the correct version"):
        server.wait_until_succeeds(("curl --silent --fail --location http://127.0.0.1:8888/ | grep '${nodes.server.services.oxidized.package.version}' >&2"))
      with subtest("Check if oxidized can be accessed with a vhost and reports the correct version"):
        server.wait_until_succeeds(("curl --silent --fail --resolve oxidized:8888:127.0.0.1 --location http://oxidized:8888/ | grep '${nodes.server.services.oxidized.package.version}' >&2"))
      with subtest("Check if oxidized can connect to linuxgeneric model"):
        server.wait_until_succeeds("journalctl -b --grep 'Oxidized::Worker -- Configuration updated for /localhost' -t oxidized")
    '';
}
+5 −1
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  ruby,
  bundlerApp,
  bundlerUpdateScript,
  nixosTests,
}:

bundlerApp {
@@ -16,7 +17,10 @@ bundlerApp {
    "oxs"
  ];

  passthru.updateScript = bundlerUpdateScript "oxidized";
  passthru = {
    tests = nixosTests.oxidized;
    updateScript = bundlerUpdateScript "oxidized";
  };

  meta = with lib; {
    description = "Network device configuration backup tool. It's a RANCID replacement";