conformance: Show the Stage to test invariants

We need to make the Stage set the MAPPED flag on itself if we want to
verify the MAPPED state. That was always the case - it just worked
before because the Stage was shown at least once.
This commit is contained in:
Emmanuele Bassi 2010-02-24 12:09:13 +00:00
parent aa8c812705
commit 3a9d842164

View File

@ -71,6 +71,7 @@ test_mapped (TestConformSimpleFixture *fixture,
ClutterActor *stage; ClutterActor *stage;
stage = clutter_stage_get_default (); stage = clutter_stage_get_default ();
clutter_actor_show (stage);
actor = clutter_rectangle_new (); actor = clutter_rectangle_new ();
@ -85,6 +86,7 @@ test_mapped (TestConformSimpleFixture *fixture,
g_assert (CLUTTER_ACTOR_IS_VISIBLE (actor)); g_assert (CLUTTER_ACTOR_IS_VISIBLE (actor));
clutter_actor_destroy (actor); clutter_actor_destroy (actor);
clutter_actor_hide (stage);
} }
void void
@ -95,6 +97,7 @@ test_realize_not_recursive (TestConformSimpleFixture *fixture,
ClutterActor *stage; ClutterActor *stage;
stage = clutter_stage_get_default (); stage = clutter_stage_get_default ();
clutter_actor_show (stage);
group = clutter_group_new (); group = clutter_group_new ();
@ -124,6 +127,7 @@ test_realize_not_recursive (TestConformSimpleFixture *fixture,
g_assert (!(CLUTTER_ACTOR_IS_VISIBLE (actor))); g_assert (!(CLUTTER_ACTOR_IS_VISIBLE (actor)));
clutter_actor_destroy (group); clutter_actor_destroy (group);
clutter_actor_hide (stage);
} }
void void
@ -134,6 +138,7 @@ test_map_recursive (TestConformSimpleFixture *fixture,
ClutterActor *stage; ClutterActor *stage;
stage = clutter_stage_get_default (); stage = clutter_stage_get_default ();
clutter_actor_show (stage);
group = clutter_group_new (); group = clutter_group_new ();
@ -173,6 +178,7 @@ test_map_recursive (TestConformSimpleFixture *fixture,
g_assert (CLUTTER_ACTOR_IS_VISIBLE (actor)); g_assert (CLUTTER_ACTOR_IS_VISIBLE (actor));
clutter_actor_destroy (group); clutter_actor_destroy (group);
clutter_actor_hide (stage);
} }
void void
@ -233,6 +239,7 @@ test_clone_no_map (TestConformSimpleFixture *fixture,
ClutterActor *clone; ClutterActor *clone;
stage = clutter_stage_get_default (); stage = clutter_stage_get_default ();
clutter_actor_show (stage);
group = clutter_group_new (); group = clutter_group_new ();
actor = clutter_rectangle_new (); actor = clutter_rectangle_new ();
@ -255,4 +262,6 @@ test_clone_no_map (TestConformSimpleFixture *fixture,
clutter_actor_destroy (CLUTTER_ACTOR (clone)); clutter_actor_destroy (CLUTTER_ACTOR (clone));
clutter_actor_destroy (CLUTTER_ACTOR (group)); clutter_actor_destroy (CLUTTER_ACTOR (group));
clutter_actor_hide (stage);
} }