[PATCH weston 7/9] tests: add a basic ivi-shell test

Pekka Paalanen ppaalanen at gmail.com
Mon Mar 30 02:20:10 PDT 2015


From: Pekka Paalanen <pekka.paalanen at collabora.co.uk>

This simply tests that Weston starts with ivi-shell, and ivi_application
is present.

Signed-off-by: Pekka Paalanen <pekka.paalanen at collabora.co.uk>
---
 Makefile.am                | 12 ++++++++
 tests/ivi-shell-app-test.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/weston-tests-env     | 14 +++++++++
 3 files changed, 98 insertions(+)
 create mode 100644 tests/ivi-shell-app-test.c

diff --git a/Makefile.am b/Makefile.am
index dc02181..537339b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1090,6 +1090,18 @@ matrix_test_SOURCES =				\
 matrix_test_CPPFLAGS = -DUNIT_TEST
 matrix_test_LDADD = -lm -lrt
 
+if ENABLE_IVI_SHELL
+ivi_tests +=					\
+	ivi-shell-app.weston
+
+ivi_shell_app_weston_SOURCES = tests/ivi-shell-app-test.c
+nodist_ivi_shell_app_weston_SOURCES =		\
+	protocol/ivi-application-protocol.c	\
+	protocol/ivi-application-client-protocol.h
+ivi_shell_app_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS)
+ivi_shell_app_weston_LDADD = libtest-client.la
+endif
+
 if BUILD_SETBACKLIGHT
 noinst_PROGRAMS += setbacklight
 setbacklight_SOURCES =				\
diff --git a/tests/ivi-shell-app-test.c b/tests/ivi-shell-app-test.c
new file mode 100644
index 0000000..638f874
--- /dev/null
+++ b/tests/ivi-shell-app-test.c
@@ -0,0 +1,72 @@
+/*
+ * Copyright © 2015 Collabora, Ltd.
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and
+ * its documentation for any purpose is hereby granted without fee, provided
+ * that the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation, and that the name of the copyright holders not be used in
+ * advertising or publicity pertaining to distribution of the software
+ * without specific, written prior permission.  The copyright holders make
+ * no representations about the suitability of this software for any
+ * purpose.  It is provided "as is" without express or implied warranty.
+ *
+ * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
+ * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
+ * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "config.h"
+
+#include <stdio.h>
+#include <string.h>
+
+#include "weston-test-client-helper.h"
+#include "ivi-application-client-protocol.h"
+
+static struct ivi_application *
+get_ivi_application(struct client *client)
+{
+	struct global *g;
+	struct global *global_iviapp = NULL;
+	static struct ivi_application *iviapp;
+
+	if (iviapp)
+		return iviapp;
+
+	wl_list_for_each(g, &client->global_list, link) {
+		if (strcmp(g->interface, "ivi_application"))
+			continue;
+
+		if (global_iviapp)
+			assert(0 && "multiple ivi_application objects");
+
+		global_iviapp = g;
+	}
+
+	assert(global_iviapp && "no ivi_application found");
+
+	assert(global_iviapp->version == 1);
+
+	iviapp = wl_registry_bind(client->wl_registry, global_iviapp->name,
+				  &ivi_application_interface, 1);
+	assert(iviapp);
+
+	return iviapp;
+}
+
+TEST(ivi_application_exists)
+{
+	struct client *client;
+	struct ivi_application *iviapp;
+
+	client = create_client();
+	iviapp = get_ivi_application(client);
+	client_roundtrip(client);
+
+	printf("Successful bind: %p\n", iviapp);
+}
diff --git a/tests/weston-tests-env b/tests/weston-tests-env
index 4d9ba88..aef6d07 100755
--- a/tests/weston-tests-env
+++ b/tests/weston-tests-env
@@ -38,6 +38,20 @@ case $TESTNAME in
 			--log="$SERVERLOG" \
 			&> "$OUTLOG"
 		;;
+	./ivi-*.weston)
+		SHELL_PLUGIN=$MODDIR/ivi-shell.so
+
+		WESTON_BUILD_DIR=$abs_builddir \
+		WESTON_TEST_CLIENT_PATH=$abs_builddir/$TESTNAME $WESTON \
+			--socket=test-$(basename $TESTNAME) \
+			--backend=$MODDIR/$BACKEND \
+			--config=$abs_builddir/tests/weston-ivi.ini \
+			--shell=$SHELL_PLUGIN \
+			--log="$SERVERLOG" \
+			--modules=$TEST_PLUGIN \
+			$($abs_builddir/$TESTNAME --params) \
+			&> "$OUTLOG"
+		;;
 	*)
 		WESTON_BUILD_DIR=$abs_builddir \
 		WESTON_TEST_CLIENT_PATH=$abs_builddir/$TESTNAME $WESTON \
-- 
2.0.5



More information about the wayland-devel mailing list