]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/test/test_runner.py
ba74b153174bc0dce844dbab0268c9ccfb0cb02a
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / test / test_runner.py
1 from twisted.trial import unittest
2
3 from twisted.python import usage, runtime
4 from twisted.internet import threads
5
6 import os.path, re, sys, subprocess
7 from cStringIO import StringIO
8 from allmydata.util import fileutil, pollmixin
9 from allmydata.util.encodingutil import unicode_to_argv, unicode_to_output, get_filesystem_encoding
10 from allmydata.scripts import runner
11
12 from allmydata.test import common_util
13 import allmydata
14
15 timeout = 240
16
17 def get_root_from_file(src):
18     srcdir = os.path.dirname(os.path.dirname(os.path.normcase(os.path.realpath(src))))
19
20     root = os.path.dirname(srcdir)
21     if os.path.basename(srcdir) == 'site-packages':
22         if re.search(r'python.+\..+', os.path.basename(root)):
23             root = os.path.dirname(root)
24         root = os.path.dirname(root)
25     elif os.path.basename(root) == 'src':
26         root = os.path.dirname(root)
27
28     return root
29
30 srcfile = allmydata.__file__
31 rootdir = get_root_from_file(srcfile)
32
33 if hasattr(sys, 'frozen'):
34     bintahoe = os.path.join(rootdir, 'tahoe')
35     if sys.platform == "win32" and os.path.exists(bintahoe + '.exe'):
36         bintahoe += '.exe'
37 else:
38     bintahoe = os.path.join(rootdir, 'bin', 'tahoe')
39     if sys.platform == "win32":
40         bintahoe += '.pyscript'
41         if not os.path.exists(bintahoe):
42             alt_bintahoe = os.path.join(rootdir, 'Scripts', 'tahoe.pyscript')
43             if os.path.exists(alt_bintahoe):
44                 bintahoe = alt_bintahoe
45
46
47 class RunBinTahoeMixin:
48     def skip_if_cannot_run_bintahoe(self):
49         if not os.path.exists(bintahoe):
50             raise unittest.SkipTest("The bin/tahoe script isn't to be found in the expected location (%s), and I don't want to test a 'tahoe' executable that I find somewhere else, in case it isn't the right executable for this version of Tahoe. Perhaps running 'setup.py build' again will help." % (bintahoe,))
51
52     def skip_if_cannot_daemonize(self):
53         self.skip_if_cannot_run_bintahoe()
54         if runtime.platformType == "win32":
55             # twistd on windows doesn't daemonize. cygwin should work normally.
56             raise unittest.SkipTest("twistd does not fork under windows")
57
58     def run_bintahoe(self, args, stdin=None, python_options=[], env=None):
59         self.skip_if_cannot_run_bintahoe()
60
61         if hasattr(sys, 'frozen'):
62             if python_options:
63                 raise unittest.SkipTest("This test doesn't apply to frozen builds.")
64             command = [bintahoe] + args
65         else:
66             command = [sys.executable] + python_options + [bintahoe] + args
67
68         if stdin is None:
69             stdin_stream = None
70         else:
71             stdin_stream = subprocess.PIPE
72
73         def _run():
74             p = subprocess.Popen(command, stdin=stdin_stream, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env)
75             (out, err) = p.communicate(stdin)
76             return (out, err, p.returncode)
77         return threads.deferToThread(_run)
78
79
80 class BinTahoe(common_util.SignalMixin, unittest.TestCase, RunBinTahoeMixin):
81     def _check_right_code(self, file_to_check):
82         root_to_check = get_root_from_file(file_to_check)
83         if os.path.basename(root_to_check) == 'dist':
84             root_to_check = os.path.dirname(root_to_check)
85
86         cwd = os.path.normcase(os.path.realpath("."))
87         root_from_cwd = os.path.dirname(cwd)
88         if os.path.basename(root_from_cwd) == 'src':
89             root_from_cwd = os.path.dirname(root_from_cwd)
90
91         same = (root_from_cwd == root_to_check)
92         if not same:
93             try:
94                 same = os.path.samefile(root_from_cwd, root_to_check)
95             except AttributeError, e:
96                 e  # hush pyflakes
97
98         if not same:
99             msg = ("We seem to be testing the code at %r,\n"
100                    "(according to the source filename %r),\n"
101                    "but expected to be testing the code at %r.\n"
102                    % (root_to_check, file_to_check, root_from_cwd))
103
104             root_from_cwdu = os.path.dirname(os.path.normcase(os.path.normpath(os.getcwdu())))
105             if os.path.basename(root_from_cwdu) == u'src':
106                 root_from_cwdu = os.path.dirname(root_from_cwdu)
107
108             if not isinstance(root_from_cwd, unicode) and root_from_cwd.decode(get_filesystem_encoding(), 'replace') != root_from_cwdu:
109                 msg += ("However, this may be a false alarm because the current directory path\n"
110                         "is not representable in the filesystem encoding. Please run the tests\n"
111                         "from the root of the Tahoe-LAFS distribution at a non-Unicode path.")
112                 raise unittest.SkipTest(msg)
113             else:
114                 msg += "Please run the tests from the root of the Tahoe-LAFS distribution."
115                 self.fail(msg)
116
117     def test_the_right_code(self):
118         self._check_right_code(srcfile)
119
120     def test_import_in_repl(self):
121         d = self.run_bintahoe(["debug", "repl"],
122                               stdin="import allmydata; print; print allmydata.__file__")
123         def _cb(res):
124             out, err, rc_or_sig = res
125             self.failUnlessEqual(rc_or_sig, 0, str(res))
126             lines = out.splitlines()
127             self.failUnlessIn('>>>', lines[0], str(res))
128             self._check_right_code(lines[1])
129         d.addCallback(_cb)
130         return d
131
132     def test_path(self):
133         d = self.run_bintahoe(["--version-and-path"])
134         def _cb(res):
135             from allmydata import normalized_version
136
137             out, err, rc_or_sig = res
138             self.failUnlessEqual(rc_or_sig, 0, str(res))
139
140             # Fail unless the allmydata-tahoe package is *this* version *and*
141             # was loaded from *this* source directory.
142
143             required_verstr = str(allmydata.__version__)
144
145             self.failIfEqual(required_verstr, "unknown",
146                              "We don't know our version, because this distribution didn't come "
147                              "with a _version.py and 'setup.py darcsver' hasn't been run.")
148
149             srcdir = os.path.dirname(os.path.dirname(os.path.normcase(os.path.realpath(srcfile))))
150             info = (res, allmydata.__appname__, required_verstr, srcdir)
151
152             appverpath = out.split(')')[0]
153             (appver, path) = appverpath.split(' (')
154             (app, ver) = appver.split(': ')
155
156             self.failUnlessEqual(app, allmydata.__appname__, info)
157             self.failUnlessEqual(normalized_version(ver), normalized_version(required_verstr), info)
158             self.failUnlessEqual(path, srcdir, info)
159         d.addCallback(_cb)
160         return d
161
162     def test_unicode_arguments_and_output(self):
163         self.skip_if_cannot_run_bintahoe()
164
165         tricky = u"\u2621"
166         try:
167             tricky_arg = unicode_to_argv(tricky, mangle=True)
168             tricky_out = unicode_to_output(tricky)
169         except UnicodeEncodeError:
170             raise unittest.SkipTest("A non-ASCII argument/output could not be encoded on this platform.")
171
172         d = self.run_bintahoe([tricky_arg])
173         def _cb(res):
174             out, err, rc_or_sig = res
175             self.failUnlessEqual(rc_or_sig, 1, str(res))
176             self.failUnlessIn("Unknown command: "+tricky_out, out)
177         d.addCallback(_cb)
178         return d
179
180     def test_run_with_python_options(self):
181         # -t is a harmless option that warns about tabs.
182         d = self.run_bintahoe(["--version"], python_options=["-t"])
183         def _cb(res):
184             out, err, rc_or_sig = res
185             self.failUnlessEqual(rc_or_sig, 0, str(res))
186             self.failUnless(out.startswith(allmydata.__appname__+':'), str(res))
187         d.addCallback(_cb)
188         return d
189
190     def test_version_no_noise(self):
191         self.skip_if_cannot_run_bintahoe()
192
193         from allmydata import get_package_versions, normalized_version
194         twisted_ver = get_package_versions()['Twisted']
195
196         if not normalized_version(twisted_ver) >= normalized_version('9.0.0'):
197             raise unittest.SkipTest("We pass this test only with Twisted >= v9.0.0")
198
199         d = self.run_bintahoe(["--version"])
200         def _cb(res):
201             out, err, rc_or_sig = res
202             self.failUnlessEqual(rc_or_sig, 0, str(res))
203             self.failUnless(out.startswith(allmydata.__appname__+':'), str(res))
204             self.failIfIn("DeprecationWarning", out, str(res))
205             errlines = err.split("\n")
206             self.failIf([True for line in errlines if (line != "" and "UserWarning: Unbuilt egg for setuptools" not in line
207                                                                   and "from pkg_resources import load_entry_point" not in line)], str(res))
208             if err != "":
209                 raise unittest.SkipTest("This test is known not to pass on Ubuntu Lucid; see #1235.")
210         d.addCallback(_cb)
211         return d
212
213
214 class CreateNode(unittest.TestCase):
215     # exercise "tahoe create-node", create-introducer,
216     # create-key-generator, and create-stats-gatherer, by calling the
217     # corresponding code as a subroutine.
218
219     def workdir(self, name):
220         basedir = os.path.join("test_runner", "CreateNode", name)
221         fileutil.make_dirs(basedir)
222         return basedir
223
224     def run_tahoe(self, argv):
225         out,err = StringIO(), StringIO()
226         rc = runner.runner(argv, stdout=out, stderr=err)
227         return rc, out.getvalue(), err.getvalue()
228
229     def do_create(self, kind):
230         basedir = self.workdir("test_" + kind)
231         command = "create-" + kind
232         is_client = kind in ("node", "client")
233         tac = is_client and "tahoe-client.tac" or ("tahoe-" + kind + ".tac")
234
235         n1 = os.path.join(basedir, command + "-n1")
236         argv = ["--quiet", command, "--basedir", n1]
237         rc, out, err = self.run_tahoe(argv)
238         self.failUnlessEqual(err, "")
239         self.failUnlessEqual(out, "")
240         self.failUnlessEqual(rc, 0)
241         self.failUnless(os.path.exists(n1))
242         self.failUnless(os.path.exists(os.path.join(n1, tac)))
243
244         if is_client:
245             # tahoe.cfg should exist, and should have storage enabled for
246             # 'create-node', and disabled for 'create-client'.
247             tahoe_cfg = os.path.join(n1, "tahoe.cfg")
248             self.failUnless(os.path.exists(tahoe_cfg))
249             content = fileutil.read(tahoe_cfg).replace('\r\n', '\n')
250             if kind == "client":
251                 self.failUnless(re.search(r"\n\[storage\]\n#.*\nenabled = false\n", content), content)
252             else:
253                 self.failUnless(re.search(r"\n\[storage\]\n#.*\nenabled = true\n", content), content)
254                 self.failUnless("\nreserved_space = 1G\n" in content)
255
256         # creating the node a second time should be rejected
257         rc, out, err = self.run_tahoe(argv)
258         self.failIfEqual(rc, 0, str((out, err, rc)))
259         self.failUnlessEqual(out, "")
260         self.failUnless("is not empty." in err)
261
262         # Fail if there is a non-empty line that doesn't end with a
263         # punctuation mark.
264         for line in err.splitlines():
265             self.failIf(re.search("[\S][^\.!?]$", line), (line,))
266
267         # test that the non --basedir form works too
268         n2 = os.path.join(basedir, command + "-n2")
269         argv = ["--quiet", command, n2]
270         rc, out, err = self.run_tahoe(argv)
271         self.failUnlessEqual(err, "")
272         self.failUnlessEqual(out, "")
273         self.failUnlessEqual(rc, 0)
274         self.failUnless(os.path.exists(n2))
275         self.failUnless(os.path.exists(os.path.join(n2, tac)))
276
277         # test the --node-directory form
278         n3 = os.path.join(basedir, command + "-n3")
279         argv = ["--quiet", command, "--node-directory", n3]
280         rc, out, err = self.run_tahoe(argv)
281         self.failUnlessEqual(err, "")
282         self.failUnlessEqual(out, "")
283         self.failUnlessEqual(rc, 0)
284         self.failUnless(os.path.exists(n3))
285         self.failUnless(os.path.exists(os.path.join(n3, tac)))
286
287         # make sure it rejects too many arguments
288         argv = [command, "basedir", "extraarg"]
289         self.failUnlessRaises(usage.UsageError,
290                               runner.runner, argv,
291                               run_by_human=False)
292
293         # when creating a non-client, there is no default for the basedir
294         if not is_client:
295             argv = [command]
296             self.failUnlessRaises(usage.UsageError,
297                                   runner.runner, argv,
298                                   run_by_human=False)
299
300
301     def test_node(self):
302         self.do_create("node")
303
304     def test_client(self):
305         # create-client should behave like create-node --no-storage.
306         self.do_create("client")
307
308     def test_introducer(self):
309         self.do_create("introducer")
310
311     def test_key_generator(self):
312         self.do_create("key-generator")
313
314     def test_stats_gatherer(self):
315         self.do_create("stats-gatherer")
316
317     def test_subcommands(self):
318         # no arguments should trigger a command listing, via UsageError
319         self.failUnlessRaises(usage.UsageError,
320                               runner.runner,
321                               [],
322                               run_by_human=False)
323
324
325 BASECONFIG_I = ("[client]\n"
326                 "introducer.furl = %s\n"
327                 )
328
329 class RunNode(common_util.SignalMixin, unittest.TestCase, pollmixin.PollMixin,
330               RunBinTahoeMixin):
331     # exercise "tahoe start", for both introducer, client node, and
332     # key-generator, by spawning "tahoe start" as a subprocess. This doesn't
333     # get us figleaf-based line-level coverage, but it does a better job of
334     # confirming that the user can actually run "./bin/tahoe start" and
335     # expect it to work. This verifies that bin/tahoe sets up PYTHONPATH and
336     # the like correctly.
337
338     # This doesn't work on cygwin (it hangs forever), so we skip this test
339     # when we're on cygwin. It is likely that "tahoe start" itself doesn't
340     # work on cygwin: twisted seems unable to provide a version of
341     # spawnProcess which really works there.
342
343     def workdir(self, name):
344         basedir = os.path.join("test_runner", "RunNode", name)
345         fileutil.make_dirs(basedir)
346         return basedir
347
348     def test_introducer(self):
349         self.skip_if_cannot_daemonize()
350         basedir = self.workdir("test_introducer")
351         c1 = os.path.join(basedir, "c1")
352         HOTLINE_FILE = os.path.join(c1, "suicide_prevention_hotline")
353         TWISTD_PID_FILE = os.path.join(c1, "twistd.pid")
354         INTRODUCER_FURL_FILE = os.path.join(c1, "introducer.furl")
355         NODE_URL_FILE = os.path.join(c1, "node.url")
356         CONFIG_FILE = os.path.join(c1, "tahoe.cfg")
357
358         d = self.run_bintahoe(["--quiet", "create-introducer", "--basedir", c1])
359         def _cb(res):
360             out, err, rc_or_sig = res
361             self.failUnlessEqual(rc_or_sig, 0)
362
363             # This makes sure that node.url is written, which allows us to
364             # detect when the introducer restarts in _node_has_restarted below.
365             config = fileutil.read(CONFIG_FILE)
366             self.failUnlessIn('\nweb.port = \n', config)
367             fileutil.write(CONFIG_FILE, config.replace('\nweb.port = \n', '\nweb.port = 0\n'))
368
369             # by writing this file, we get ten seconds before the node will
370             # exit. This insures that even if the test fails (and the 'stop'
371             # command doesn't work), the client should still terminate.
372             open(HOTLINE_FILE, "w").write("")
373             # now it's safe to start the node
374         d.addCallback(_cb)
375
376         def _then_start_the_node(res):
377             return self.run_bintahoe(["--quiet", "start", c1])
378         d.addCallback(_then_start_the_node)
379
380         def _cb2(res):
381             out, err, rc_or_sig = res
382
383             open(HOTLINE_FILE, "w").write("")
384             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
385             self.failUnlessEqual(rc_or_sig, 0, errstr)
386             self.failUnlessEqual(out, "", errstr)
387             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
388
389             # the parent (twistd) has exited. However, twistd writes the pid
390             # from the child, not the parent, so we can't expect twistd.pid
391             # to exist quite yet.
392
393             # the node is running, but it might not have made it past the
394             # first reactor turn yet, and if we kill it too early, it won't
395             # remove the twistd.pid file. So wait until it does something
396             # that we know it won't do until after the first turn.
397         d.addCallback(_cb2)
398
399         def _node_has_started():
400             return os.path.exists(INTRODUCER_FURL_FILE)
401         d.addCallback(lambda res: self.poll(_node_has_started))
402
403         def _started(res):
404             open(HOTLINE_FILE, "w").write("")
405             self.failUnless(os.path.exists(TWISTD_PID_FILE))
406             self.failUnless(os.path.exists(NODE_URL_FILE))
407             # rm this so we can detect when the second incarnation is ready
408             os.unlink(NODE_URL_FILE)
409             return self.run_bintahoe(["--quiet", "restart", c1])
410         d.addCallback(_started)
411
412         def _then(res):
413             out, err, rc_or_sig = res
414             open(HOTLINE_FILE, "w").write("")
415             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
416             self.failUnlessEqual(rc_or_sig, 0, errstr)
417             self.failUnlessEqual(out, "", errstr)
418             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
419         d.addCallback(_then)
420
421         # again, the second incarnation of the node might not be ready yet,
422         # so poll until it is. This time INTRODUCER_FURL_FILE already
423         # exists, so we check for the existence of NODE_URL_FILE instead.
424         def _node_has_restarted():
425             return os.path.exists(NODE_URL_FILE)
426         d.addCallback(lambda res: self.poll(_node_has_restarted))
427
428         # now we can kill it. TODO: On a slow machine, the node might kill
429         # itself before we get a chance too, especially if spawning the
430         # 'tahoe stop' command takes a while.
431         def _stop(res):
432             open(HOTLINE_FILE, "w").write("")
433             self.failUnless(os.path.exists(TWISTD_PID_FILE))
434
435             return self.run_bintahoe(["--quiet", "stop", c1])
436         d.addCallback(_stop)
437
438         def _after_stopping(res):
439             out, err, rc_or_sig = res
440             open(HOTLINE_FILE, "w").write("")
441             # the parent has exited by now
442             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
443             self.failUnlessEqual(rc_or_sig, 0, errstr)
444             self.failUnlessEqual(out, "", errstr)
445             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
446             # the parent was supposed to poll and wait until it sees
447             # twistd.pid go away before it exits, so twistd.pid should be
448             # gone by now.
449             self.failIf(os.path.exists(TWISTD_PID_FILE))
450         d.addCallback(_after_stopping)
451
452         def _remove_hotline(res):
453             os.unlink(HOTLINE_FILE)
454             return res
455         d.addBoth(_remove_hotline)
456         return d
457     test_introducer.timeout = 960
458
459     # This test hit the 120-second timeout on "Francois Lenny-armv5tel", then it hit a 240-second timeout on our feisty2.5 buildslave: http://allmydata.org/buildbot/builders/feisty2.5/builds/2381/steps/test/logs/test.log
460     # Then it hit the 480 second timeout on Francois's machine: http://tahoe-lafs.org/buildbot/builders/FranXois%20lenny-armv5tel/builds/449/steps/test/logs/stdio
461
462     def test_client_no_noise(self):
463         self.skip_if_cannot_daemonize()
464
465         from allmydata import get_package_versions, normalized_version
466         twisted_ver = get_package_versions()['Twisted']
467
468         if not normalized_version(twisted_ver) >= normalized_version('9.0.0'):
469             raise unittest.SkipTest("We pass this test only with Twisted >= v9.0.0")
470
471         basedir = self.workdir("test_client_no_noise")
472         c1 = os.path.join(basedir, "c1")
473         HOTLINE_FILE = os.path.join(c1, "suicide_prevention_hotline")
474         TWISTD_PID_FILE = os.path.join(c1, "twistd.pid")
475         PORTNUMFILE = os.path.join(c1, "client.port")
476
477         d = self.run_bintahoe(["--quiet", "create-client", "--basedir", c1, "--webport", "0"])
478         def _cb(res):
479             out, err, rc_or_sig = res
480             errstr = "cc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
481             assert rc_or_sig == 0, errstr
482             self.failUnlessEqual(rc_or_sig, 0)
483             # By writing this file, we get forty seconds before the client will exit. This insures
484             # that even if the 'stop' command doesn't work (and the test fails), the client should
485             # still terminate.
486             open(HOTLINE_FILE, "w").write("")
487             fileutil.write(os.path.join(basedir, "tahoe.cfg"), BASECONFIG_I % "pb://xrndsskn2zuuian5ltnxrte7lnuqdrkz@127.0.0.1:55617/introducer")
488             # now it's safe to start the node
489         d.addCallback(_cb)
490
491         def _start(res):
492             return self.run_bintahoe(["--quiet", "start", c1])
493         d.addCallback(_start)
494
495         def _cb2(res):
496             out, err, rc_or_sig = res
497             errstr = "cc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
498             open(HOTLINE_FILE, "w").write("")
499             self.failUnlessEqual(rc_or_sig, 0, errstr)
500             self.failUnlessEqual(out, "", errstr) # If you emit noise, you fail this test.
501             errlines = err.split("\n")
502             self.failIf([True for line in errlines if (line != "" and "UserWarning: Unbuilt egg for setuptools" not in line
503                                                                   and "from pkg_resources import load_entry_point" not in line)], errstr)
504             if err != "":
505                 raise unittest.SkipTest("This test is known not to pass on Ubuntu Lucid; see #1235.")
506
507             # the parent (twistd) has exited. However, twistd writes the pid
508             # from the child, not the parent, so we can't expect twistd.pid
509             # to exist quite yet.
510
511             # the node is running, but it might not have made it past the
512             # first reactor turn yet, and if we kill it too early, it won't
513             # remove the twistd.pid file. So wait until it does something
514             # that we know it won't do until after the first turn.
515         d.addCallback(_cb2)
516
517         def _node_has_started():
518             return os.path.exists(PORTNUMFILE)
519         d.addCallback(lambda res: self.poll(_node_has_started))
520
521         # now we can kill it. TODO: On a slow machine, the node might kill
522         # itself before we get a chance to, especially if spawning the
523         # 'tahoe stop' command takes a while.
524         def _stop(res):
525             self.failUnless(os.path.exists(TWISTD_PID_FILE), (TWISTD_PID_FILE, os.listdir(os.path.dirname(TWISTD_PID_FILE))))
526             return self.run_bintahoe(["--quiet", "stop", c1])
527         d.addCallback(_stop)
528         return d
529
530     def test_client(self):
531         self.skip_if_cannot_daemonize()
532         basedir = self.workdir("test_client")
533         c1 = os.path.join(basedir, "c1")
534         HOTLINE_FILE = os.path.join(c1, "suicide_prevention_hotline")
535         TWISTD_PID_FILE = os.path.join(c1, "twistd.pid")
536         PORTNUMFILE = os.path.join(c1, "client.port")
537
538         d = self.run_bintahoe(["--quiet", "create-node", "--basedir", c1, "--webport", "0"])
539         def _cb(res):
540             out, err, rc_or_sig = res
541             self.failUnlessEqual(rc_or_sig, 0)
542             # By writing this file, we get sixty seconds before the client will exit. This insures
543             # that even if the 'stop' command doesn't work (and the test fails), the client should
544             # still terminate.
545             open(HOTLINE_FILE, "w").write("")
546             fileutil.write(os.path.join(c1, "tahoe.cfg"), BASECONFIG_I % "pb://xrndsskn2zuuian5ltnxrte7lnuqdrkz@127.0.0.1:55617/introducer")
547             # now it's safe to start the node
548         d.addCallback(_cb)
549
550         def _start(res):
551             return self.run_bintahoe(["--quiet", "start", c1])
552         d.addCallback(_start)
553
554         def _cb2(res):
555             out, err, rc_or_sig = res
556             open(HOTLINE_FILE, "w").write("")
557             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
558             self.failUnlessEqual(rc_or_sig, 0, errstr)
559             self.failUnlessEqual(out, "", errstr)
560             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
561
562             # the parent (twistd) has exited. However, twistd writes the pid
563             # from the child, not the parent, so we can't expect twistd.pid
564             # to exist quite yet.
565
566             # the node is running, but it might not have made it past the
567             # first reactor turn yet, and if we kill it too early, it won't
568             # remove the twistd.pid file. So wait until it does something
569             # that we know it won't do until after the first turn.
570         d.addCallback(_cb2)
571
572         def _node_has_started():
573             return os.path.exists(PORTNUMFILE)
574         d.addCallback(lambda res: self.poll(_node_has_started))
575
576         def _started(res):
577             open(HOTLINE_FILE, "w").write("")
578             self.failUnless(os.path.exists(TWISTD_PID_FILE))
579             # rm this so we can detect when the second incarnation is ready
580             os.unlink(PORTNUMFILE)
581
582             return self.run_bintahoe(["--quiet", "restart", c1])
583         d.addCallback(_started)
584
585         def _cb3(res):
586             out, err, rc_or_sig = res
587
588             open(HOTLINE_FILE, "w").write("")
589             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
590             self.failUnlessEqual(rc_or_sig, 0, errstr)
591             self.failUnlessEqual(out, "", errstr)
592             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
593         d.addCallback(_cb3)
594
595         # again, the second incarnation of the node might not be ready yet,
596         # so poll until it is
597         d.addCallback(lambda res: self.poll(_node_has_started))
598
599         # now we can kill it. TODO: On a slow machine, the node might kill
600         # itself before we get a chance too, especially if spawning the
601         # 'tahoe stop' command takes a while.
602         def _stop(res):
603             open(HOTLINE_FILE, "w").write("")
604             self.failUnless(os.path.exists(TWISTD_PID_FILE), (TWISTD_PID_FILE, os.listdir(os.path.dirname(TWISTD_PID_FILE))))
605             return self.run_bintahoe(["--quiet", "stop", c1])
606         d.addCallback(_stop)
607
608         def _cb4(res):
609             out, err, rc_or_sig = res
610
611             open(HOTLINE_FILE, "w").write("")
612             # the parent has exited by now
613             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
614             self.failUnlessEqual(rc_or_sig, 0, errstr)
615             self.failUnlessEqual(out, "", errstr)
616             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
617             # the parent was supposed to poll and wait until it sees
618             # twistd.pid go away before it exits, so twistd.pid should be
619             # gone by now.
620             self.failIf(os.path.exists(TWISTD_PID_FILE))
621         d.addCallback(_cb4)
622         def _remove_hotline(res):
623             os.unlink(HOTLINE_FILE)
624             return res
625         d.addBoth(_remove_hotline)
626         return d
627
628     def test_baddir(self):
629         self.skip_if_cannot_daemonize()
630         basedir = self.workdir("test_baddir")
631         fileutil.make_dirs(basedir)
632
633         d = self.run_bintahoe(["--quiet", "start", "--basedir", basedir])
634         def _cb(res):
635             out, err, rc_or_sig = res
636             self.failUnlessEqual(rc_or_sig, 1)
637             self.failUnless("does not look like a node directory" in err, err)
638         d.addCallback(_cb)
639
640         def _then_stop_it(res):
641             return self.run_bintahoe(["--quiet", "stop", "--basedir", basedir])
642         d.addCallback(_then_stop_it)
643
644         def _cb2(res):
645             out, err, rc_or_sig = res
646             self.failUnlessEqual(rc_or_sig, 2)
647             self.failUnless("does not look like a running node directory" in err)
648         d.addCallback(_cb2)
649
650         def _then_start_in_bogus_basedir(res):
651             not_a_dir = os.path.join(basedir, "bogus")
652             return self.run_bintahoe(["--quiet", "start", "--basedir", not_a_dir])
653         d.addCallback(_then_start_in_bogus_basedir)
654
655         def _cb3(res):
656             out, err, rc_or_sig = res
657             self.failUnlessEqual(rc_or_sig, 1)
658             self.failUnless("does not look like a directory at all" in err, err)
659         d.addCallback(_cb3)
660         return d
661
662     def test_keygen(self):
663         self.skip_if_cannot_daemonize()
664         basedir = self.workdir("test_keygen")
665         c1 = os.path.join(basedir, "c1")
666         TWISTD_PID_FILE = os.path.join(c1, "twistd.pid")
667         KEYGEN_FURL_FILE = os.path.join(c1, "key_generator.furl")
668
669         d = self.run_bintahoe(["--quiet", "create-key-generator", "--basedir", c1])
670         def _cb(res):
671             out, err, rc_or_sig = res
672             self.failUnlessEqual(rc_or_sig, 0)
673         d.addCallback(_cb)
674
675         def _start(res):
676             return self.run_bintahoe(["--quiet", "start", c1])
677         d.addCallback(_start)
678
679         def _cb2(res):
680             out, err, rc_or_sig = res
681             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
682             self.failUnlessEqual(rc_or_sig, 0, errstr)
683             self.failUnlessEqual(out, "", errstr)
684             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
685
686             # the parent (twistd) has exited. However, twistd writes the pid
687             # from the child, not the parent, so we can't expect twistd.pid
688             # to exist quite yet.
689
690             # the node is running, but it might not have made it past the
691             # first reactor turn yet, and if we kill it too early, it won't
692             # remove the twistd.pid file. So wait until it does something
693             # that we know it won't do until after the first turn.
694         d.addCallback(_cb2)
695
696         def _node_has_started():
697             return os.path.exists(KEYGEN_FURL_FILE)
698         d.addCallback(lambda res: self.poll(_node_has_started))
699
700         def _started(res):
701             self.failUnless(os.path.exists(TWISTD_PID_FILE))
702             # rm this so we can detect when the second incarnation is ready
703             os.unlink(KEYGEN_FURL_FILE)
704             return self.run_bintahoe(["--quiet", "restart", c1])
705         d.addCallback(_started)
706
707         def _cb3(res):
708             out, err, rc_or_sig = res
709             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
710             self.failUnlessEqual(rc_or_sig, 0, errstr)
711             self.failUnlessEqual(out, "", errstr)
712             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
713         d.addCallback(_cb3)
714
715         # again, the second incarnation of the node might not be ready yet,
716         # so poll until it is
717         d.addCallback(lambda res: self.poll(_node_has_started))
718
719         # now we can kill it. TODO: On a slow machine, the node might kill
720         # itself before we get a chance too, especially if spawning the
721         # 'tahoe stop' command takes a while.
722         def _stop(res):
723             self.failUnless(os.path.exists(TWISTD_PID_FILE))
724             return self.run_bintahoe(["--quiet", "stop", c1])
725         d.addCallback(_stop)
726
727         def _cb4(res):
728             out, err, rc_or_sig = res
729             # the parent has exited by now
730             errstr = "rc=%d, OUT: '%s', ERR: '%s'" % (rc_or_sig, out, err)
731             self.failUnlessEqual(rc_or_sig, 0, errstr)
732             self.failUnlessEqual(out, "", errstr)
733             # self.failUnlessEqual(err, "", errstr) # See test_client_no_noise -- for now we ignore noise.
734             # the parent was supposed to poll and wait until it sees
735             # twistd.pid go away before it exits, so twistd.pid should be
736             # gone by now.
737             self.failIf(os.path.exists(TWISTD_PID_FILE))
738         d.addCallback(_cb4)
739         return d