mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
conformance: Add unit on the implicit alpha definition
Exercise the implicit alpha and timeline definition to catch regressions in the ClutterScript parser code.
This commit is contained in:
parent
f9581ca5ce
commit
185107c6cf
1
.gitignore
vendored
1
.gitignore
vendored
@ -221,6 +221,7 @@ TAGS
|
||||
/tests/conform/test-texture-fbo
|
||||
/tests/conform/test-script-single
|
||||
/tests/conform/test-script-child
|
||||
/tests/conform/test-script-implicit-alpha
|
||||
/tests/micro-bench/test-text-perf
|
||||
/tests/micro-bench/test-text
|
||||
/tests/micro-bench/test-picking
|
||||
|
@ -187,6 +187,7 @@ main (int argc, char **argv)
|
||||
|
||||
TEST_CONFORM_SIMPLE ("/script", test_script_single);
|
||||
TEST_CONFORM_SIMPLE ("/script", test_script_child);
|
||||
TEST_CONFORM_SIMPLE ("/script", test_script_implicit_alpha);
|
||||
|
||||
return g_test_run ();
|
||||
}
|
||||
|
@ -193,3 +193,35 @@ test_script_single (TestConformSimpleFixture *fixture,
|
||||
clutter_actor_destroy (rect);
|
||||
g_free (test_file);
|
||||
}
|
||||
|
||||
void
|
||||
test_script_implicit_alpha (TestConformSimpleFixture *fixture,
|
||||
gconstpointer dummy)
|
||||
{
|
||||
ClutterScript *script = clutter_script_new ();
|
||||
ClutterTimeline *timeline;
|
||||
GObject *behaviour = NULL;
|
||||
GError *error = NULL;
|
||||
ClutterAlpha *alpha;
|
||||
gchar *test_file;
|
||||
|
||||
test_file = clutter_test_get_data_file ("test-script-implicit-alpha.json");
|
||||
clutter_script_load_from_file (script, test_file, &error);
|
||||
g_assert (error == NULL);
|
||||
|
||||
behaviour = clutter_script_get_object (script, "test");
|
||||
g_assert (CLUTTER_IS_BEHAVIOUR (behaviour));
|
||||
|
||||
alpha = clutter_behaviour_get_alpha (CLUTTER_BEHAVIOUR (behaviour));
|
||||
g_assert (CLUTTER_IS_ALPHA (alpha));
|
||||
|
||||
g_assert_cmpint (clutter_alpha_get_mode (alpha), ==, CLUTTER_EASE_OUT_CIRC);
|
||||
|
||||
timeline = clutter_alpha_get_timeline (alpha);
|
||||
g_assert (CLUTTER_IS_TIMELINE (timeline));
|
||||
|
||||
g_assert_cmpint (clutter_timeline_get_duration (timeline), ==, 500);
|
||||
|
||||
g_object_unref (script);
|
||||
g_free (test_file);
|
||||
}
|
||||
|
8
tests/data/test-script-implicit-alpha.json
Normal file
8
tests/data/test-script-implicit-alpha.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"id" : "test",
|
||||
"type" : "ClutterBehaviourOpacity",
|
||||
"alpha" : {
|
||||
"mode" : "easeOutCirc",
|
||||
"timeline" : { "duration" : 500 }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user