1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
/*
* Copyright 2008 Codethink Ltd.
* Copyright (c) 2015 Samsung Electronics Co., Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "atk_suite.h"
#include "atk_test_util.h"
#define DATA_FILE TESTS_DATA_DIR "/test-hypertext.xml"
static void
atk_test_hyperlink_get_n_anchors (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
gint n = atspi_hyperlink_get_n_anchors (obj, NULL);
g_assert_cmpint (n, ==, 1);
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
static void
atk_test_hyperlink_get_uri (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
gchar *str = atspi_hyperlink_get_uri (obj, 0, NULL);
g_assert_nonnull (str);
g_assert_cmpstr (str, ==, "pinkbike.com");
g_free (str);
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
static void
atk_test_hyperlink_get_object (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
AtspiAccessible *acc = atspi_hyperlink_get_object (obj, 0, NULL);
g_assert_nonnull (acc);
AtspiText *at = atspi_accessible_get_text_iface (acc);
g_assert_nonnull (at);
gchar *text = atspi_text_get_text (at, 0, 12, NULL);
g_assert_cmpstr (text, ==, "pinkbike.com");
g_free (text);
g_object_unref (at);
g_object_unref (acc);
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
static void
atk_test_hyperlink_get_index_range (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
AtspiRange *range = atspi_hyperlink_get_index_range (obj, NULL);
g_assert_nonnull (range);
/*
ATK do not define this function
*/
g_assert_cmpint (range->start_offset, ==, -1);
g_assert_cmpint (range->end_offset, ==, -1);
g_free (range);
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
static void
atk_test_hyperlink_get_start_index (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
gint n = atspi_hyperlink_get_start_index (obj, NULL);
g_assert_cmpint (n, ==, 69);
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
static void
atk_test_hyperlink_get_end_index (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
gint n = atspi_hyperlink_get_end_index (obj, NULL);
g_assert_cmpint (n, ==, 81);
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
static void
atk_test_hyperlink_is_valid (TestAppFixture *fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = fixture->root_obj;
g_assert_nonnull (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert_nonnull (child);
AtspiHypertext *obj1 = atspi_accessible_get_hypertext_iface (child);
g_assert_nonnull (obj1);
AtspiHyperlink *obj = atspi_hypertext_get_link (obj1, 1, NULL);
g_assert_nonnull (obj);
g_assert_true (atspi_hyperlink_is_valid (obj, NULL));
g_object_unref (obj);
g_object_unref (obj1);
g_object_unref (child);
}
void
atk_test_hyperlink (void)
{
g_test_add ("/hyperlink/atk_test_hyperlink_get_n_anchors",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_get_n_anchors, fixture_teardown);
g_test_add ("/hyperlink/atk_test_hyperlink_get_uri",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_get_uri, fixture_teardown);
g_test_add ("/hyperlink/atk_test_hyperlink_get_object",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_get_object, fixture_teardown);
g_test_add ("/hyperlink/atk_test_hyperlink_get_index_range",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_get_index_range, fixture_teardown);
g_test_add ("/hyperlink/atk_test_hyperlink_get_start_index",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_get_start_index, fixture_teardown);
g_test_add ("/hyperlink/atk_test_hyperlink_get_end_index",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_get_end_index, fixture_teardown);
g_test_add ("/hyperlink/atk_test_hyperlink_is_valid",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hyperlink_is_valid, fixture_teardown);
}
|