forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_libmysqlclient.py
More file actions
32 lines (29 loc) · 1.09 KB
/
Copy pathtest_libmysqlclient.py
File metadata and controls
32 lines (29 loc) · 1.09 KB
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
import unittest
from unittest import mock
from tests.recipes.recipe_lib_test import BaseTestForCmakeRecipe
class TestLibmysqlclientRecipe(BaseTestForCmakeRecipe, unittest.TestCase):
"""
An unittest for recipe :mod:`~pythonforandroid.recipes.libmysqlclient`
"""
recipe_name = "libmysqlclient"
@mock.patch("pythonforandroid.recipes.libmysqlclient.sh.rm")
@mock.patch("pythonforandroid.recipes.libmysqlclient.sh.cp")
@mock.patch("pythonforandroid.util.chdir")
@mock.patch("pythonforandroid.build.ensure_dir")
@mock.patch("pythonforandroid.archs.glob")
@mock.patch("pythonforandroid.archs.find_executable")
def test_build_arch(
self,
mock_find_executable,
mock_glob,
mock_ensure_dir,
mock_current_directory,
mock_sh_cp,
mock_sh_rm,
):
# We overwrite the base test method because we need
# to mock a little more (`sh.cp` and `sh.rm`)
super().test_build_arch()
# make sure that the mocked methods are actually called
mock_sh_cp.assert_called()
mock_sh_rm.assert_called()