Skip to content

Commit 5645803

Browse files
committedApr 20, 2020
Create skill matching test. Checks all the skill tags matches and creates a report.
1 parent 02ec2b2 commit 5645803

File tree

6 files changed

+86
-136
lines changed

6 files changed

+86
-136
lines changed
 

‎run_tests.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env bash
22
export PYTHONPATH="${PYTHONPATH}:./src/jarvis"
33
source jarvis_virtualenv/bin/activate
4-
python -m unittest discover -s ./src -p "*tests.py"
4+
sudo service mongod start
5+
python -m unittest discover -s ./src -p "*tests.py"
6+
sudo service mongod stop

‎src/jarvis/jarvis/skills/skill_analyzer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def tags(self):
4444
tags_list = []
4545
for skill in self.skills:
4646
tags_list.append(skill['tags'].split(','))
47-
return [' '.join(tag) for tag in tags_list]
47+
return [','.join(tag) for tag in tags_list]
4848

4949
def extract(self, user_transcript):
5050

@@ -71,7 +71,7 @@ def _replace_math_symbols_with_words(self, transcript):
7171
if value == word:
7272
replaced_transcript += ' ' + key
7373
else:
74-
replaced_transcript += ' ' + word
74+
replaced_transcript += ' ' + word
7575
return replaced_transcript
7676

7777
def _create_vectorizer(self):

‎src/jarvis/jarvis/utils/mapping.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@
2222

2323
math_symbols_mapping = {
2424
'equal': '=',
25-
'open parentheses': '(',
26-
'close parentheses': ')',
25+
# ---- The following symbols are disable because are not matched correctly with the math skill ----.
26+
# 'open parentheses': '(',
27+
# 'close parentheses': ')',
2728
'plus': '+',
2829
'minus': '-',
2930
'asterisk': '*',

‎src/tests/E2E_tests.py

-55
This file was deleted.

‎src/tests/skill_analyzer_tests.py

-76
This file was deleted.

‎src/tests/skills_matching_tests.py

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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

Comments
 (0)
Please sign in to comment.