From: Brian Warner Date: Mon, 12 Mar 2012 19:35:36 +0000 (-0700) Subject: add some quick tests of the introducer/web improvements X-Git-Url: https://git.rkrishnan.org/CLI.txt?a=commitdiff_plain;h=dc28e3144ae7bc90ab43625a37316e98220b36f0;p=tahoe-lafs%2Ftahoe-lafs.git add some quick tests of the introducer/web improvements --- diff --git a/src/allmydata/test/test_system.py b/src/allmydata/test/test_system.py index ccf3cad4..3cbaa7c9 100644 --- a/src/allmydata/test/test_system.py +++ b/src/allmydata/test/test_system.py @@ -785,12 +785,16 @@ class SystemTest(SystemTestMixin, RunBinTahoeMixin, unittest.TestCase): self.failUnless((appverstr in res) or (newappverstr in res), (appverstr, newappverstr, res)) self.failUnless("Announcement Summary: storage: 5, stub_client: 5" in res) self.failUnless("Subscription Summary: storage: 5" in res) + self.failUnless("tahoe.css" in res) except unittest.FailTest: print print "GET %s output was:" % self.introweb_url print res raise d.addCallback(_check) + # make sure it serves the CSS too + d.addCallback(lambda res: + getPage(self.introweb_url+"tahoe.css", method="GET")) d.addCallback(lambda res: getPage(self.introweb_url + "?t=json", method="GET", followRedirect=True))