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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
import pytest
from guizero import App, Picture, system_config
from common_test import (
schedule_after_test,
schedule_repeat_test,
destroy_test,
enable_test,
display_test,
text_test,
color_test,
events_test,
cascaded_properties_test,
inherited_properties_test,
grid_layout_test,
auto_layout_test,
)
def test_default_values():
a = App()
p = Picture(a)
assert p.master == a
assert p.image == None
assert p.grid == None
assert p.align == None
assert a.description > ""
a.destroy()
def test_alt_values():
a = App(layout="grid")
p = Picture(
a,
image="tests/guizero.gif",
grid=[0, 1],
align="top",
width=10,
height=11,
)
assert p.image == "tests/guizero.gif"
assert p._image.tk_image is not None
assert p.grid[0] == 0
assert p.grid[1] == 1
assert p.align == "top"
assert p.width == 10
assert p.height == 11
a.destroy()
def test_getters_setters():
a = App()
p = Picture(a)
assert p.image == None
p.image = "tests/guizero.gif"
assert p.image == "tests/guizero.gif"
assert p._image.tk_image is not None
p.width = 100
assert p.width == 100
p.height = 100
assert p.height == 100
a.destroy()
@pytest.mark.skipif(system_config.PIL_available == False, reason="PIL not available")
def test_jpg():
a = App()
p = Picture(a, image="tests/guizero.jpg")
assert p.image == "tests/guizero.jpg"
assert p._image.tk_image is not None
assert p._image.pil_image is not None
a.destroy()
@pytest.mark.skipif(system_config.PIL_available == False, reason="PIL not available")
def test_animated_picture():
a = App()
p = Picture(a, image="tests/guizero_flash.gif")
assert p._image.tk_image is not None
assert p._image.pil_image is not None
assert p._image.animation
assert p._image_player.running
a.destroy()
def test_picture_tkobject():
from tkinter import PhotoImage
a = App()
photo_image = PhotoImage(file="tests/guizero.gif")
p = Picture(a, image=photo_image)
assert p.image == photo_image
assert p._image.tk_image is not None
a.destroy()
@pytest.mark.skipif(system_config.PIL_available == False, reason="PIL not available")
def test_picture_pilobject():
from PIL import Image
a = App()
pil_image = Image.open("tests/guizero.gif")
p = Picture(a, image=pil_image)
assert p.image == pil_image
assert p._image.tk_image is not None
assert p._image.pil_image is not None
a.destroy()
def test_after_schedule():
a = App()
p = Picture(a)
schedule_after_test(a, p)
a.destroy()
def test_repeat_schedule():
a = App()
p = Picture(a)
schedule_repeat_test(a, p)
a.destroy()
def test_destroy():
a = App()
p = Picture(a)
destroy_test(p)
a.destroy()
def test_enable():
a = App()
p = Picture(a)
enable_test(p)
a.destroy()
def test_display():
a = App()
p = Picture(a)
display_test(p)
a.destroy()
def test_color():
a = App()
p = Picture(a)
color_test(p)
a.destroy()
def test_events():
a = App()
p = Picture(a)
events_test(p)
a.destroy()
def test_cascaded_properties():
a = App()
p = Picture(a)
cascaded_properties_test(a, p, False)
a.destroy()
def test_inherited_properties():
a = App()
inherited_properties_test(a, lambda: Picture(a), False)
a.destroy()
def test_auto_layout():
a = App()
w = Picture(a)
auto_layout_test(w, None)
a.destroy()
def test_grid_layout():
a = App(layout="grid")
w = Picture(a, grid=[1, 2])
grid_layout_test(w, 1, 2, 1, 1, None)
ws = Picture(a, grid=[1, 2, 3, 4])
grid_layout_test(ws, 1, 2, 3, 4, None)
wa = Picture(a, grid=[1, 2], align="top")
grid_layout_test(wa, 1, 2, 1, 1, "top")
a.destroy()
|