def test_staging(self):
     """
     Verify that each of these servers are running
     """
     self.assertEquals(try_path('makana-test.berkeley.edu', '/satchmo'),
                       True)
     self.assertEquals(try_path('makana-test.berkeley.edu', '/q/satchmo'),
                       True)
Exemple #2
0
    def test_publications(self):
        """
        Verify /contact_us/ link works on staging and production
        """
        self.assertEquals(try_path('makana.berkeley.edu', '/contact_us/'),
                          True)

        self.assertEquals(try_path('makana-test.berkeley.edu', '/contact_us/'),
                          True)
 def test_help_about_pages(self):
     """
     Verify About pages don't give errors
     """
     self.assertEquals(
         try_path('makana-test.berkeley.edu', '/satchmo/about/'), True)
     self.assertEquals(try_path('makana.berkeley.edu', '/satchmo/about/'),
                       True)
     self.assertEquals(
         try_path('makana-test.berkeley.edu', '/satchmo/help/'), True)
     self.assertEquals(try_path('makana.berkeley.edu', '/satchmo/help/'),
                       True)
Exemple #4
0
 def test_makana_production(self):
     """
     Verify production server is running on Ohana/Makana
     """
     self.assertEquals(try_path('makana.berkeley.edu', '/'), True)
Exemple #5
0
 def test_makana_staging(self):
     """
     Verify staging server is running on Ohana/Makana
     """
     self.assertEquals(try_path('makana-test.berkeley.edu', '/'), True)
Exemple #6
0
 def test_phylofacts(self):
     """
     Verify that each of these servers are running
     """
     self.assertEquals(
         try_path('phylogenomics.berkeley.edu', '/phylofacts/'), True)