76 lines
3.1 KiB
Python
76 lines
3.1 KiB
Python
import re
|
|
from unittest.mock import patch
|
|
|
|
from assertpy import assert_that
|
|
|
|
from files.helpers import word_censor
|
|
from files.helpers.word_censor import create_variations_slur_regex, create_replace_map, censor_slurs, sub_matcher
|
|
|
|
|
|
def test_create_variations_slur_regex_single_word():
|
|
expected = [r"(\s|>)(retard)|(retard)(\s|<)",
|
|
r"(\s|>)(Retard)|(Retard)(\s|<)",
|
|
r"(\s|>)(RETARD)|(RETARD)(\s|<)"]
|
|
|
|
result = create_variations_slur_regex("retard")
|
|
|
|
assert_that(result).is_length(3).contains_only(*expected)
|
|
|
|
|
|
def test_create_variations_slur_regex_multiple_word():
|
|
expected = [r"(\s|>)(kill yourself)|(kill yourself)(\s|<)",
|
|
r"(\s|>)(Kill Yourself)|(Kill Yourself)(\s|<)",
|
|
r"(\s|>)(Kill yourself)|(Kill yourself)(\s|<)",
|
|
r"(\s|>)(KILL YOURSELF)|(KILL YOURSELF)(\s|<)"]
|
|
result = create_variations_slur_regex("kill yourself")
|
|
|
|
assert_that(result).is_length(4).contains_only(*expected)
|
|
|
|
|
|
@patch("files.helpers.word_censor.SLURS", {
|
|
"tranny": "🚂🚃🚃",
|
|
"kill yourself": "keep yourself safe",
|
|
"faggot": "cute twink",
|
|
})
|
|
def test_create_replace_map():
|
|
expected = {
|
|
"tranny": "🚂🚃🚃",
|
|
"Tranny": "🚂🚃🚃",
|
|
"TRANNY": "🚂🚃🚃",
|
|
"kill yourself": "keep yourself safe",
|
|
"Kill yourself": "Keep yourself safe",
|
|
"KILL YOURSELF": "KEEP YOURSELF SAFE",
|
|
"Kill Yourself": "Keep Yourself Safe",
|
|
"faggot": "cute twink",
|
|
"Faggot": "Cute twink",
|
|
"FAGGOT": "CUTE TWINK",
|
|
}
|
|
result = create_replace_map()
|
|
|
|
assert_that(result).is_equal_to(expected)
|
|
|
|
|
|
@patch("files.helpers.word_censor.REPLACE_MAP", {'retard': 'r-slur'})
|
|
def test_sub_matcher():
|
|
match = re.search(r"(\s|>)(retard)|(retard)(\s|<)", "<p>retard</p>")
|
|
assert_that(sub_matcher(match)).is_equal_to(">r-slur")
|
|
|
|
match = re.search(r"(\s|>)(retard)|(retard)(\s|<)", "<p>noretard</p>")
|
|
assert_that(sub_matcher(match)).is_equal_to("r-slur<")
|
|
|
|
|
|
@patch("files.helpers.word_censor.SLURS", {'retard': 'r-slur', 'manlet': 'little king'})
|
|
def test_censor_slurs():
|
|
word_censor.REPLACE_MAP = create_replace_map()
|
|
|
|
assert_that(censor_slurs(None, "<p>retard</p>")).is_equal_to("<p>r-slur</p>")
|
|
assert_that(censor_slurs(None, "<p>preretard</p>")).is_equal_to("<p>prer-slur</p>")
|
|
assert_that(censor_slurs(None, "that is Retarded like")).is_equal_to("that is R-slured like")
|
|
assert_that(censor_slurs(None, "that is SUPERRETARD like")).is_equal_to("that is SUPERR-SLUR like")
|
|
assert_that(censor_slurs(None, "<p>Manlets get out!</p>")).is_equal_to("<p>Little kings get out!</p>")
|
|
assert_that(censor_slurs(None, '... "retard" ...')).is_equal_to('... "retard" ...')
|
|
assert_that(censor_slurs(None, '... ReTaRd ...')).is_equal_to('... ReTaRd ...')
|
|
assert_that(censor_slurs(None, '... aretarded ...')).is_equal_to('... aretarded ...')
|
|
assert_that(censor_slurs(None, "LLM is a manlet hehe")).is_equal_to("LLM is a little king hehe")
|
|
assert_that(censor_slurs(None, "LLM is :marseycapitalistmanlet: hehe")) \
|
|
.is_equal_to("LLM is :marseycapitalistmanlet: hehe")
|