mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-12 19:49:02 +08:00
### What problem does this PR solve? Update test cases per PR #5755 ### Type of change - [x] update test cases
This commit is contained in:
parent
df11fe75d3
commit
47e244ee9f
@ -196,7 +196,7 @@ class TestAdvancedConfigurations:
|
||||
assert res["data"]["embedding_model"] == embedding_model
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"name, chunk_method, parser_config, expected_code",
|
||||
"name, chunk_method, parser_config, expected_code, expected_message",
|
||||
[
|
||||
(
|
||||
"naive_default",
|
||||
@ -210,41 +210,44 @@ class TestAdvancedConfigurations:
|
||||
"raptor": {"use_raptor": False},
|
||||
},
|
||||
0,
|
||||
"",
|
||||
),
|
||||
("naive_empty", "naive", {}, 0),
|
||||
pytest.param(
|
||||
("naive_empty", "naive", {}, 0, ""),
|
||||
(
|
||||
"naive_chunk_token_num_negative",
|
||||
"naive",
|
||||
{"chunk_token_num": -1},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
100,
|
||||
"AssertionError('chunk_token_num should be in range from 1 to 100000000')",
|
||||
),
|
||||
pytest.param(
|
||||
(
|
||||
"naive_chunk_token_num_zero",
|
||||
"naive",
|
||||
{"chunk_token_num": 0},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
100,
|
||||
"AssertionError('chunk_token_num should be in range from 1 to 100000000')",
|
||||
),
|
||||
(
|
||||
"naive_chunk_token_num_max",
|
||||
"naive",
|
||||
{"chunk_token_num": 100000000},
|
||||
100,
|
||||
"AssertionError('chunk_token_num should be in range from 1 to 100000000')",
|
||||
),
|
||||
pytest.param(
|
||||
"naive_chunk_token_num_float",
|
||||
"naive",
|
||||
{"chunk_token_num": 3.14},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_chunk_token_num_max",
|
||||
"naive",
|
||||
{"chunk_token_num": 1024 * 1024 * 1024},
|
||||
102,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_chunk_token_num_str",
|
||||
"naive",
|
||||
{"chunk_token_num": "1024"},
|
||||
102,
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
(
|
||||
@ -252,67 +255,180 @@ class TestAdvancedConfigurations:
|
||||
"naive",
|
||||
{"layout_recognize": "DeepDOC"},
|
||||
0,
|
||||
"",
|
||||
),
|
||||
("naive_layout_recognize_Naive", "naive", {"layout_recognize": "Naive"}, 0),
|
||||
("naive_html4excel_true", "naive", {"html4excel": True}, 0),
|
||||
("naive_html4excel_false", "naive", {"html4excel": False}, 0),
|
||||
pytest.param(
|
||||
(
|
||||
"naive_layout_recognize_Naive",
|
||||
"naive",
|
||||
{"layout_recognize": "Naive"},
|
||||
0,
|
||||
"",
|
||||
),
|
||||
("naive_html4excel_true", "naive", {"html4excel": True}, 0, ""),
|
||||
("naive_html4excel_false", "naive", {"html4excel": False}, 0, ""),
|
||||
(
|
||||
"naive_html4excel_not_bool",
|
||||
"naive",
|
||||
{"html4excel": 1},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
100,
|
||||
"AssertionError('html4excel should be True or False')",
|
||||
),
|
||||
("naive_delimiter_empty", "naive", {"delimiter": ""}, 0),
|
||||
("naive_delimiter_backticks", "naive", {"delimiter": "`##`"}, 0),
|
||||
("naive_delimiter_empty", "naive", {"delimiter": ""}, 0, ""),
|
||||
("naive_delimiter_backticks", "naive", {"delimiter": "`##`"}, 0, ""),
|
||||
pytest.param(
|
||||
"naive_delimiterl_not_str",
|
||||
"naive_delimiter_not_str",
|
||||
"naive",
|
||||
{"delimiterl": 1},
|
||||
102,
|
||||
{"delimiter": 1},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
(
|
||||
"naive_task_page_size_negative",
|
||||
"naive",
|
||||
{"task_page_size": -1},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
100,
|
||||
"AssertionError('task_page_size should be in range from 1 to 100000000')",
|
||||
),
|
||||
pytest.param(
|
||||
(
|
||||
"naive_task_page_size_zero",
|
||||
"naive",
|
||||
{"task_page_size": 0},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
100,
|
||||
"AssertionError('task_page_size should be in range from 1 to 100000000')",
|
||||
),
|
||||
(
|
||||
"naive_task_page_size_max",
|
||||
"naive",
|
||||
{"task_page_size": 100000000},
|
||||
100,
|
||||
"AssertionError('task_page_size should be in range from 1 to 100000000')",
|
||||
),
|
||||
pytest.param(
|
||||
"naive_task_page_size_float",
|
||||
"naive",
|
||||
{"task_page_size": 3.14},
|
||||
102,
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_task_page_size_max",
|
||||
"naive",
|
||||
{"task_page_size": 1024 * 1024 * 1024},
|
||||
102,
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_task_page_size_str",
|
||||
"naive",
|
||||
{"task_page_size": "1024"},
|
||||
102,
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
("naive_raptor_true", "naive", {"raptor": {"use_raptor": True}}, 0, ""),
|
||||
("naive_raptor_false", "naive", {"raptor": {"use_raptor": False}}, 0, ""),
|
||||
(
|
||||
"invalid_key",
|
||||
"naive",
|
||||
{"invalid_key": "invalid_value"},
|
||||
100,
|
||||
"""AssertionError("Abnormal \'parser_config\'. Invalid key: invalid_key")""",
|
||||
),
|
||||
(
|
||||
"naive_auto_keywords_negative",
|
||||
"naive",
|
||||
{"auto_keywords": -1},
|
||||
100,
|
||||
"AssertionError('auto_keywords should be in range from 0 to 32')",
|
||||
),
|
||||
(
|
||||
"naive_auto_keywords_max",
|
||||
"naive",
|
||||
{"auto_keywords": 32},
|
||||
100,
|
||||
"AssertionError('auto_keywords should be in range from 0 to 32')",
|
||||
),
|
||||
pytest.param(
|
||||
"naive_auto_keywords_float",
|
||||
"naive",
|
||||
{"auto_questions": 3.14},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_auto_keywords_str",
|
||||
"naive",
|
||||
{"auto_keywords": "1024"},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
(
|
||||
"naive_auto_questions_negative",
|
||||
"naive",
|
||||
{"auto_questions": -1},
|
||||
100,
|
||||
"AssertionError('auto_questions should be in range from 0 to 10')",
|
||||
),
|
||||
(
|
||||
"naive_auto_questions_max",
|
||||
"naive",
|
||||
{"auto_questions": 10},
|
||||
100,
|
||||
"AssertionError('auto_questions should be in range from 0 to 10')",
|
||||
),
|
||||
pytest.param(
|
||||
"naive_auto_questions_float",
|
||||
"naive",
|
||||
{"auto_questions": 3.14},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_auto_questions_str",
|
||||
"naive",
|
||||
{"auto_questions": "1024"},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
(
|
||||
"naive_topn_tags_negative",
|
||||
"naive",
|
||||
{"topn_tags": -1},
|
||||
100,
|
||||
"AssertionError('topn_tags should be in range from 0 to 10')",
|
||||
),
|
||||
(
|
||||
"naive_topn_tags_max",
|
||||
"naive",
|
||||
{"topn_tags": 10},
|
||||
100,
|
||||
"AssertionError('topn_tags should be in range from 0 to 10')",
|
||||
),
|
||||
pytest.param(
|
||||
"naive_topn_tags_float",
|
||||
"naive",
|
||||
{"topn_tags": 3.14},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
pytest.param(
|
||||
"naive_topn_tags_str",
|
||||
"naive",
|
||||
{"topn_tags": "1024"},
|
||||
100,
|
||||
"",
|
||||
marks=pytest.mark.xfail(reason="issue#5719"),
|
||||
),
|
||||
("naive_raptor_true", "naive", {"raptor": {"use_raptor": True}}, 0),
|
||||
("naive_raptor_false", "naive", {"raptor": {"use_raptor": False}}, 0),
|
||||
],
|
||||
)
|
||||
def test_parser_configs(
|
||||
self, get_http_api_auth, name, chunk_method, parser_config, expected_code
|
||||
self,
|
||||
get_http_api_auth,
|
||||
name,
|
||||
chunk_method,
|
||||
parser_config,
|
||||
expected_code,
|
||||
expected_message,
|
||||
):
|
||||
payload = {
|
||||
"name": name,
|
||||
@ -320,11 +436,12 @@ class TestAdvancedConfigurations:
|
||||
"parser_config": parser_config,
|
||||
}
|
||||
res = create_dataset(get_http_api_auth, payload)
|
||||
# print(res)
|
||||
assert res["code"] == expected_code
|
||||
if expected_code == 0 and parser_config != {}:
|
||||
for k, v in parser_config.items():
|
||||
assert res["data"]["parser_config"][k] == v
|
||||
if expected_code != 0 or expected_message:
|
||||
assert res["message"] == expected_message
|
||||
if parser_config == {}:
|
||||
assert res["data"]["parser_config"] == {
|
||||
"chunk_token_num": 128,
|
||||
|
Loading…
x
Reference in New Issue
Block a user