1 /*
2 * Copyright © 2015 Collabora, Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #include "config.h"
27
28 #include <stdio.h>
29 #include <string.h>
30
31 #include "weston-test-client-helper.h"
32 #include "ivi-application-client-protocol.h"
33 #include "weston-test-fixture-compositor.h"
34 #include "test-config.h"
35
36 static enum test_result_code
fixture_setup(struct weston_test_harness * harness)37 fixture_setup(struct weston_test_harness *harness)
38 {
39 struct compositor_setup setup;
40
41 compositor_setup_defaults(&setup);
42 setup.shell = SHELL_IVI;
43 setup.config_file = TESTSUITE_IVI_CONFIG_PATH;
44 setup.logging_scopes = "log,test-harness-plugin,proto";
45
46 return weston_test_harness_execute_as_client(harness, &setup);
47 }
48 DECLARE_FIXTURE_SETUP(fixture_setup);
49
50 static struct ivi_application *
get_ivi_application(struct client * client)51 get_ivi_application(struct client *client)
52 {
53 struct global *g;
54 struct global *global_iviapp = NULL;
55 struct ivi_application *iviapp;
56
57 wl_list_for_each(g, &client->global_list, link) {
58 if (strcmp(g->interface, "ivi_application"))
59 continue;
60
61 if (global_iviapp)
62 assert(0 && "multiple ivi_application objects");
63
64 global_iviapp = g;
65 }
66
67 assert(global_iviapp && "no ivi_application found");
68
69 assert(global_iviapp->version == 1);
70
71 iviapp = wl_registry_bind(client->wl_registry, global_iviapp->name,
72 &ivi_application_interface, 1);
73 assert(iviapp);
74
75 return iviapp;
76 }
77
TEST(ivi_application_exists)78 TEST(ivi_application_exists)
79 {
80 struct client *client;
81 struct ivi_application *iviapp;
82
83 client = create_client();
84 iviapp = get_ivi_application(client);
85 client_roundtrip(client);
86
87 testlog("Successful bind: %p\n", iviapp);
88
89 client_destroy(client);
90 }
91