Skip to content

Commit

Permalink
✅ Added tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Psychokiller1888 committed Oct 8, 2020
1 parent 8947baf commit 8a6c28f
Show file tree
Hide file tree
Showing 78 changed files with 2,912 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tests/base/test_AssistantManager.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from unittest import TestCase


class TestAssistantManager(TestCase):

def test_on_start(self):
pass # Nothing to test()


def test_clear_assistant(self):
pass # Nothing to test()


def test_check_assistant(self):
pass # Nothing to test()


def test_check_consistency(self):
pass # Nothing to test()


def test_train(self):
pass # Nothing to test()


def test_link_assistant(self):
pass # Nothing to test()


def test_new_assistant(self):
pass # Nothing to test()


def test_skill_resource(self):
pass # Nothing to test()
191 changes: 191 additions & 0 deletions tests/base/test_ConfigManager.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
from unittest import TestCase


class TestConfigManager(TestCase):

def test_on_start(self):
pass # Nothing to test()


def test__load_check_and_update_alice_config_file(self):
pass # Nothing to test()


def test_load_json_from_file(self):
pass # Nothing to test()


def test_update_alice_configuration(self):
pass # Nothing to test()


def test_bulk_update_alice_configurations(self):
pass # Nothing to test()


def test_delete_pending_alice_configuration_updates(self):
pass # Nothing to test()


def test_update_skill_configuration_file(self):
pass # Nothing to test()


def test_write_to_alice_configuration_file(self):
pass # Nothing to test()


def test__write_to_skill_configuration_file(self):
pass # Nothing to test()


def test_load_snips_configurations(self):
pass # Nothing to test()


def test_update_snips_configuration(self):
pass # Nothing to test()


def test_get_snips_configuration(self):
pass # Nothing to test()


def test_config_alice_exists(self):
pass # Nothing to test()


def test_config_skill_exists(self):
pass # Nothing to test()


def test_get_alice_config_by_name(self):
pass # Nothing to test()


def test_get_skill_config_by_name(self):
pass # Nothing to test()


def test_get_skill_configs(self):
pass # Nothing to test()


def test_get_skill_configs_template_by_name(self):
pass # Nothing to test()


def test_get_skill_configs_template(self):
pass # Nothing to test()


def test_load_check_and_update_skill_configurations(self):
pass # Nothing to test()


def test__new_skill_config_file(self):
pass # Nothing to test()


def test_change_active_language(self):
pass # Nothing to test()


def test_get_alice_config_type(self):
pass # Nothing to test()


def test_is_alice_conf_hidden(self):
pass # Nothing to test()


def test_get_alice_conf_update_pre_processing(self):
pass # Nothing to test()


def test_get_alice_conf_update_post_processing(self):
pass # Nothing to test()


def test_do_config_update_pre_processing(self):
pass # Nothing to test()


def test_do_config_update_post_processing(self):
pass # Nothing to test()


def test_update_mqtt_settings(self):
pass # Nothing to test()


def test_reconnect_mqtt(self):
pass # Nothing to test()


def test_reload_asr(self):
pass # Nothing to test()


def test_reload_tts(self):
pass # Nothing to test()


def test_check_new_admin_pin_code(self):
pass # Nothing to test()


def test_update_admin_pin_code(self):
pass # Nothing to test()


def test_enable_disable_sound(self):
pass # Nothing to test()


def test_restart_wakeword_engine(self):
pass # Nothing to test()


def test_reload_wakeword(self):
pass # Nothing to test()


def test_refresh_store_data(self):
pass # Nothing to test()


def test_inject_asound(self):
pass # Nothing to test()


def test_update_timezone(self):
pass # Nothing to test()


def test_toggle_debug_logs(self):
pass # Nothing to test()


def test_get_github_auth(self):
pass # Nothing to test()


def test_snips_configurations(self):
pass # Nothing to test()


def test_alice_configurations(self):
pass # Nothing to test()


def test_alice_configuration_categories(self):
pass # Nothing to test()


def test_vital_configs(self):
pass # Nothing to test()


def test_alice_template_configurations(self):
pass # Nothing to test()
Loading

0 comments on commit 8a6c28f

Please sign in to comment.