def test_log_identifiers_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'log_identifiers'))
 def test_endpoint_alerts_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'endpoint_alerts')
     )
 def test_mod_onboarding_progress_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor,
                                     'mod_onboarding_progress'))
示例#4
0
 def test_claim_tokens_does_not_exist(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'claim_tokens'))
示例#5
0
 def test_log_identifiers_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'log_identifiers')
     )
 def test_tables_exist(self):
     for tbl in TABLES:
         self.assertTrue(helper.check_if_table_exist(self.cursor, tbl))
 def test_loan_creation_infos_dnde(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'loan_creation_infos'))
示例#8
0
 def test_permissions_does_exist(self):
     self.assertTrue(helper.check_if_table_exist(self.cursor,
                                                 'permissions'))
示例#9
0
 def test_authtokens_does_exist(self):
     self.assertTrue(helper.check_if_table_exist(self.cursor, 'authtokens'))
 def test_user_demographic_history_exist(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor,
                                     'user_demographic_history'))
 def test_responses_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'responses')
     )
 def test_user_demographic_lookups_exist(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor,
                                     'user_demographic_lookups'))
示例#13
0
 def test_pass_auth_events_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor,
                                     'password_authentication_events'))
示例#14
0
 def test_claim_tokens_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'claim_tokens'))
 def test_password_auth_permissions_does_not_exist(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor,
                                     'password_auth_permissions'))
示例#16
0
 def test_password_auths_does_exist(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor,
                                     'password_authentications'))
 def test_trust_loan_delays_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'trust_loan_delays'))
示例#18
0
 def test_response_histories_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'response_histories'))
示例#19
0
 def test_handled_fullnames_does_exist(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'handled_fullnames'))
 def test_endpoint_param_history_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'endpoint_param_history'))
 def test_comments_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'trust_comments'))
示例#22
0
 def test_endpoint_alternative_history_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor,
                                     'endpoint_alternative_history'))
示例#23
0
 def test_log_applications_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'log_applications')
     )
示例#24
0
 def test_users_does_exist(self):
     self.assertTrue(helper.check_if_table_exist(self.cursor, 'users'))
示例#25
0
 def test_temporary_bans_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'temporary_bans')
     )
示例#26
0
 def test_temporary_bans_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'temporary_bans')
     )
 def test_moderators_exists(self):
     self.assertTrue(helper.check_if_table_exist(self.cursor, 'moderators'))
 def test_authtoken_permissions_does_not_exist(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'authtoken_permissions'))
示例#29
0
 def test_delayed_queue_dne(self):
     self.assertFalse(
         helper.check_if_table_exist(self.cursor, 'delayed_queue')
     )
 def test_log_applications_exists(self):
     self.assertTrue(
         helper.check_if_table_exist(self.cursor, 'log_applications'))