summaryrefslogtreecommitdiff
path: root/service/test/search/test_search_query.py
blob: a5f3be99e8c1d5dac7ea787f7b15b117753901a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import sys, os

from app.search import SearchQuery

def test_one_tag():
    assert SearchQuery.compile(u"in:inbox")["tags"] == ["inbox"]
    assert SearchQuery.compile(u"in:trash")["tags"] == ["trash"]
    

def test_two_tags_or():
    assert SearchQuery.compile(u"in:inbox or in:trash")["tags"] == ["inbox", "trash"]

    
def test_tag_negate():
    assert SearchQuery.compile(u"-in:trash")["not_tags"] == ["trash"]

def test_general_search():
    assert SearchQuery.compile(u"searching")["general"] == "searching"

def test_tags_with_quotes():
    assert SearchQuery.compile(u"in:\"inbox\"")["tags"] == ["inbox"]