Skip to content

Commit

Permalink
WIP: Add tests for SharedMemory and NDArray
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Jul 17, 2024
1 parent 060f6df commit b1bde5a
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 1 deletion.
66 changes: 66 additions & 0 deletions tests/test_shm.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
###
# #%L
# Appose: multi-language interprocess cooperation with shared memory.
# %%
# Copyright (C) 2023 Appose developers.
# %%
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# #L%
###

from multiprocessing.shared_memory import SharedMemory

import appose
from appose.service import TaskStatus
from appose.types import NDArray

ndarray_inspect = """
task.outputs["size"] = data.shm.size
task.outputs["dtype"] = data.dtype
task.outputs["shape"] = data.shape
task.outputs["sum"] = sum(v for v in data.shm.buf)
"""


def test_ndarray():
env = appose.system()
with env.python() as service:
# Construct the data.
shm = SharedMemory(create=True, size=2 * 2 * 20 * 25)
shm.buf[0] = 123
shm.buf[456] = 78
shm.buf[1999] = 210
data = NDArray("uint16", [2, 20, 25], shm)

# Run the task.
task = service.task(ndarray_inspect, {"data": data})
task.wait_for()

# Validate the execution result.
assert TaskStatus.COMPLETE == task.status
assert 2 * 20 * 25 * 2 == task.outputs["size"]
assert "uint16" == task.outputs["dtype"]
assert [2, 20, 25] == task.outputs["shape"]
assert 123 + 78 + 210 == task.outputs["sum"]

# Clean up.
shm.unlink()
24 changes: 23 additions & 1 deletion tests/test_types.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import re
import unittest

import appose
Expand All @@ -18,7 +19,17 @@ class TypesTest(unittest.TestCase):
"AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz"
'~!@#$%^&*()",'
'"numbers":[1,1,2,3,5,8],'
'"words":["quick","brown","fox"]'
'"words":["quick","brown","fox"],'
'"ndArray":{'
'"appose_type":"ndarray",'
'"shm":{'
'"appose_type":"shm",'
'"name":"SHM_NAME",'
'"size":4000'
"},"
'"dtype":"float32",'
'"shape":[2,20,25]'
"}"
"}"
)

Expand Down Expand Up @@ -79,3 +90,14 @@ def test_decode(self):
self.assertEqual(self.STRING, data["aString"])
self.assertEqual(self.NUMBERS, data["numbers"])
self.assertEqual(self.WORDS, data["words"])
ndArray = data["ndArray"]
with ndArray:
self.assertEqual("float32", ndArray.dtype)
self.assertEqual([2, 20, 25], ndArray.shape)

def generalize_shm_name(self, json_str):
if json_str is None:
return None
return re.sub(
'("shm":{"appose_type":"shm","name":").*?"', '\\1SHM_NAME"', json_str
)

0 comments on commit b1bde5a

Please sign in to comment.