Skip to content
Snippets Groups Projects
private-storage.nix 5.33 KiB
Newer Older
  • Learn to ignore specific revisions
  • let
      pkgs = import <nixpkgs> { };
      # Here are the preconstructed secrets which we can assign to the introducer.
      # This is a lot easier than having the introducer generate them and then
      # discovering and configuring the other nodes with them.
    
      pemFile = ./node.pem;
    
      tubID = "rr7y46ixsg6qmck4jkkc7hke6xe4sv5f";
      swissnum = "2k6p3wrabat5jrj7otcih4cjdema4q3m";
      introducerPort = 35151;
      location = "tcp:introducer:${toString introducerPort}";
      introducerFURL = "pb://${tubID}@${location}/${swissnum}";
      introducerFURLFile = pkgs.writeTextFile {
        name = "introducer.furl";
        text = introducerFURL;
      };
    
      networkConfig = {
        # Just need to disable the firewall so all the traffic flows freely.  We
        # could do other network configuration here too, if we wanted.  Initially
        # I thought we might need to statically asssign IPs but we can just use
        # the node names, "introducer", etc, instead.
        networking.firewall.enable = false;
      };
    
    # https://nixos.org/nixos/manual/index.html#sec-nixos-tests
    import <nixpkgs/nixos/tests/make-test.nix> {
    
    
      nodes = rec {
    
        # Get a machine where we can run a Tahoe-LAFS client node.
        client =
          { config, pkgs, ... }:
          { environment.systemPackages = [
              pkgs.tahoe-lafs
              pkgs.daemonize
            ];
    
          } // networkConfig;
    
    
        # Get another machine where we can run a Tahoe-LAFS introducer node.  It has the same configuration as the client.
        introducer = client;
    
        # Configure a single machine as a PrivateStorage storage node.
        storage =
          { config, pkgs, ... }:
          { imports =
            [ ../private-storage.nix
            ];
            services.private-storage.enable = true;
            services.private-storage.publicIPv4 = "storage";
            services.private-storage.introducerFURL = introducerFURL;
    
          } // networkConfig;
    
    
        # Operate an issuer as well.
        issuer =
        { config, pkgs, ... }:
        { imports =
          [ ../issuer.nix
          ];
          services.private-storage-issuer.enable = true;
        };
    
      # Test the machines with a Perl program (sobbing).
    
    Jean-Paul Calderone's avatar
    Jean-Paul Calderone committed
          # Start booting all the VMs in parallel to speed up operations down below.
          startAll;
    
    
          my ($code, $version) = $introducer->execute("tahoe --version");
          $introducer->log($version);
    
    
          $introducer->succeed(
              'tahoe create-introducer ' .
              '--port tcp:${toString introducerPort} ' .
              '--location tcp:introducer:${toString introducerPort} ' .
              '/tmp/introducer'
          );
          $introducer->copyFileFromHost(
              '${pemFile}',
              '/tmp/introducer/private/node.pem'
          );
          $introducer->copyFileFromHost(
              '${introducerFURLFile}',
              '/tmp/introducer/private/introducer.furl'
          );
          $introducer->succeed(
              'daemonize ' .
              '-e /tmp/stderr ' .
              '-o /tmp/stdout ' .
              '$(type -p tahoe) run /tmp/introducer'
          );
    
          eval {
            $introducer->waitForOpenPort(${toString introducerPort});
            # Signal success. :/
            1;
          } or do {
            my $error = $@ || 'Unknown failure';
            my ($code, $log) = $introducer->execute('cat /tmp/stdout /tmp/stderr');
            $introducer->log($log);
            die $@;
          };
    
          my ($code, $version) = $storage->execute("tahoe --version");
          $storage->log($version);
    
          # The systemd unit should reach the running state.
    
          $storage->waitForUnit('tahoe.storage.service');
    
    
          # Some while after that the Tahoe-LAFS node should listen on the web API
          # port. The port number here has to agree with the port number set in
          # the private-storage.nix module.
    
    
          # Once the web API is listening it should be possible to scrape some
          # status from the node if it is really working.
    
          $storage->succeed('tahoe -d /var/db/tahoe-lafs/storage status');
    
          #
          # Storage appears to be working so try to get a client to speak with it.
          #
    
          my ($code, $version) = $client->execute("tahoe --version");
          $client->log($version);
    
          $client->succeed(
              'tahoe create-client ' .
              '--shares-needed 1 ' .
              '--shares-happy 1 ' .
              '--shares-total 1 ' .
              '--introducer ${introducerFURL} /tmp/client'
          );
    
          # Launch it
          $client->succeed(
              'daemonize ' .
              '-e /tmp/stderr ' .
              '-o /tmp/stdout ' .
              '$(type -p tahoe) run /tmp/client'
          );
          $client->waitForOpenPort(3456);
    
    
          #
          # Get some ZKAPs from the issuer.
          #
    
          # Simulate a payment for a voucher.
          $voucher = "0123456789";
          $client->succeed("${simulate-payment} $voucher");
    
          # Tell the client to redeem the voucher.
          $client->succeed("${redeem-voucher} $voucher");
    
          # The client should be prepped now.  Make it try to use some storage.
    
          my ($code, $out) = $client->execute(
              'tahoe -d /tmp/client ' .
              'put /etc/issue'
          );
          ($code == 0) or do {
              my ($code, $log) = $client->execute('cat /tmp/stdout /tmp/stderr');
              $client->log($log);
              die "put failed";
          };
          $client->succeed(
              'tahoe -d /tmp/client ' .
              "get $out"
          );