57 lines
1.9 KiB
Python
57 lines
1.9 KiB
Python
# Copyright 2019 Mycroft AI Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
import tempfile
|
|
from pathlib import Path
|
|
from shutil import rmtree
|
|
from unittest import TestCase
|
|
from unittest.mock import patch
|
|
|
|
from .mocks import mock_msm, mock_config, MessageBusMock
|
|
|
|
|
|
class MycroftUnitTestBase(TestCase):
|
|
mock_package = None
|
|
use_msm_mock = False
|
|
|
|
def setUp(self):
|
|
temp_dir = tempfile.mkdtemp()
|
|
self.temp_dir = Path(temp_dir)
|
|
self.message_bus_mock = MessageBusMock()
|
|
self._mock_msm()
|
|
self._mock_config()
|
|
self._mock_log()
|
|
|
|
def _mock_msm(self):
|
|
if self.use_msm_mock:
|
|
msm_patch = patch(self.mock_package + 'create_msm')
|
|
self.addCleanup(msm_patch.stop)
|
|
self.create_msm_mock = msm_patch.start()
|
|
self.msm_mock = mock_msm(self.temp_dir)
|
|
self.create_msm_mock.return_value = self.msm_mock
|
|
|
|
def _mock_config(self):
|
|
config_mgr_patch = patch(self.mock_package + 'Configuration')
|
|
self.addCleanup(config_mgr_patch.stop)
|
|
self.config_mgr_mock = config_mgr_patch.start()
|
|
self.config_mgr_mock.get = mock_config(self.temp_dir)
|
|
|
|
def _mock_log(self):
|
|
log_patch = patch(self.mock_package + 'LOG')
|
|
self.addCleanup(log_patch.stop)
|
|
self.log_mock = log_patch.start()
|
|
|
|
def tearDown(self):
|
|
rmtree(str(self.temp_dir))
|