forked from palantir/sqlite3worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlite3worker_test.py
executable file
·88 lines (76 loc) · 3.35 KB
/
sqlite3worker_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# Copyright (c) 2014 Palantir Technologies
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""sqlite3worker test routines."""
__author__ = "Shawn Lee"
__email__ = "shawnl@palantir.com"
__license__ = "MIT"
import os
import tempfile
import time
import unittest
import sqlite3worker
class Sqlite3WorkerTests(unittest.TestCase): # pylint:disable=R0904
"""Test out the sqlite3worker library."""
def setUp(self): # pylint:disable=C0103
self.tmp_file = tempfile.NamedTemporaryFile(
suffix="pytest", prefix="sqlite").name
self.sqlite3worker = sqlite3worker.Sqlite3Worker(self.tmp_file)
# Create sql db.
self.sqlite3worker.execute(
"CREATE TABLE tester (timestamp DATETIME, uuid TEXT)")
def tearDown(self): # pylint:disable=C0103
self.sqlite3worker.close()
os.unlink(self.tmp_file)
def test_bad_select(self):
"""Test a bad select query."""
query = "select THIS IS BAD SQL"
self.assertEqual(
self.sqlite3worker.execute(query),
(
"Query returned error: select THIS IS BAD SQL: "
"[]: no such column: THIS"))
def test_bad_insert(self):
"""Test a bad insert query."""
query = "insert THIS IS BAD SQL"
self.sqlite3worker.execute(query)
# Give it one second to clear the queue.
if self.sqlite3worker.queue_size != 0:
time.sleep(1)
self.assertEqual(self.sqlite3worker.queue_size, 0)
self.assertEqual(
self.sqlite3worker.execute("SELECT * from tester"), [])
def test_valid_insert(self):
"""Test a valid insert and select statement."""
self.sqlite3worker.execute(
"INSERT into tester values (?, ?)", ("2010-01-01 13:00:00", "bow"))
self.assertEqual(
self.sqlite3worker.execute("SELECT * from tester"),
[("2010-01-01 13:00:00", "bow")])
self.sqlite3worker.execute(
"INSERT into tester values (?, ?)", ("2011-02-02 14:14:14", "dog"))
# Give it one second to clear the queue.
if self.sqlite3worker.queue_size != 0:
time.sleep(1)
self.assertEqual(
self.sqlite3worker.execute("SELECT * from tester"),
[("2010-01-01 13:00:00", "bow"), ("2011-02-02 14:14:14", "dog")])
if __name__ == "__main__":
unittest.main()