blob: 02398b16bd06694ebf21c0072fff9b41f409ef2e [file] [log] [blame]
Pekka Paalanen0eb09412015-03-23 13:55:06 +02001/*
2 * Copyright © 2015 Collabora, Ltd.
3 *
Bryce Harrington2cc92972015-06-11 15:39:40 -07004 * 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:
Pekka Paalanen0eb09412015-03-23 13:55:06 +020011 *
Bryce Harrington2cc92972015-06-11 15:39:40 -070012 * 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.
Pekka Paalanen0eb09412015-03-23 13:55:06 +020024 */
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
34static struct ivi_application *
35get_ivi_application(struct client *client)
36{
37 struct global *g;
38 struct global *global_iviapp = NULL;
Pekka Paalanen9551dd72019-11-05 16:47:10 +020039 struct ivi_application *iviapp;
Pekka Paalanen0eb09412015-03-23 13:55:06 +020040
41 wl_list_for_each(g, &client->global_list, link) {
42 if (strcmp(g->interface, "ivi_application"))
43 continue;
44
45 if (global_iviapp)
46 assert(0 && "multiple ivi_application objects");
47
48 global_iviapp = g;
49 }
50
51 assert(global_iviapp && "no ivi_application found");
52
53 assert(global_iviapp->version == 1);
54
55 iviapp = wl_registry_bind(client->wl_registry, global_iviapp->name,
56 &ivi_application_interface, 1);
57 assert(iviapp);
58
59 return iviapp;
60}
61
62TEST(ivi_application_exists)
63{
64 struct client *client;
65 struct ivi_application *iviapp;
66
67 client = create_client();
68 iviapp = get_ivi_application(client);
69 client_roundtrip(client);
70
Pekka Paalanen12a138d2019-11-06 15:59:33 +020071 testlog("Successful bind: %p\n", iviapp);
Pekka Paalanen0eb09412015-03-23 13:55:06 +020072}