def test_op(self): func_code = 'user_login_count' no_exists_func_code = 'test:func_no_exists' op_result_map = { 'lt': False, 'le': True, 'gt': False, 'ge': True, 'eq': True, 'ne': False, } testcases = [ ({'user_id': '111110'}, None), ({'user_id': '111111'}, 40), ({'user_id': '111118'}, 200), ] for req_body, value in testcases: threshold = value or 1000 for op_code, result in op_result_map.items(): self.assertEquals( BuiltInFuncs.run(req_body, func_code, op_code, threshold=threshold), False if value is None else result) with self.assertRaises(BuiltInFuncNotExistError): BuiltInFuncs.run(req_body, no_exists_func_code, op_code, threshold=threshold)
def test_is_and_is_not(self): func_code = 'is_abnormal' testcases = [ ({'user_id': '111110'}, None), ({'user_id': '111111'}, True), ({'user_id': '111118'}, False), ] for req_body, result in testcases: self.assertEquals(BuiltInFuncs.run(req_body, func_code, 'is'), False if result is None else result) self.assertEquals(BuiltInFuncs.run(req_body, func_code, 'is_not'), False if result is None else not result)
def test_args_not_enough(self): func_code = 'is_abnormal' req_body = {'no_exists_key': 1} self.assertEquals(BuiltInFuncs.run(req_body, func_code, 'is'), False)