|
| 1 | +# MIT License |
| 2 | + |
| 3 | +# Copyright (c) 2019 Georgios Papachristou |
| 4 | + |
| 5 | +# Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | +# of this software and associated documentation files (the "Software"), to deal |
| 7 | +# in the Software without restriction, including without limitation the rights |
| 8 | +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | +# copies of the Software, and to permit persons to whom the Software is |
| 10 | +# furnished to do so, subject to the following conditions: |
| 11 | + |
| 12 | +# The above copyright notice and this permission notice shall be included in all |
| 13 | +# copies or substantial portions of the Software. |
| 14 | + |
| 15 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 21 | +# SOFTWARE. |
| 22 | + |
| 23 | +import unittest |
| 24 | +from unittest.mock import patch |
| 25 | + |
| 26 | +from jarvis.core.processor import Processor |
| 27 | +from jarvis import settings |
| 28 | +from jarvis.utils.mongoDB import db |
| 29 | +from jarvis.skills.skills_registry import BASIC_SKILLS |
| 30 | + |
| 31 | + |
| 32 | +def get_skill_name_from_call_args(call_agrs): |
| 33 | + return call_agrs[0][0]['skill']['name'] |
| 34 | + |
| 35 | + |
| 36 | +@patch('jarvis.core.processor.Processor._execute_skill') |
| 37 | +@patch('jarvis.core.processor.engines.TTTEngine') |
| 38 | +class TestSkillMatching(unittest.TestCase): |
| 39 | + |
| 40 | + def test_all_skill_matches(self, mocked_ttt_engine, mocked_execute_skill): |
| 41 | + """ |
| 42 | + In this test we examine the matches or ALL skill tags with the functions |
| 43 | + If all skills matched right then the test passes otherwise not. |
| 44 | +
|
| 45 | + At the end we print a report with all the not matched cases. |
| 46 | +
|
| 47 | + """ |
| 48 | + |
| 49 | + verifications_errors = [] |
| 50 | + |
| 51 | + self.processor = Processor(settings, db) |
| 52 | + mocked_ttt_engine.return_value.recognize_input.return_value = 'hi' |
| 53 | + self.processor.run() |
| 54 | + |
| 55 | + for basic_skill in BASIC_SKILLS: |
| 56 | + print('--------------------------------------------------------------------------------------') |
| 57 | + print('Examine skill: {0}'.format(basic_skill.get('name'))) |
| 58 | + for tag in basic_skill.get('tags',).split(','): |
| 59 | + # If the skill has matching tags |
| 60 | + if tag: |
| 61 | + mocked_ttt_engine.return_value.recognize_input.return_value = tag |
| 62 | + self.processor.run() |
| 63 | + expected_skill = basic_skill.get('name') |
| 64 | + actual_skill = get_skill_name_from_call_args(mocked_execute_skill.call_args) |
| 65 | + try: |
| 66 | + self.assertEqual(expected_skill, actual_skill) |
| 67 | + except AssertionError as e: |
| 68 | + verifications_errors.append({'tag': tag, 'error': e}) |
| 69 | + |
| 70 | + print('-------------------------------------- SKILLS MATCHING REPORT --------------------------------------') |
| 71 | + if verifications_errors: |
| 72 | + for increment, e in enumerate(verifications_errors): |
| 73 | + print('{0})'.format(increment)) |
| 74 | + print('Not correct match with tag: {0}'.format(e.get('tag'))) |
| 75 | + print('Assertion values (expected != actual): {0}'.format(e.get('error'))) |
| 76 | + raise AssertionError |
| 77 | + else: |
| 78 | + print('All skills matched correctly!') |
0 commit comments