From 42fe4877919d6d0272542ba3f3bef7060868e26a Mon Sep 17 00:00:00 2001 From: Bruce Schubert Date: Wed, 19 Aug 2020 11:56:01 -0700 Subject: [PATCH] Moved voice mail unit test to test_voice_mail.py - re: #67 --- tests/test_voicemail.py | 93 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 tests/test_voicemail.py diff --git a/tests/test_voicemail.py b/tests/test_voicemail.py new file mode 100644 index 0000000..5d93f8e --- /dev/null +++ b/tests/test_voicemail.py @@ -0,0 +1,93 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# test_voicemail.py +# +# Copyright 2020 Bruce Schubert +# +# 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.hardware.modem import Modem +from src.screening.calllogger import CallLogger +from src.messaging.voicemail import VoiceMail + +# Dummy call back function for modem +def dummy_handle_caller(caller): + pass + +# Test data +caller = {"NAME": "Bruce", "NMBR": "1234567890", "DATE": "1012", "TIME": "0600"} + + +@pytest.fixture(scope='module') +def db(): + + # Create the test db in RAM + db = sqlite3.connect(":memory:") + return db + +@pytest.fixture(scope='module') +def config(): + + # Load and tweak the default config + config = make_config() + config['DEBUG'] = True + config['TESTING'] = True + return config + +@pytest.fixture(scope='module') +def logger(db, config): + + logger = CallLogger(db, config) + return logger + +@pytest.fixture(scope='module') +def modem(db, config): + + modem = Modem(config, dummy_handle_caller) + modem.open_serial_port() + yield modem + modem.ring_indicator.close() + +@pytest.fixture(scope='module') +def voicemail(db, config, modem): + + voicemail = VoiceMail(db, config, modem) + return voicemail + +def test_multiple(voicemail, logger): + + call_no = logger.log_caller(caller) + + msg_no = voicemail.record_message(call_no, caller) + + assert msg_no > 0 + + count = voicemail.messages.get_unplayed_count() + assert count == 1 + + assert voicemail.delete_message(msg_no)