V10.541 收斂高信心 exact 覆核池
This commit is contained in:
@@ -161,6 +161,12 @@ def test_competitor_feeder_persists_all_match_attempt_outcomes():
|
||||
assert "持采亮化UV防曬水凝乳" in retryable_source
|
||||
assert "類光繚" in retryable_source
|
||||
assert "isl[a-z0-9]*[0-9]{2,3}" in retryable_source
|
||||
assert "兒茶眼部配方" in retryable_source
|
||||
assert "綿羊油" in retryable_source
|
||||
assert "德國奔月" in retryable_source
|
||||
assert "私密植萃抗菌潔淨露" in retryable_source
|
||||
assert "護潔露" in retryable_source
|
||||
assert "鋒利窄弧型剪刀" in retryable_source
|
||||
assert "COALESCE(la.hard_veto, false) = false" in retryable_source
|
||||
assert "match_diagnostic_json->>'comparison_mode'" in retryable_source
|
||||
assert "?| array[" in retryable_source
|
||||
|
||||
@@ -601,6 +601,36 @@ def test_marketplace_matcher_promotes_focused_exact_pack_rows_to_total_price():
|
||||
"OPI 官方直營.馬拉加葡萄酒類光繚-ISLL87.如膠似漆2.0系列指彩",
|
||||
"focused_exact_identity_opi_gel_polish_exact_model",
|
||||
),
|
||||
(
|
||||
"【The Ordinary】5%咖啡因 + EGCG兒茶眼部配方",
|
||||
"The Ordinary 5%咖啡因 + EGCG兒茶眼部配方 (30ml)",
|
||||
"focused_exact_identity_the_ordinary_caffeine_egcg_30ml",
|
||||
),
|
||||
(
|
||||
"【澳洲Natures Care】綿羊油(6 入組 125ml/瓶)",
|
||||
"【澳洲Natures Care】綿羊油(6 入組 125m/瓶)",
|
||||
"focused_exact_identity_natures_care_sheep_oil_exact_pack",
|
||||
),
|
||||
(
|
||||
"【TOMOON】德國奔月-超省力防飛濺頂級指甲剪/指甲刀(豪華套裝組-L號)",
|
||||
"TOMOON 德國奔月-超省力防飛濺頂級指甲剪/指甲刀 (豪華套裝組-L號)",
|
||||
"focused_exact_identity_tomoon_nail_clipper_luxury_size",
|
||||
),
|
||||
(
|
||||
"【HH草本新淨界】私密植萃抗菌潔淨露+私密衣物抗菌手洗精(200ml+200ml)",
|
||||
"HH私密植萃抗菌潔淨露(200ML)+私密衣物抗菌手洗精(200ML)【裡外兼顧組】",
|
||||
"focused_exact_identity_hh_private_cleanser_laundry_wash_set",
|
||||
),
|
||||
(
|
||||
"【SEBAMED 施巴】衛生護潔露200mlx2入(總代理)",
|
||||
"SEBAMED pH3.8女性私密護潔露200mlx2入",
|
||||
"focused_exact_identity_sebamed_ph38_private_wash_200ml_2pack",
|
||||
),
|
||||
(
|
||||
"【YES 德悅氏】德國進口 鋒利窄弧型剪刀(9cm)",
|
||||
"【YES 德悅氏】德國製造 鋒利窄弧型剪刀(9cm)",
|
||||
"focused_exact_identity_yes_curved_scissors_9cm",
|
||||
),
|
||||
(
|
||||
"【The Ordinary】Caffeine Solution 咖啡因 + EGCG兒茶眼部配方30ml",
|
||||
"The Ordinary 5%咖啡因 + EGCG兒茶眼部配方 (30ml)",
|
||||
@@ -680,6 +710,21 @@ def test_marketplace_matcher_blocks_opi_gel_polish_cross_model_autopromotion():
|
||||
assert "focused_exact_total_price_safe" not in diagnostics.reasons
|
||||
|
||||
|
||||
def test_marketplace_matcher_blocks_tomoon_cross_size_autopromotion():
|
||||
from services.marketplace_product_matcher import score_marketplace_match
|
||||
|
||||
diagnostics = score_marketplace_match(
|
||||
"【TOMOON】德國奔月-超省力防飛濺頂級指甲剪/指甲刀(豪華套裝組-L號)",
|
||||
"TOMOON 德國奔月-超省力防飛濺頂級指甲剪/指甲刀 (豪華套裝組-S號)",
|
||||
momo_price=599,
|
||||
competitor_price=599,
|
||||
)
|
||||
|
||||
assert diagnostics.price_basis != "total_price"
|
||||
assert "focused_exact_identity_tomoon_nail_clipper_luxury_size" not in diagnostics.reasons
|
||||
assert "focused_exact_total_price_safe" not in diagnostics.reasons
|
||||
|
||||
|
||||
def test_marketplace_matcher_promotes_recipe_box_marketing_line_drift():
|
||||
from services.marketplace_product_matcher import score_marketplace_match
|
||||
|
||||
@@ -1027,7 +1072,9 @@ def test_marketplace_matcher_ignores_quantity_plus_markers_inside_component_spec
|
||||
|
||||
assert diagnostics.score >= 0.76
|
||||
assert diagnostics.hard_veto is False
|
||||
assert diagnostics.alert_tier == "identity_review"
|
||||
assert diagnostics.price_basis == "total_price"
|
||||
assert diagnostics.alert_tier == "price_alert_exact"
|
||||
assert "focused_exact_identity_hh_private_cleanser_laundry_wash_set" in diagnostics.reasons
|
||||
assert "multi_component_count_conflict" not in diagnostics.reasons
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user