Adding upstream version 3.1.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
f2184ff4ed
commit
ec5391b244
104 changed files with 15144 additions and 0 deletions
20
tests/test_prioritization.py
Normal file
20
tests/test_prioritization.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
from pgcli.packages.prioritization import PrevalenceCounter
|
||||
|
||||
|
||||
def test_prevalence_counter():
|
||||
counter = PrevalenceCounter()
|
||||
sql = """SELECT * FROM foo WHERE bar GROUP BY baz;
|
||||
select * from foo;
|
||||
SELECT * FROM foo WHERE bar GROUP
|
||||
BY baz"""
|
||||
counter.update(sql)
|
||||
|
||||
keywords = ["SELECT", "FROM", "GROUP BY"]
|
||||
expected = [3, 3, 2]
|
||||
kw_counts = [counter.keyword_count(x) for x in keywords]
|
||||
assert kw_counts == expected
|
||||
assert counter.keyword_count("NOSUCHKEYWORD") == 0
|
||||
|
||||
names = ["foo", "bar", "baz"]
|
||||
name_counts = [counter.name_count(x) for x in names]
|
||||
assert name_counts == [3, 2, 2]
|
Loading…
Add table
Add a link
Reference in a new issue