-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved blacklist unit tests to pytest based test_blacklist.py
- Re: #67
- Loading branch information
Showing
2 changed files
with
166 additions
and
134 deletions.
There are no files selected for viewing
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
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,116 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# test_blacklist.py | ||
# | ||
# Copyright 2020 Bruce Schubert <[email protected]> | ||
# | ||
# 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. | ||
|
||
import os | ||
import sys | ||
import sqlite3 | ||
from pprint import pprint | ||
|
||
import pytest | ||
|
||
from src.callattendant import make_config | ||
from src.screening.blacklist import Blacklist | ||
from src.screening.query_db import query_db | ||
from src.screening.query_db import query_db | ||
|
||
@pytest.fixture(scope='module') | ||
def blacklist(): | ||
|
||
# Create the test db in RAM | ||
db = sqlite3.connect(":memory:") | ||
|
||
# Load and tweak the default config | ||
config = make_config() | ||
config['DEBUG'] = True | ||
config['TESTING'] = True | ||
|
||
# Create the blacklist to be tested | ||
blacklist = Blacklist(db, config) | ||
|
||
return blacklist | ||
|
||
def test_add_caller(blacklist): | ||
# Add a record | ||
callerid = {"NAME": "Bruce", "NMBR": "1234567890", "DATE": "1012", "TIME": "0600",} | ||
assert blacklist.add_caller(callerid, "Test") | ||
|
||
|
||
def test_check_number(blacklist): | ||
number = "1234567890" | ||
|
||
is_blacklisted, reason = blacklist.check_number(number) | ||
|
||
assert is_blacklisted | ||
assert reason == "Test" | ||
|
||
number = "1111111111" | ||
|
||
is_blacklisted, reason = blacklist.check_number(number) | ||
|
||
assert not is_blacklisted | ||
|
||
def test_get_number(blacklist): | ||
number = "1234567890" | ||
|
||
caller = blacklist.get_number(number) | ||
pprint(caller) | ||
|
||
assert caller[0][0] == number | ||
|
||
def test_multiple(blacklist): | ||
new_caller = {"NAME": "New Caller", "NMBR": "12312351234", "DATE": "1012", "TIME": "0600"} | ||
number = new_caller["NMBR"] | ||
name = new_caller["NAME"] | ||
reason = "Test" | ||
pprint(new_caller) | ||
|
||
assert blacklist.add_caller(new_caller, reason) | ||
|
||
caller = blacklist.get_number(number) | ||
pprint(caller) | ||
|
||
assert caller[0][0] == number | ||
assert caller[0][1] == name | ||
assert caller[0][2] == reason | ||
|
||
name = "Joe" | ||
reason = "Confirm" | ||
|
||
assert blacklist.update_number(number, name, reason) | ||
|
||
caller = blacklist.get_number(number) | ||
pprint(caller) | ||
|
||
assert caller[0][0] == number | ||
assert caller[0][1] == name | ||
assert caller[0][2] == reason | ||
|
||
assert blacklist.remove_number(number) | ||
|
||
is_blacklisted, reason = blacklist.check_number(number) | ||
assert not is_blacklisted | ||
|
||
caller = blacklist.get_number(number) | ||
pprint(caller) |