TrieTest.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace catchAdmin\tests\unit;
  3. use PHPUnit\Framework\TestCase;
  4. use catcher\library\Trie;
  5. class TrieTest extends TestCase
  6. {
  7. protected function getTries()
  8. {
  9. $words = [
  10. '你大爷', '尼玛', 'SB'
  11. ];
  12. $trie = new Trie();
  13. foreach ($words as $word) {
  14. $trie->add($word);
  15. }
  16. return $trie->getTries();
  17. }
  18. public function testData()
  19. {
  20. $this->assertEquals([
  21. '你' => ['大' => ['爷' => ['end' => true]]],
  22. '尼' => ['玛' => ['end' => true]],
  23. 'S' => ['B' => ['end' => true]],
  24. ], $this->getTries());
  25. }
  26. public function testReplace()
  27. {
  28. $string = '你大爷的真尼玛SB';
  29. $this->assertEquals('***的真****',(new Trie())->replace($this->getTries(), $string));
  30. }
  31. public function testHasSensitiveWord()
  32. {
  33. $string = '你大爷的真尼玛SB';
  34. $res = (new Trie())->getSensitiveWords($this->getTries(), $string, false);
  35. $this->assertEquals('你大爷', $res);
  36. }
  37. }