-
Notifications
You must be signed in to change notification settings - Fork 2
/
__init__.py
278 lines (255 loc) · 11.5 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import copy
import csv
import json
import os
from os.path import join
import time
from datetime import datetime
from subprocess import check_output, Popen
from time import sleep
from mycroft import MycroftSkill, intent_file_handler
from mycroft.api import DeviceApi
from mycroft.configuration import Configuration
from mycroft.messagebus.message import Message
from mycroft.util.format import nice_duration
class SkillTesting(MycroftSkill):
def __init__(self):
MycroftSkill.__init__(self)
self.reset_test_env()
def initialize(self):
self.update_settings()
self.file_path_base = get_skills_dir()
self.file_path_reading_output = '/'.join([self.file_system.path,
'reading-output'])
if not os.path.isdir(self.file_path_reading_output):
os.mkdir(self.file_path_reading_output)
self.file_path_test = 'test/intent'
def update_settings(self):
self.input_utterances = False
self.test_identifier = self.settings.get('test_identifier')
remote_phrases = self.settings.get('phrases')
if remote_phrases is not None:
self.input_utterances = list(csv.reader([remote_phrases],
skipinitialspace=True))[0]
if not self.input_utterances:
self.log.info('No remote phrases, reading local')
try:
local_phrases = os.path.join(
self.file_system.path,
'utterances.csv'
)
with open(local_phrases) as f:
reader = list(csv.reader(f))
if len(reader) == 1:
utterances = reader[0]
else:
utterances = [ i[0] for i in reader ]
self.input_utterances = [x.strip() for x in utterances]
except FileNotFoundError:
self.log.exception('No remote or local utterances found')
else:
self.log.info('Using remote phrases')
self.delay = int(self.settings.get('delay', '30'))
@intent_file_handler('read.utterances.intent')
def read_utterances(self, message):
self.update_settings()
sleep(10)
if not self.input_utterances:
self.speak_dialog('reading.no.utterances')
return
num_tests = len(self.input_utterances)
self.log.debug('Running {} tests.'.format(num_tests))
avg_response_time = 5
estimated_length = nice_duration(self.delay * 2 + num_tests * (
self.delay + avg_response_time))
self.speak_dialog('reading.started',
data={'num': num_tests,
'estimated_length': estimated_length})
sleep(self.delay)
# Add extra utterance to call final code
# Why? Workaround as code in handler after phrase loop doesn't execute
self.input_utterances.append(self.translate('trigger.reading.complete'))
self.add_event('mycroft.skill.handler.start', self.detect_handler)
self.add_event('speak', self.detect_response)
self.add_event('recognizer_loop:audio_output_start', self.detect_audio_out)
self.add_event('recognizer_loop:record_begin', self.attempt_response)
for i, phrase in enumerate(self.input_utterances):
# if previous single result exists add to output and reset
if self.test_result:
self.all_test_results.append(self.test_result)
self.test_result = []
self.responses = []
# strip white space and text delimiters
phrase = phrase.strip().strip('"').strip()
# Extract any responses required for intent eg set timer>10 minutes
if '>' in phrase:
phrase, *self.responses = phrase.split('>')
self.log.debug("self.responses: {}".format(self.responses))
# If not the last, as last utterance triggers completion.
if i < len(self.input_utterances) - 1:
self.test_result.append(phrase)
self.test_start_time = time.time()
self.bus.emit(Message("recognizer_loop:utterance",
{'utterances': [phrase],
'lang': 'en-us'}))
sleep(self.delay)
def detect_handler(self, m):
tick = time.time()
handler_message_data = json.loads(m.serialize())['data']
self.log.debug('Detected Skill handler: {}'.format(handler_message_data))
keys = handler_message_data.keys()
# Normal Skills
if 'name' in keys:
name, intent = handler_message_data['name'].split('.')
if name == 'SkillTesting':
return
# Fallback handler
elif 'handler' in keys and len(self.test_result) == 1:
name, intent = ('Fallback','No intent triggered')
else:
name, intent = (False, False)
return
self.test_result = [self.test_result[0], name, intent, self._get_timer_interval(tick)]
def detect_response(self, m):
tick = time.time()
message_data = json.loads(m.serialize())['data']
self.log.debug('Detected spoken response: {}'.format(message_data))
if 'utterance' in message_data.keys() and \
message_data['utterance'] != self.translate('reading.complete'):
if len(self.test_result) == 1:
self.test_result.extend(('FAILED','FAILED',message_data['utterance']))
else:
self.test_result.append((message_data['utterance']))
if len(self.test_result) == 5:
self.test_result.insert(4, self._get_timer_interval(tick))
def detect_audio_out(self, m):
tick = time.time()
message_data = json.loads(m.serialize())['data']
self.log.debug('Detected audio output start: {}'.format(message_data))
if len(self.test_result) == 6:
self.test_result.insert(5, self._get_timer_interval(tick))
def attempt_response(self, m):
if self.responses:
this_response = self.responses.pop(0)
sleep(1)
self.bus.emit(Message("recognizer_loop:utterance",
{'utterances': [this_response],
'lang': 'en-us'}))
self.test_result.append(this_response)
def _get_timer_interval(self, tick):
duration = tick - self.test_start_time
return int(duration * 1000) / 1000
@intent_file_handler('reading.complete.intent')
def handle_reading_complete(self, message):
sleep(self.delay)
self.remove_event('mycroft.skill.handler.start')
self.remove_event('speak')
self.remove_event('recognizer_loop:audio_output_start')
self.speak_dialog('reading.complete')
# Save locally to potentially generate tests from
# Remove unsupported characters from filename
if self.test_identifier in (None, ''):
self.test_identifier = datetime.now().strftime('%Y-%m-%d_%H-%M-%S')
file_name = ''.join(
x for x in self.test_identifier \
if (x.isalnum() or x in "._-")) + '.csv'
# TODO Actually track which output files are created and manage them
self.output_file = '/'.join([self.file_path_reading_output, file_name])
with open(self.output_file, 'w') as f:
writer = csv.writer(f, quoting=csv.QUOTE_ALL)
writer.writerows(self.all_test_results)
# Upload to Termbin
upload_cmd = 'cat ' + self.output_file + ' | nc termbin.com 9999'
url = check_output(upload_cmd, shell=True).decode().strip('\n\x00')
# Email to User
data = {
'test_identifier': self.test_identifier,
'url': url,
'device_name': self.get_device_name(),
'num_tests': len(self.all_test_results) - 1
}
email = '\n'.join(self.translate_template('phrase.results.email', data))
subject = self.translate('phrase.results.email.subject', data)
self.send_email(subject, email)
# Reset variables and finish
self.reset_test_env()
def reset_test_env(self):
self.all_test_results = [['Utterance', 'Skill', 'IntentHandler', \
'TimeToIntent', 'TimeToTextRes', \
'TimeToAudioRes', 'Responses']]
self.test_result = []
self.responses = []
self.files_created = []
def get_device_name(self):
try:
return DeviceApi().get()['name']
except:
return self.log.exception('API Error')
return ':error:'
@intent_file_handler('create.tests.intent')
def handle_create_tests(self, message):
# imported_csv = '/'.join([
# self.file_path_base,
# 'skill-testing-skill.krisgesling',
# 'tests_to_create.csv'])
# self.create_tests(imported_csv)
self.log.debug('Creating test files')
with open(self.output_file) as csvfile:
tests_to_create = csv.DictReader(csvfile)
for test in tests_to_create:
if test['Skill'] == '':
continue
test_file_name = "".join(
x for x in test['Utterance'] \
if (x.isalnum() or x in "._-")) + 'intent.json'
# TODO Fix - need to get Skill directory from Skillname
# [self.file_path_base, test['Skill'], \
test_file_path = '/'.join(
[self.file_path_base, 'mycroft-weather.mycroftai', \
self.file_path_test, test_file_name])
self.files_created.append(test_file_path)
with open(test_file_path, "w+") as test_file:
test_file.write(self.test_template(
test['Utterance'], test['IntentHandler']))
test_file.close()
def test_template(self, utterance, intent_type):
return '\n'.join(['{',
' "utterance": "{utterance}",',
' "intent_type": "{intent_type}"',
'}'])
@intent_file_handler('run.tests.intent')
def handle_run_tests(self, message):
self.speak('running tests')
os.system('mycroft-start skillstest')
@intent_file_handler('remove.tests.intent')
def handle_remove_tests(self, message):
self.log.debug('Removing files')
files_removed = []
for f in self.files_created:
if os.path.exists(f):
os.remove(f)
files_removed.append(f)
if set(files_removed) == set(self.files_created):
self.speak_dialog('all.files.removed')
self.files_created = []
else:
self.speak_dialog('file.removal.failed')
self.log.info('WARNING: Some files could not be removed')
files_not_removed = set(self.files_created) - set(files_removed)
for f in files_not_removed:
self.log.info(f)
def get_skills_dir():
return (
os.path.expanduser(os.environ.get('SKILLS_DIR', '')) or
os.path.expanduser(join(
Configuration.get()['data_dir'],
Configuration.get()['skills']['msm']['directory']
))
)
def stop(self):
self.remove_event('mycroft.skill.handler.start')
self.remove_event('speak')
self.remove_event('recognizer_loop:audio_output_start')
pass
def create_skill():
return SkillTesting()