Exemplo n.º 1
0
 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)
Exemplo n.º 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)
Exemplo n.º 3
0
 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)
Exemplo n.º 4
0
 def test_makana_production(self):
     """
     Verify production server is running on Ohana/Makana
     """
     self.assertEquals(try_path('makana.berkeley.edu', '/'), True)
Exemplo n.º 5
0
 def test_makana_staging(self):
     """
     Verify staging server is running on Ohana/Makana
     """
     self.assertEquals(try_path('makana-test.berkeley.edu', '/'), True)
Exemplo n.º 6
0
 def test_phylofacts(self):
     """
     Verify that each of these servers are running
     """
     self.assertEquals(
         try_path('phylogenomics.berkeley.edu', '/phylofacts/'), True)