Skip to content

Commit

Permalink
Moved voice mail unit test to test_voice_mail.py
Browse files Browse the repository at this point in the history
- re: #67
  • Loading branch information
emxsys committed Aug 19, 2020
1 parent 32ba736 commit 42fe487
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions tests/test_voicemail.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# test_voicemail.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.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)

0 comments on commit 42fe487

Please sign in to comment.