コード例 #1
0
ファイル: tests.py プロジェクト: unixorn/logsanitizer
 def test_matched_multiple_group_setter_not_collide(self):
     rule = Rule(Match(pattern_service_name='(\w+)_production'),
                 pattern_user_id='\d+',
                 event='ComeFrom.{0}')
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 43)
     self.assertTrue(rule.apply(line))
     self.assertEqual(line.event, 'ComeFrom.noxy')
コード例 #2
0
ファイル: tests.py プロジェクト: soobrosa/logsanitizer
 def test_not_matched_setter(self):
     rule = Rule(Match(match_user_id=22), not_existing=1, service_name=2)
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 43)
     self.assertFalse(rule.apply(line))
     self.assertFalse(hasattr(line, 'not_existing'))
     self.assertEqual(line.service_name, 'noxy_production')
コード例 #3
0
ファイル: tests.py プロジェクト: soobrosa/logsanitizer
 def test_not_matched_ignore(self):
     rule = Rule(Match(match_user_id=22), ignore=True)
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 43)
     self.assertFalse(rule.apply(line))
コード例 #4
0
ファイル: tests.py プロジェクト: soobrosa/logsanitizer
 def test_matched_ignore(self):
     rule = Rule(Match(match_user_id=22), ignore=True)
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 22)
     with self.assertRaises(IgnoreLine):
         rule.apply(line)
コード例 #5
0
ファイル: tests.py プロジェクト: soobrosa/logsanitizer
 def test_matched_multiple_group_setter_not_collide(self):
     rule = Rule(Match(pattern_service_name='(\w+)_production'), pattern_user_id='\d+', event='ComeFrom.{0}')
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 43)
     self.assertTrue(rule.apply(line))
     self.assertEqual(line.event, 'ComeFrom.noxy')
コード例 #6
0
ファイル: tests.py プロジェクト: unixorn/logsanitizer
 def test_not_matched_ignore(self):
     rule = Rule(Match(match_user_id=22), ignore=True)
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 43)
     self.assertFalse(rule.apply(line))
コード例 #7
0
ファイル: tests.py プロジェクト: unixorn/logsanitizer
 def test_matched_ignore(self):
     rule = Rule(Match(match_user_id=22), ignore=True)
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 22)
     with self.assertRaises(IgnoreLine):
         rule.apply(line)
コード例 #8
0
ファイル: tests.py プロジェクト: unixorn/logsanitizer
 def test_not_matched_setter(self):
     rule = Rule(Match(match_user_id=22), not_existing=1, service_name=2)
     line = LineA(None, '2016-01-01 14:32', 'noxy_production', 43)
     self.assertFalse(rule.apply(line))
     self.assertFalse(hasattr(line, 'not_existing'))
     self.assertEqual(line.service_name, 'noxy_production')