示例#1
0
    def test_axes_config_log_re_entrant(self, log):
        """
        Test that initialize call count does not increase on repeat calls.
        """

        AppConfig.initialize()
        calls = log.info.call_count

        AppConfig.initialize()
        self.assertTrue(
            calls == log.info.call_count and calls > 0,
            'AxesConfig.initialize needs to be re-entrant',
        )
示例#2
0
    def test_axes_config_log_re_entrant(self, log):
        """
        Test that log call count does not increase on repeat calls.
        """

        AppConfig.log()
        calls = log.info.call_count

        AppConfig.log()
        self.assertTrue(
            calls == log.info.call_count and calls > 0,
            'AxesConfig.log needs to be re-entrant',
        )
示例#3
0
 def test_initialize(self):
     AppConfig.logging_initialized = False
     AppConfig.initialize()
     self.assertFalse(AppConfig.logging_initialized)
示例#4
0
 def test_axes_config_log_user_ip(self, log):
     AppConfig.initialize()
     log.info.assert_called_with(
         'AXES: blocking by combination of username and IP.')
示例#5
0
 def test_axes_config_log_ip_only(self, log):
     AppConfig.initialize()
     log.info.assert_called_with('AXES: blocking by IP only.')
示例#6
0
 def test_axes_config_log_not_verbose(self, log):
     AppConfig.initialize()
     self.assertFalse(log.info.called)
示例#7
0
 def test_axes_config_log_user_or_ip(self, log):
     AppConfig.initialize()
     log.info.assert_called_with("AXES: blocking by username or IP.")
示例#8
0
 def test_axes_config_log_user_ip(self, log):
     AppConfig.log()
     log.info.assert_called_with('AXES: blocking by combination of username and IP.')
示例#9
0
 def test_axes_config_log_ip_only(self, log):
     AppConfig.log()
     log.info.assert_called_with('AXES: blocking by IP only.')
示例#10
0
 def test_axes_config_log_not_verbose(self, log):
     AppConfig.log()
     self.assertFalse(log.info.called)
示例#11
0
 def test_axes_config_log_user_only(self, log):
     AppConfig.log()
     log.info.assert_called_with('AXES: blocking by username only.')
示例#12
0
 def test_axes_config_log_user_only(self, log):
     AppConfig.initialize()
     log.info.assert_called_with('AXES: blocking by username only.')