Skip to content

Commit fefa5a3

Browse files
committed
tests/camera: Convert test_camera_viewport to Hypothesis
1 parent a90d8af commit fefa5a3

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

tests/test_camera.py

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1+
from hypothesis import given
2+
13
from ppb import BaseSprite
24
from ppb import Vector
35
from ppb.camera import Camera
6+
from ppb.testutils import integer_vectors
7+
8+
9+
ONE_K = 1024
10+
ONE_M = ONE_K * ONE_K
411

512

6-
def test_camera_viewport():
7-
cam = Camera(viewport=(0, 0, 800, 600))
8-
assert cam.point_in_viewport(Vector(400, 400))
9-
assert not cam.point_in_viewport(Vector(900, 600))
10-
assert cam.viewport_offset == Vector(400, 300)
13+
@given(diagonal=integer_vectors(min_value=2, max_value=ONE_M))
14+
def test_camera_viewport(diagonal: Vector):
15+
x, y = diagonal
16+
cam = Camera(viewport=(0, 0, x, y))
17+
assert cam.point_in_viewport(0.5 * diagonal)
18+
assert not cam.point_in_viewport(diagonal + (100, 100))
19+
assert cam.viewport_offset == 0.5 * diagonal
1120

1221

1322
def test_camera_point_in_viewport_not_at_origin():

0 commit comments

Comments
 (0)