1
0
Fork 0
onnx-web/api/tests/chain/test_blend_mask.py

29 lines
788 B
Python

import unittest
from PIL import Image
from onnx_web.chain.blend_mask import BlendMaskStage
from onnx_web.chain.result import StageResult
from onnx_web.params import HighresParams, SizeChart, UpscaleParams
class BlendMaskStageTests(unittest.TestCase):
def test_empty(self):
stage = BlendMaskStage()
sources = StageResult.empty()
result = stage.run(
None,
None,
None,
None,
sources,
highres=HighresParams(False, 1, 0, 0),
upscale=UpscaleParams(""),
stage_mask=Image.new("RGBA", (64, 64)),
stage_source=Image.new("RGBA", (64, 64)),
dims=(0, 0, SizeChart.auto),
)
result.validate()
self.assertEqual(len(result), 0)