summaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2020-04-06 13:51:55 +0200
committerantirez <antirez@gmail.com>2020-04-06 13:51:55 +0200
commit121c51f4f338dcb160398c3254024867807aa112 (patch)
treea9486ab9ac6e7fea00fe27f4e6f5df7f4dc8dbb8 /tests/unit
parentaf5c11874c4e534db0ca1c44c2ca20fec1ab2700 (diff)
parentaf3c722feccb2d002e57f02ee5ef623f86e7ea2f (diff)
downloadredis-121c51f4f338dcb160398c3254024867807aa112.tar.gz
Merge branch 'lcs' into unstable
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/type/string.tcl30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/unit/type/string.tcl b/tests/unit/type/string.tcl
index 7122fd987..b9ef9de7a 100644
--- a/tests/unit/type/string.tcl
+++ b/tests/unit/type/string.tcl
@@ -419,4 +419,34 @@ start_server {tags {"string"}} {
r set foo bar
r getrange foo 0 4294967297
} {bar}
+
+ set rna1 {CACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTTTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATAACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCAGCCGATCATCAGCACATCTAGGTTTCGTCCGGGTGTG}
+ set rna2 {ATTAAAGGTTTATACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTTTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATAACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCAGCCGATCATCAGCACATCTAGGTTT}
+ set rnalcs {ACCTTCCCAGGTAACAAACCAACCAACTTTCGATCTCTTGTAGATCTGTTCTCTAAACGAACTTTAAAATCTGTGTGGCTGTCACTCGGCTGCATGCTTAGTGCACTCACGCAGTATAATTAATAACTAATTACTGTCGTTGACAGGACACGAGTAACTCGTCTATCTTCTGCAGGCTGCTTACGGTTTCGTCCGTGTTGCAGCCGATCATCAGCACATCTAGGTTT}
+
+ test {LCS string output with STRINGS option} {
+ r LCS STRINGS $rna1 $rna2
+ } $rnalcs
+
+ test {LCS len} {
+ r LCS LEN STRINGS $rna1 $rna2
+ } [string length $rnalcs]
+
+ test {LCS with KEYS option} {
+ r set virus1 $rna1
+ r set virus2 $rna2
+ r LCS KEYS virus1 virus2
+ } $rnalcs
+
+ test {LCS indexes} {
+ dict get [r LCS IDX KEYS virus1 virus2] matches
+ } {{{238 238} {239 239}} {{236 236} {238 238}} {{229 230} {236 237}} {{224 224} {235 235}} {{1 222} {13 234}}}
+
+ test {LCS indexes with match len} {
+ dict get [r LCS IDX KEYS virus1 virus2 WITHMATCHLEN] matches
+ } {{{238 238} {239 239} 1} {{236 236} {238 238} 1} {{229 230} {236 237} 2} {{224 224} {235 235} 1} {{1 222} {13 234} 222}}
+
+ test {LCS indexes with match len and minimum match len} {
+ dict get [r LCS IDX KEYS virus1 virus2 WITHMATCHLEN MINMATCHLEN 5] matches
+ } {{{1 222} {13 234} 222}}
}