Pillow/Tests/test_imagegrab.py

56 lines
1.6 KiB
Python
Raw Normal View History

from .helper import PillowTestCase
import sys
2018-10-22 10:55:16 +03:00
import subprocess
try:
from PIL import ImageGrab
class TestImageGrab(PillowTestCase):
2014-06-10 13:10:47 +04:00
def test_grab(self):
im = ImageGrab.grab()
self.assert_image(im, im.mode, im.size)
2018-10-22 10:55:16 +03:00
def test_grabclipboard(self):
if sys.platform == "darwin":
subprocess.call(['screencapture', '-cx'])
2018-10-22 10:55:16 +03:00
else:
p = subprocess.Popen(['powershell', '-command', '-'],
stdin=subprocess.PIPE)
p.stdin.write(b'''[Reflection.Assembly]::LoadWithPartialName("System.Drawing")
[Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
$bmp = New-Object Drawing.Bitmap 200, 200
[Windows.Forms.Clipboard]::SetImage($bmp)''')
p.communicate()
im = ImageGrab.grabclipboard()
self.assert_image(im, im.mode, im.size)
2014-06-10 13:10:47 +04:00
except ImportError:
class TestImageGrab(PillowTestCase):
2014-06-10 13:10:47 +04:00
def test_skip(self):
self.skipTest("ImportError")
class TestImageGrabImport(PillowTestCase):
def test_import(self):
# Arrange
exception = None
# Act
try:
from PIL import ImageGrab
ImageGrab.__name__ # dummy to prevent Pyflakes warning
2014-09-16 18:19:15 +04:00
except Exception as e:
exception = e
# Assert
if sys.platform in ["win32", "darwin"]:
2017-06-03 06:34:52 +03:00
self.assertIsNone(exception)
else:
2014-09-16 17:44:51 +04:00
self.assertIsInstance(exception, ImportError)
self.assertEqual(str(exception),
2016-09-23 14:12:03 +03:00
"ImageGrab is macOS and Windows only")