-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d309484
commit 617b620
Showing
1 changed file
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
"""Test postings array search functionality.""" | ||
import pytest | ||
import numpy as np | ||
from searcharray.postings import PostingsArray | ||
from test_utils import w_scenarios | ||
|
||
|
||
@pytest.fixture | ||
def data(): | ||
"""Return a fixture of your data here that returns an instance of your ExtensionArray.""" | ||
return PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25) | ||
|
||
|
||
def test_match(data): | ||
matches = data.match("foo") | ||
assert (matches == [True, False, False, False] * 25).all() | ||
|
||
|
||
def test_match_missing_term(data): | ||
matches = data.match("not_present") | ||
assert (matches == [False, False, False, False] * 25).all() | ||
|
||
|
||
def test_term_freqs(data): | ||
matches = data.term_freq("bar") | ||
assert (matches == [2, 0, 1, 0] * 25).all() | ||
|
||
|
||
def test_doc_freq(data): | ||
doc_freq = data.doc_freq("bar") | ||
assert doc_freq == (2 * 25) | ||
doc_freq = data.doc_freq("foo") | ||
assert doc_freq == 25 | ||
|
||
|
||
def test_doc_lengths(data): | ||
doc_lengths = data.doc_lengths() | ||
assert doc_lengths.shape == (100,) | ||
assert (doc_lengths == [4, 1, 2, 3] * 25).all() | ||
assert data.avg_doc_length == 2.5 | ||
|
||
|
||
def test_bm25_matches_lucene(data): | ||
bm25_idf = data.bm25_idf("bar") | ||
assert bm25_idf > 0.0 | ||
bm25 = data.bm25("bar") | ||
assert bm25.shape == (100,) | ||
assert np.isclose(bm25, [0.37066694, 0., 0.34314217, 0.] * 25).all() | ||
|
||
|
||
and_scenarios = { | ||
"base": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": ["foo", "bar"], | ||
"expected": [True, False, False, False] * 25, | ||
}, | ||
"no_match": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": ["foo", "data2"], | ||
"expected": [False, False, False, False] * 25, | ||
}, | ||
"and_with_phrase": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": [["foo", "bar"], "baz"], | ||
"expected": [True, False, False, False] * 25, | ||
} | ||
} | ||
|
||
|
||
@w_scenarios(and_scenarios) | ||
def test_and_query(data, docs, keywords, expected): | ||
docs = docs() | ||
matches = data.and_query(keywords) | ||
assert (expected == matches).all() | ||
|
||
|
||
or_scenarios = { | ||
"base": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": ["foo", "bar"], | ||
"expected": [True, False, True, False] * 25, | ||
"min_should_match": 1, | ||
}, | ||
"mm_2": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": ["foo", "bar"], | ||
"expected": [True, False, False, False] * 25, | ||
"min_should_match": 2, | ||
}, | ||
"one_term_match": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": ["foo", "data2"], | ||
"expected": [True, True, False, False] * 25, | ||
"min_should_match": 1, | ||
}, | ||
"one_term_match_mm2": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": ["foo", "data2"], | ||
"expected": [False, False, False, False] * 25, | ||
"min_should_match": 2, | ||
}, | ||
"or_with_phrase": { | ||
"docs": lambda: PostingsArray.index(["foo bar bar baz", "data2", "data3 bar", "bunny funny wunny"] * 25), | ||
"keywords": [["foo", "bar"], "baz"], | ||
"expected": [True, False, False, False] * 25, | ||
"min_should_match": 1, | ||
} | ||
} | ||
|
||
|
||
@w_scenarios(or_scenarios) | ||
def test_or_query(data, docs, keywords, expected, min_should_match): | ||
docs = docs() | ||
matches = data.or_query(keywords, min_should_match=min_should_match) | ||
assert (expected == matches).all() |