Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
highlight_html test: add a test for phrase case
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
test/command/suite/select/function/highlight_html/lexicon/phrase.expected
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,37 @@ | ||
| table_create Entries TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Entries body COLUMN_SCALAR ShortText | ||
| [[0,0.0,0.0],true] | ||
| table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer 'TokenNgram("report_source_location", true)' --normalizer 'NormalizerNFKC100' | ||
| [[0,0.0,0.0],true] | ||
| column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body | ||
| [[0,0.0,0.0],true] | ||
| load --table Entries | ||
| [ | ||
| {"body": "one two three four five six"} | ||
| ] | ||
| [[0,0.0,0.0],1] | ||
| select Entries --match_columns body --query '"two three" OR five' --output_columns 'highlight_html(body, Terms)' | ||
| [ | ||
| [ | ||
| 0, | ||
| 0.0, | ||
| 0.0 | ||
| ], | ||
| [ | ||
| [ | ||
| [ | ||
| 1 | ||
| ], | ||
| [ | ||
| [ | ||
| "highlight_html", | ||
| null | ||
| ] | ||
| ], | ||
| [ | ||
| "one<span class=\"keyword\"> two three</span> four<span class=\"keyword\"> five</span> six" | ||
| ] | ||
| ] | ||
| ] | ||
| ] |
17 changes: 17 additions & 0 deletions
17
test/command/suite/select/function/highlight_html/lexicon/phrase.test
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,17 @@ | ||
| table_create Entries TABLE_NO_KEY | ||
| column_create Entries body COLUMN_SCALAR ShortText | ||
|
|
||
| table_create Terms TABLE_PAT_KEY ShortText \ | ||
| --default_tokenizer 'TokenNgram("report_source_location", true)' \ | ||
| --normalizer 'NormalizerNFKC100' | ||
| column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body | ||
|
|
||
| load --table Entries | ||
| [ | ||
| {"body": "one two three four five six"} | ||
| ] | ||
|
|
||
| select Entries \ | ||
| --match_columns body \ | ||
| --query '"two three" OR five' \ | ||
| --output_columns 'highlight_html(body, Terms)' |