| from __future__ import annotations |
|
|
| import sys |
| from unittest.mock import Mock |
|
|
| import pytest |
|
|
| from manim import ( |
| Dot, |
| Mobject, |
| Scene, |
| ValueTracker, |
| Wait, |
| np, |
| ) |
|
|
| from .simple_scenes import ( |
| SceneForFrozenFrameTests, |
| SceneWithMultipleCalls, |
| SceneWithNonStaticWait, |
| SceneWithSceneUpdater, |
| SceneWithStaticWait, |
| SquareToCircle, |
| ) |
|
|
|
|
| @pytest.mark.parametrize("frame_rate", argvalues=[15, 30, 60]) |
| def test_t_values(config, using_temp_config, disabling_caching, frame_rate): |
| """Test that the framerate corresponds to the number of t values generated""" |
| config.frame_rate = frame_rate |
| scene = SquareToCircle() |
| scene.update_to_time = Mock() |
| scene.render() |
| assert scene.update_to_time.call_count == config["frame_rate"] |
| np.testing.assert_allclose( |
| ([call.args[0] for call in scene.update_to_time.call_args_list]), |
| np.arange(0, 1, 1 / config["frame_rate"]), |
| ) |
|
|
|
|
| @pytest.mark.skipif( |
| sys.version_info < (3, 8), |
| reason="Mock object has a different implementation in python 3.7, which makes it broken with this logic.", |
| ) |
| def test_t_values_with_skip_animations(using_temp_config, disabling_caching): |
| """Test the behaviour of scene.skip_animations""" |
| scene = SquareToCircle() |
| scene.update_to_time = Mock() |
| scene.renderer._original_skipping_status = True |
| scene.render() |
| assert scene.update_to_time.call_count == 1 |
| np.testing.assert_almost_equal( |
| scene.update_to_time.call_args.args[0], |
| 1.0, |
| ) |
|
|
|
|
| def test_static_wait_detection(using_temp_config, disabling_caching): |
| """Test if a static wait (wait that freeze the frame) is correctly detected""" |
| scene = SceneWithStaticWait() |
| scene.render() |
| |
| assert scene.animations[0].is_static_wait |
| assert scene.is_current_animation_frozen_frame() |
|
|
|
|
| def test_non_static_wait_detection(using_temp_config, disabling_caching): |
| scene = SceneWithNonStaticWait() |
| scene.render() |
| assert not scene.animations[0].is_static_wait |
| assert not scene.is_current_animation_frozen_frame() |
| scene = SceneWithSceneUpdater() |
| scene.render() |
| assert not scene.animations[0].is_static_wait |
| assert not scene.is_current_animation_frozen_frame() |
|
|
|
|
| def test_wait_with_stop_condition(using_temp_config, disabling_caching): |
| class TestScene(Scene): |
| def construct(self): |
| self.wait_until(lambda: self.time >= 1) |
| assert self.time >= 1 |
| d = Dot() |
| d.add_updater(lambda mobj, dt: self.add(Mobject())) |
| self.add(d) |
| self.play(Wait(run_time=5, stop_condition=lambda: len(self.mobjects) > 5)) |
| assert len(self.mobjects) > 5 |
| assert self.time < 2 |
|
|
| scene = TestScene() |
| scene.render() |
|
|
|
|
| def test_frozen_frame(using_temp_config, disabling_caching): |
| scene = SceneForFrozenFrameTests() |
| scene.render() |
| assert scene.mobject_update_count == 0 |
| assert scene.scene_update_count == 0 |
|
|
|
|
| def test_t_values_with_cached_data(using_temp_config): |
| """Test the proper generation and use of the t values when an animation is cached.""" |
| scene = SceneWithMultipleCalls() |
| |
| scene.renderer.file_writer = Mock(scene.renderer.file_writer) |
| scene.renderer.update_skipping_status = Mock() |
| |
| scene.renderer.file_writer.is_already_cached.return_value = True |
| scene.update_to_time = Mock() |
|
|
| scene.render() |
| assert scene.update_to_time.call_count == 10 |
|
|
|
|
| def test_t_values_save_last_frame(config, using_temp_config): |
| """Test that there is only one t value handled when only saving the last frame""" |
| config.save_last_frame = True |
| scene = SquareToCircle() |
| scene.update_to_time = Mock() |
| scene.render() |
| scene.update_to_time.assert_called_once_with(1) |
|
|
|
|
| def test_animate_with_changed_custom_attribute(using_temp_config): |
| """Test that animating the change of a custom attribute |
| using the animate syntax works correctly. |
| """ |
|
|
| class CustomAnimateScene(Scene): |
| def construct(self): |
| vt = ValueTracker(0) |
| vt.custom_attribute = "hello" |
| self.play(vt.animate.set_value(42).set(custom_attribute="world")) |
| assert vt.get_value() == 42 |
| assert vt.custom_attribute == "world" |
|
|
| CustomAnimateScene().render() |
|
|