コード例 #1
0
    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)
コード例 #2
0
 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)
コード例 #3
0
ファイル: test_buintin_funcs.py プロジェクト: onisama/-
 def test_args_method(self):
     func_code = 'is_abnormal'
     self.assertEquals(BuiltInFuncs.get_required_args(func_code),
                       ['user_id'])
コード例 #4
0
ファイル: test_buintin_funcs.py プロジェクト: onisama/-
    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)