Pekka Paalanen | 0eb0941 | 2015-03-23 13:55:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2015 Collabora, Ltd. |
| 3 | * |
Bryce Harrington | 2cc9297 | 2015-06-11 15:39:40 -0700 | [diff] [blame] | 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: |
Pekka Paalanen | 0eb0941 | 2015-03-23 13:55:06 +0200 | [diff] [blame] | 11 | * |
Bryce Harrington | 2cc9297 | 2015-06-11 15:39:40 -0700 | [diff] [blame] | 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. |
Pekka Paalanen | 0eb0941 | 2015-03-23 13:55:06 +0200 | [diff] [blame] | 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 | |
| 34 | static struct ivi_application * |
| 35 | get_ivi_application(struct client *client) |
| 36 | { |
| 37 | struct global *g; |
| 38 | struct global *global_iviapp = NULL; |
| 39 | static struct ivi_application *iviapp; |
| 40 | |
| 41 | if (iviapp) |
| 42 | return iviapp; |
| 43 | |
| 44 | wl_list_for_each(g, &client->global_list, link) { |
| 45 | if (strcmp(g->interface, "ivi_application")) |
| 46 | continue; |
| 47 | |
| 48 | if (global_iviapp) |
| 49 | assert(0 && "multiple ivi_application objects"); |
| 50 | |
| 51 | global_iviapp = g; |
| 52 | } |
| 53 | |
| 54 | assert(global_iviapp && "no ivi_application found"); |
| 55 | |
| 56 | assert(global_iviapp->version == 1); |
| 57 | |
| 58 | iviapp = wl_registry_bind(client->wl_registry, global_iviapp->name, |
| 59 | &ivi_application_interface, 1); |
| 60 | assert(iviapp); |
| 61 | |
| 62 | return iviapp; |
| 63 | } |
| 64 | |
| 65 | TEST(ivi_application_exists) |
| 66 | { |
| 67 | struct client *client; |
| 68 | struct ivi_application *iviapp; |
| 69 | |
| 70 | client = create_client(); |
| 71 | iviapp = get_ivi_application(client); |
| 72 | client_roundtrip(client); |
| 73 | |
| 74 | printf("Successful bind: %p\n", iviapp); |
| 75 | } |