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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
|
/*
* 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_test_util.h"
#include "atk_suite.h"
#define DATA_FILE TESTS_DATA_DIR"/test-table.xml"
static void
atk_test_table_get_caption (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
AtspiAccessible *acc = atspi_table_get_caption (obj, NULL);
g_assert (acc);
g_assert_cmpstr ("caption name", ==, atspi_accessible_get_name (acc, NULL));
}
static void
atk_test_table_get_summary (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
AtspiAccessible *acc = atspi_table_get_summary (obj, NULL);
g_assert (acc);
g_assert_cmpstr ("table summary name", ==, atspi_accessible_get_name (acc, NULL));
}
static void
atk_test_table_get_n_columns (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_n_columns (obj, NULL);
g_assert_cmpint (cnt, ==, 3);
}
static void
atk_test_table_get_n_rows (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_n_rows (obj, NULL);
g_assert_cmpint (cnt, ==, 4);
}
static void
atk_test_table_get_accessible_at (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
AtspiAccessible *acc = atspi_table_get_accessible_at (obj, 0, 0, NULL);
g_assert (acc);
g_assert_cmpstr ("cell 0/0", ==, atspi_accessible_get_name (acc, NULL));
acc = atspi_table_get_accessible_at (obj, 3, 2, NULL);
g_assert (acc);
g_assert_cmpstr ("cell 2/3", ==, atspi_accessible_get_name (acc, NULL));
}
static void
atk_test_table_get_index_at (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_index_at (obj, 0, 0, NULL);
g_assert_cmpint (cnt, ==, 0);
cnt = atspi_table_get_index_at (obj, 1, 0, NULL);
g_assert_cmpint (cnt, ==, 3);
cnt = atspi_table_get_index_at (obj, 0, 1, NULL);
g_assert_cmpint (cnt, ==, 1);
}
static void
atk_test_table_get_row_at_index (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_row_at_index (obj, 1, NULL);
g_assert_cmpint (cnt, ==, 0);
cnt = atspi_table_get_row_at_index (obj, 4, NULL);
g_assert_cmpint (cnt, ==, 1);
cnt = atspi_table_get_row_at_index (obj, 6, NULL);
g_assert_cmpint (cnt, ==, 2);
cnt = atspi_table_get_row_at_index (obj, 11, NULL);
g_assert_cmpint (cnt, ==, 3);
}
static void
atk_test_table_get_column_at_index (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_column_at_index (obj, 6, NULL);
g_assert_cmpint (cnt, ==, 0);
cnt = atspi_table_get_column_at_index (obj, 1, NULL);
g_assert_cmpint (cnt, ==, 1);
cnt = atspi_table_get_column_at_index (obj, 5, NULL);
g_assert_cmpint (cnt, ==, 2);
}
static void
atk_test_table_get_row_description (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gchar *desc = atspi_table_get_row_description (obj, 0, NULL);
g_assert (desc);
g_assert_cmpstr (desc, ==, "first row");
g_free (desc);
desc = atspi_table_get_row_description (obj, 2, NULL);
g_assert (desc);
g_assert_cmpstr (desc, ==, "third row");
g_free (desc);
}
static void
atk_test_table_get_column_description (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gchar *desc = atspi_table_get_column_description (obj, 0, NULL);
g_assert (desc);
g_assert_cmpstr (desc, ==, "first column");
g_free (desc);
desc = atspi_table_get_column_description (obj, 2, NULL);
g_assert (desc);
g_assert_cmpstr (desc, ==, "third column");
g_free (desc);
}
static void
atk_test_table_get_row_extent_at (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_row_extent_at (obj, 1, 1, NULL);
g_assert_cmpint (cnt, ==, 1);
}
static void
atk_test_table_get_column_extent_at (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_column_extent_at (obj, 1, 1, NULL);
g_assert_cmpint (cnt, ==, 1);
}
static void
atk_test_table_get_row_header (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
AtspiAccessible *acc = atspi_table_get_row_header (obj, 0, NULL);
g_assert (acc);
g_assert_cmpstr ("row 1 header", ==, atspi_accessible_get_name (acc, NULL));
acc = atspi_table_get_row_header (obj, 3, NULL);
g_assert (acc);
g_assert_cmpstr ("row 4 header", ==, atspi_accessible_get_name (acc, NULL));
}
static void
atk_test_table_get_column_header (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
AtspiAccessible *acc = atspi_table_get_column_header (obj, 0, NULL);
g_assert (acc);
g_assert_cmpstr ("column 1 header", ==, atspi_accessible_get_name (acc, NULL));
acc = atspi_table_get_column_header (obj, 1, NULL);
g_assert (acc);
g_assert_cmpstr ("column 2 header", ==, atspi_accessible_get_name (acc, NULL));
acc = atspi_table_get_column_header (obj, 2, NULL);
g_assert (acc);
g_assert_cmpstr ("column 3 header", ==, atspi_accessible_get_name (acc, NULL));
}
static void
atk_test_table_get_n_selected_rows (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint cnt = atspi_table_get_n_selected_rows (obj, NULL);
g_assert_cmpint (cnt, ==, 2);
}
static void
atk_test_table_get_selected_rows (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
GArray *array = atspi_table_get_selected_rows (obj, NULL);
g_assert (array);
g_assert_cmpint (array->len, ==, 2);
g_assert_cmpint (g_array_index (array,gint, 0), ==, 0);
g_assert_cmpint (g_array_index (array,gint, 1), ==, 2);
g_array_free (array, TRUE);
}
static void
atk_test_table_get_selected_columns (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
GArray *array = atspi_table_get_selected_columns (obj, NULL);
g_assert (array);
g_assert_cmpint (array->len, ==, 1);
g_assert_cmpint (g_array_index (array, gint, 0), ==, 1);
g_array_free (array, TRUE);
}
static void
atk_test_table_get_n_selected_columns (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert(obj);
gint cnt = atspi_table_get_n_selected_columns (obj, NULL);
g_assert_cmpint (cnt, ==, 1);
}
static void
atk_test_table_is_row_selected (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_true (atspi_table_is_row_selected (obj, 0, NULL));
g_assert_false (atspi_table_is_row_selected (obj, 1, NULL));
}
static void
atk_test_table_is_column_selected (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_true (atspi_table_is_column_selected (obj, 1, NULL));
g_assert_false (atspi_table_is_column_selected (obj, 0, NULL));
}
static void
atk_test_table_add_row_selection (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_false (atspi_table_is_row_selected (obj, 1, NULL));
g_assert_true (atspi_table_add_row_selection (obj, 1, NULL));
g_assert_true (atspi_table_is_row_selected (obj, 1, NULL));
}
static void
atk_test_table_add_column_selection (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_false (atspi_table_is_column_selected (obj, 2, NULL));
g_assert_true (atspi_table_add_column_selection (obj, 2, NULL));
g_assert_true (atspi_table_is_column_selected (obj, 2, NULL));
}
static void
atk_test_table_remove_row_selection (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_true (atspi_table_is_row_selected (obj, 2, NULL));
g_assert_true (atspi_table_remove_row_selection (obj, 2, NULL));
g_assert_false (atspi_table_is_row_selected (obj, 2, NULL));
}
static void
atk_test_table_remove_column_selection (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_true (atspi_table_is_column_selected (obj, 1, NULL));
g_assert_true (atspi_table_remove_column_selection (obj, 1, NULL));
g_assert_false (atspi_table_is_column_selected (obj, 1, NULL));
}
static void
atk_test_table_get_row_column_extents_at_index (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
gint row;
gint col;
gint row_ext;
gint col_ext;
gboolean is_selected;
g_assert_true (atspi_table_get_row_column_extents_at_index (obj, 0, &row, &col, &row_ext, &col_ext, &is_selected, NULL));
g_assert_cmpint (row, ==, 0);
g_assert_cmpint (col, ==, 0);
g_assert_cmpint (row_ext, ==, 2);
g_assert_cmpint (col_ext, ==, 1);
g_assert_false (is_selected);
}
static void
atk_test_table_is_selected (gpointer fixture, gconstpointer user_data)
{
AtspiAccessible *_obj = get_root_obj (DATA_FILE);
g_assert (_obj);
AtspiAccessible *child = atspi_accessible_get_child_at_index (_obj, 0, NULL);
g_assert (child);
AtspiTable *obj = atspi_accessible_get_table_iface (child);
g_assert_true (atspi_table_is_selected (obj, 0, 2, NULL));
g_assert_false (atspi_table_is_selected (obj, 1, 0, NULL));
}
static void
teardown_table_test (gpointer fixture, gconstpointer user_data)
{
terminate_app ();
}
void
atk_test_table(void)
{
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_caption",
0, NULL, NULL, atk_test_table_get_caption, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_summary",
0, NULL, NULL, atk_test_table_get_summary, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_n_columns",
0, NULL, NULL, atk_test_table_get_n_columns, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_n_rows",
0, NULL, NULL, atk_test_table_get_n_rows, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_accessible_at",
0, NULL, NULL, atk_test_table_get_accessible_at, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_index_at",
0, NULL, NULL, atk_test_table_get_index_at, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_row_at_index",
0, NULL, NULL, atk_test_table_get_row_at_index, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_column_at_index",
0, NULL, NULL, atk_test_table_get_column_at_index, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_row_description",
0, NULL, NULL, atk_test_table_get_row_description, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_column_description",
0, NULL, NULL, atk_test_table_get_column_description, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_row_extent_at",
0, NULL, NULL, atk_test_table_get_row_extent_at, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_column_extent_at",
0, NULL, NULL, atk_test_table_get_column_extent_at, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_row_header",
0, NULL, NULL, atk_test_table_get_row_header, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_column_header",
0, NULL, NULL, atk_test_table_get_column_header, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_n_selected_rows",
0, NULL, NULL, atk_test_table_get_n_selected_rows, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_selected_rows",
0, NULL, NULL, atk_test_table_get_selected_rows, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_selected_columns",
0, NULL, NULL, atk_test_table_get_selected_columns, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_n_selected_columns",
0, NULL, NULL, atk_test_table_get_n_selected_columns, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_is_row_selected",
0, NULL, NULL, atk_test_table_is_row_selected, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_is_column_selected",
0, NULL, NULL, atk_test_table_is_column_selected, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_add_row_selection",
0, NULL, NULL, atk_test_table_add_row_selection, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_add_column_selection",
0, NULL, NULL, atk_test_table_add_column_selection, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_remove_row_selection",
0, NULL, NULL, atk_test_table_remove_row_selection, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_remove_column_selection",
0, NULL, NULL, atk_test_table_remove_column_selection, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_get_row_column_extents_at_index",
0, NULL, NULL, atk_test_table_get_row_column_extents_at_index, teardown_table_test);
g_test_add_vtable (ATK_TEST_PATH_TABLE "/atk_test_table_is_selected",
0, NULL, NULL, atk_test_table_is_selected, teardown_table_test);
}
|