1 # This test runs a Bittorrent tracker on one machine, and verifies
2 # that two client machines can download the torrent using
3 # `transmission'. The first client (behind a NAT router) downloads
4 # from the initial seeder running on the tracker. Then we kill the
5 # initial seeder. The second client downloads from the first client,
6 # which only works if the first client successfully uses the UPnP-IGD
7 # protocol to poke a hole in the NAT.
9 import ./make-test-python.nix ({ pkgs, ... }:
13 # Some random file to serve.
14 file = pkgs.hello.src;
16 internalRouterAddress = "192.168.3.1";
17 internalClient1Address = "192.168.3.2";
18 externalRouterAddress = "80.100.100.1";
19 externalClient2Address = "80.100.100.2";
20 externalTrackerAddress = "80.100.100.3";
22 download-dir = "/var/lib/transmission/Downloads";
23 transmissionConfig = { ... }: {
24 environment.systemPackages = [ pkgs.transmission ];
25 services.transmission = {
38 meta = with pkgs.stdenv.lib.maintainers; {
39 maintainers = [ domenkozar eelco rob bobvanderlinden ];
43 tracker = { pkgs, ... }: {
44 imports = [ transmissionConfig ];
46 virtualisation.vlans = [ 1 ];
47 networking.firewall.enable = false;
48 networking.interfaces.eth1.ipv4.addresses = [
49 { address = externalTrackerAddress; prefixLength = 24; }
52 # We need Apache on the tracker to serve the torrents.
56 "torrentserver.org" = {
57 adminAddr = "foo@example.org";
58 documentRoot = "/tmp";
62 services.opentracker.enable = true;
65 router = { pkgs, nodes, ... }: {
66 virtualisation.vlans = [ 1 2 ];
67 networking.nat.enable = true;
68 networking.nat.internalInterfaces = [ "eth2" ];
69 networking.nat.externalInterface = "eth1";
70 networking.firewall.enable = true;
71 networking.firewall.trustedInterfaces = [ "eth2" ];
72 networking.interfaces.eth0.ipv4.addresses = [];
73 networking.interfaces.eth1.ipv4.addresses = [
74 { address = externalRouterAddress; prefixLength = 24; }
76 networking.interfaces.eth2.ipv4.addresses = [
77 { address = internalRouterAddress; prefixLength = 24; }
79 services.miniupnpd = {
81 externalInterface = "eth1";
82 internalIPs = [ "eth2" ];
84 ext_ip=${externalRouterAddress}
89 client1 = { pkgs, nodes, ... }: {
90 imports = [ transmissionConfig ];
91 environment.systemPackages = [ pkgs.miniupnpc ];
93 virtualisation.vlans = [ 2 ];
94 networking.interfaces.eth0.ipv4.addresses = [];
95 networking.interfaces.eth1.ipv4.addresses = [
96 { address = internalClient1Address; prefixLength = 24; }
98 networking.defaultGateway = internalRouterAddress;
99 networking.firewall.enable = false;
102 client2 = { pkgs, ... }: {
103 imports = [ transmissionConfig ];
105 virtualisation.vlans = [ 1 ];
106 networking.interfaces.eth0.ipv4.addresses = [];
107 networking.interfaces.eth1.ipv4.addresses = [
108 { address = externalClient2Address; prefixLength = 24; }
110 networking.firewall.enable = false;
114 testScript = { nodes, ... }: ''
117 # Wait for network and miniupnpd.
118 router.wait_for_unit("network-online.target")
119 router.wait_for_unit("miniupnpd")
121 # Create the torrent.
122 tracker.succeed("mkdir ${download-dir}/data")
124 "cp ${file} ${download-dir}/data/test.tar.bz2"
127 "transmission-create ${download-dir}/data/test.tar.bz2 --private --tracker http://${externalTrackerAddress}:6969/announce --outfile /tmp/test.torrent"
129 tracker.succeed("chmod 644 /tmp/test.torrent")
131 # Start the tracker. !!! use a less crappy tracker
132 tracker.wait_for_unit("network-online.target")
133 tracker.wait_for_unit("opentracker.service")
134 tracker.wait_for_open_port(6969)
136 # Start the initial seeder.
138 "transmission-remote --add /tmp/test.torrent --no-portmap --no-dht --download-dir ${download-dir}/data"
141 # Now we should be able to download from the client behind the NAT.
142 tracker.wait_for_unit("httpd")
143 client1.wait_for_unit("network-online.target")
144 client1.succeed("transmission-remote --add http://${externalTrackerAddress}/test.torrent >&2 &")
145 client1.wait_for_file("${download-dir}/test.tar.bz2")
147 "cmp ${download-dir}/test.tar.bz2 ${file}"
150 # Bring down the initial seeder.
151 # tracker.stop_job("transmission")
153 # Now download from the second client. This can only succeed if
154 # the first client created a NAT hole in the router.
155 client2.wait_for_unit("network-online.target")
157 "transmission-remote --add http://${externalTrackerAddress}/test.torrent --no-portmap --no-dht >&2 &"
159 client2.wait_for_file("${download-dir}/test.tar.bz2")
161 "cmp ${download-dir}/test.tar.bz2 ${file}"