mirror of
https://github.com/microsoft/graphrag.git
synced 2026-01-14 00:57:23 +08:00
Some checks failed
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
181 lines
4.7 KiB
Python
181 lines
4.7 KiB
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
|
|
|
|
from unittest import mock
|
|
from unittest.mock import ANY, Mock
|
|
|
|
import pandas as pd
|
|
import pytest
|
|
from graphrag.config.enums import ChunkStrategyType
|
|
from graphrag.index.operations.chunk_text.chunk_text import (
|
|
_get_num_total,
|
|
_load_strategy,
|
|
_run_strategy,
|
|
chunk_text,
|
|
)
|
|
from graphrag.index.operations.chunk_text.typing import (
|
|
TextChunk,
|
|
)
|
|
|
|
|
|
def test_get_num_total_default():
|
|
output = pd.DataFrame({"column": ["a", "b", "c"]})
|
|
|
|
total = _get_num_total(output, "column")
|
|
assert total == 3
|
|
|
|
|
|
def test_get_num_total_array():
|
|
output = pd.DataFrame({"column": [["a", "b", "c"], ["x", "y"]]})
|
|
|
|
total = _get_num_total(output, "column")
|
|
assert total == 5
|
|
|
|
|
|
def test_load_strategy_tokens():
|
|
strategy_type = ChunkStrategyType.tokens
|
|
|
|
strategy_loaded = _load_strategy(strategy_type)
|
|
|
|
assert strategy_loaded.__name__ == "run_tokens"
|
|
|
|
|
|
def test_load_strategy_sentence():
|
|
strategy_type = ChunkStrategyType.sentence
|
|
|
|
strategy_loaded = _load_strategy(strategy_type)
|
|
|
|
assert strategy_loaded.__name__ == "run_sentences"
|
|
|
|
|
|
def test_load_strategy_none():
|
|
strategy_type = ChunkStrategyType
|
|
|
|
with pytest.raises(
|
|
ValueError, match="Unknown strategy: <enum 'ChunkStrategyType'>"
|
|
):
|
|
_load_strategy(strategy_type) # type: ignore
|
|
|
|
|
|
def test_run_strategy_str():
|
|
input = "text test for run strategy"
|
|
config = Mock()
|
|
tick = Mock()
|
|
strategy_mocked = Mock()
|
|
|
|
strategy_mocked.return_value = [
|
|
TextChunk(
|
|
text_chunk="text test for run strategy",
|
|
source_doc_indices=[0],
|
|
)
|
|
]
|
|
|
|
runned = _run_strategy(strategy_mocked, input, config, tick)
|
|
assert runned == ["text test for run strategy"]
|
|
|
|
|
|
def test_run_strategy_arr_str():
|
|
input = ["text test for run strategy", "use for strategy"]
|
|
config = Mock()
|
|
tick = Mock()
|
|
strategy_mocked = Mock()
|
|
|
|
strategy_mocked.return_value = [
|
|
TextChunk(
|
|
text_chunk="text test for run strategy", source_doc_indices=[0], n_tokens=5
|
|
),
|
|
TextChunk(text_chunk="use for strategy", source_doc_indices=[1], n_tokens=3),
|
|
]
|
|
|
|
expected = [
|
|
"text test for run strategy",
|
|
"use for strategy",
|
|
]
|
|
|
|
runned = _run_strategy(strategy_mocked, input, config, tick)
|
|
assert runned == expected
|
|
|
|
|
|
def test_run_strategy_arr_tuple():
|
|
input = [("text test for run strategy", "3"), ("use for strategy", "5")]
|
|
config = Mock()
|
|
tick = Mock()
|
|
strategy_mocked = Mock()
|
|
|
|
strategy_mocked.return_value = [
|
|
TextChunk(
|
|
text_chunk="text test for run strategy", source_doc_indices=[0], n_tokens=5
|
|
),
|
|
TextChunk(text_chunk="use for strategy", source_doc_indices=[1], n_tokens=3),
|
|
]
|
|
|
|
expected = [
|
|
(
|
|
["text test for run strategy"],
|
|
"text test for run strategy",
|
|
5,
|
|
),
|
|
(
|
|
["use for strategy"],
|
|
"use for strategy",
|
|
3,
|
|
),
|
|
]
|
|
|
|
runned = _run_strategy(strategy_mocked, input, config, tick)
|
|
assert runned == expected
|
|
|
|
|
|
def test_run_strategy_arr_tuple_same_doc():
|
|
input = [("text test for run strategy", "3"), ("use for strategy", "5")]
|
|
config = Mock()
|
|
tick = Mock()
|
|
strategy_mocked = Mock()
|
|
|
|
strategy_mocked.return_value = [
|
|
TextChunk(
|
|
text_chunk="text test for run strategy", source_doc_indices=[0], n_tokens=5
|
|
),
|
|
TextChunk(text_chunk="use for strategy", source_doc_indices=[0], n_tokens=3),
|
|
]
|
|
|
|
expected = [
|
|
(
|
|
["text test for run strategy"],
|
|
"text test for run strategy",
|
|
5,
|
|
),
|
|
(
|
|
["text test for run strategy"],
|
|
"use for strategy",
|
|
3,
|
|
),
|
|
]
|
|
|
|
runned = _run_strategy(strategy_mocked, input, config, tick)
|
|
assert runned == expected
|
|
|
|
|
|
@mock.patch("graphrag.index.operations.chunk_text.chunk_text._load_strategy")
|
|
@mock.patch("graphrag.index.operations.chunk_text.chunk_text._run_strategy")
|
|
@mock.patch("graphrag.index.operations.chunk_text.chunk_text.progress_ticker")
|
|
def test_chunk_text(mock_progress_ticker, mock_run_strategy, mock_load_strategy):
|
|
input_data = pd.DataFrame({"name": ["The Shining"]})
|
|
column = "name"
|
|
size = 10
|
|
overlap = 2
|
|
encoding_model = "model"
|
|
strategy = ChunkStrategyType.sentence
|
|
callbacks = Mock()
|
|
callbacks.progress = Mock()
|
|
|
|
mock_load_strategy.return_value = Mock()
|
|
mock_progress_ticker.return_value = Mock()
|
|
|
|
chunk_text(input_data, column, size, overlap, encoding_model, strategy, callbacks)
|
|
|
|
mock_run_strategy.assert_called_with(
|
|
mock_load_strategy(), "The Shining", ANY, mock_progress_ticker.return_value
|
|
)
|