mirror of
https://github.com/JuanCanham/skill-desktop-launcher.git
synced 2024-11-22 00:40:10 +00:00
23 lines
971 B
Python
23 lines
971 B
Python
from test.integrationtests.skills.skill_tester import SkillTest
|
|
import mock
|
|
|
|
|
|
SEARCH_BASE = 'http://www.google.com/search?&sourceid=navclient&btnI=I&q={}'
|
|
|
|
|
|
@mock.patch('mycroft.skills.mycroft_skill.mycroft_skill.DeviceApi.send_email')
|
|
def test_runner(skill, example, emitter, loader, m1):
|
|
s = [s for s in loader.skills if s and s.root_dir == skill][0]
|
|
with mock.patch('webbrowser.open') as m:
|
|
ret = SkillTest(skill, example, emitter).run(loader)
|
|
if example.endswith('find.puppies.json'):
|
|
m.assert_called_with(SEARCH_BASE.format('wikipedia%20puppies'))
|
|
elif example.endswith('find.puppies.json'):
|
|
m.assert_called_with(SEARCH_BASE.format('imgur'))
|
|
elif example.endswith('open.tumblr.json'):
|
|
m.assert_called_with(SEARCH_BASE.format('tumblr'))
|
|
elif example.endswith('search.for.kittens.json'):
|
|
m.assert_called_with(SEARCH_BASE.format('youtube%20for%20kittens'))
|
|
|
|
return ret
|