mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 07:22:37 -07:00
* Bump cherrypy from 18.8.0 to 18.9.0 Bumps [cherrypy](https://github.com/cherrypy/cherrypy) from 18.8.0 to 18.9.0. - [Changelog](https://github.com/cherrypy/cherrypy/blob/main/CHANGES.rst) - [Commits](https://github.com/cherrypy/cherrypy/compare/v18.8.0...v18.9.0) --- updated-dependencies: - dependency-name: cherrypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update cherrypy==18.9.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
99 lines
2 KiB
Python
99 lines
2 KiB
Python
# Originally contributed by Stefan Schukat as part of this arbitrary-sized
|
|
# arrays patch.
|
|
|
|
from win32com.client import gencache
|
|
from win32com.test import util
|
|
|
|
ZeroD = 0
|
|
OneDEmpty = []
|
|
OneD = [1, 2, 3]
|
|
TwoD = [[1, 2, 3], [1, 2, 3], [1, 2, 3]]
|
|
|
|
TwoD1 = [[[1, 2, 3, 5], [1, 2, 3], [1, 2, 3]], [[1, 2, 3], [1, 2, 3], [1, 2, 3]]]
|
|
|
|
OneD1 = [[[1, 2, 3], [1, 2, 3], [1, 2, 3]], [[1, 2, 3], [1, 2, 3]]]
|
|
|
|
OneD2 = [
|
|
[1, 2, 3],
|
|
[1, 2, 3, 4, 5],
|
|
[[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5]],
|
|
]
|
|
|
|
|
|
ThreeD = [[[1, 2, 3], [1, 2, 3], [1, 2, 3]], [[1, 2, 3], [1, 2, 3], [1, 2, 3]]]
|
|
|
|
FourD = [
|
|
[
|
|
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
|
|
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
|
|
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
|
|
],
|
|
[
|
|
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
|
|
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
|
|
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
|
|
],
|
|
]
|
|
|
|
LargeD = [
|
|
[[list(range(10))] * 10],
|
|
] * 512
|
|
|
|
|
|
def _normalize_array(a):
|
|
if type(a) != type(()):
|
|
return a
|
|
ret = []
|
|
for i in a:
|
|
ret.append(_normalize_array(i))
|
|
return ret
|
|
|
|
|
|
class ArrayTest(util.TestCase):
|
|
def setUp(self):
|
|
self.arr = gencache.EnsureDispatch("PyCOMTest.ArrayTest")
|
|
|
|
def tearDown(self):
|
|
self.arr = None
|
|
|
|
def _doTest(self, array):
|
|
self.arr.Array = array
|
|
self.assertEqual(_normalize_array(self.arr.Array), array)
|
|
|
|
def testZeroD(self):
|
|
self._doTest(ZeroD)
|
|
|
|
def testOneDEmpty(self):
|
|
self._doTest(OneDEmpty)
|
|
|
|
def testOneD(self):
|
|
self._doTest(OneD)
|
|
|
|
def testTwoD(self):
|
|
self._doTest(TwoD)
|
|
|
|
def testThreeD(self):
|
|
self._doTest(ThreeD)
|
|
|
|
def testFourD(self):
|
|
self._doTest(FourD)
|
|
|
|
def testTwoD1(self):
|
|
self._doTest(TwoD1)
|
|
|
|
def testOneD1(self):
|
|
self._doTest(OneD1)
|
|
|
|
def testOneD2(self):
|
|
self._doTest(OneD2)
|
|
|
|
def testLargeD(self):
|
|
self._doTest(LargeD)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
util.testmain()
|
|
except SystemExit as rc:
|
|
if not rc:
|
|
raise
|