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
|
/**
* Copyright © 2009 Red Hat, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/* Test relies on assert() */
#undef NDEBUG
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#include <xkb-config.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <unistd.h>
#include <math.h>
#include <X11/X.h>
#include <X11/Xproto.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include "misc.h"
#include "inputstr.h"
#include "opaque.h"
#include "property.h"
#include <xkbsrv.h>
#include "../xkb/xkbgeom.h"
#include <X11/extensions/XKMformat.h>
#include "xkbfile.h"
#include <assert.h>
#include "tests-common.h"
/**
* Initialize an empty XkbRMLVOSet.
* Call XkbGetRulesDflts to obtain the default ruleset.
* Compare obtained ruleset with the built-in defaults.
*
* Result: RMLVO defaults are the same as obtained.
*/
static void
xkb_get_rules_test(void)
{
XkbRMLVOSet rmlvo = { NULL };
XkbGetRulesDflts(&rmlvo);
assert(rmlvo.rules);
assert(rmlvo.model);
assert(rmlvo.layout);
assert(rmlvo.variant);
assert(rmlvo.options);
assert(strcmp(rmlvo.rules, XKB_DFLT_RULES) == 0);
assert(strcmp(rmlvo.model, XKB_DFLT_MODEL) == 0);
assert(strcmp(rmlvo.layout, XKB_DFLT_LAYOUT) == 0);
assert(strcmp(rmlvo.variant, XKB_DFLT_VARIANT) == 0);
assert(strcmp(rmlvo.options, XKB_DFLT_OPTIONS) == 0);
XkbFreeRMLVOSet(&rmlvo, FALSE);
}
/**
* Initialize an random XkbRMLVOSet.
* Call XkbGetRulesDflts to obtain the default ruleset.
* Compare obtained ruleset with the built-in defaults.
* Result: RMLVO defaults are the same as obtained.
*/
static void
xkb_set_rules_test(void)
{
XkbRMLVOSet rmlvo;
XkbRMLVOSet rmlvo_new = { NULL };
XkbInitRules(&rmlvo, "test-rules", "test-model", "test-layout",
"test-variant", "test-options");
assert(rmlvo.rules);
assert(rmlvo.model);
assert(rmlvo.layout);
assert(rmlvo.variant);
assert(rmlvo.options);
XkbSetRulesDflts(&rmlvo);
XkbGetRulesDflts(&rmlvo_new);
/* XkbGetRulesDflts strdups the values */
assert(rmlvo.rules != rmlvo_new.rules);
assert(rmlvo.model != rmlvo_new.model);
assert(rmlvo.layout != rmlvo_new.layout);
assert(rmlvo.variant != rmlvo_new.variant);
assert(rmlvo.options != rmlvo_new.options);
assert(strcmp(rmlvo.rules, rmlvo_new.rules) == 0);
assert(strcmp(rmlvo.model, rmlvo_new.model) == 0);
assert(strcmp(rmlvo.layout, rmlvo_new.layout) == 0);
assert(strcmp(rmlvo.variant, rmlvo_new.variant) == 0);
assert(strcmp(rmlvo.options, rmlvo_new.options) == 0);
XkbFreeRMLVOSet(&rmlvo, FALSE);
XkbFreeRMLVOSet(&rmlvo_new, FALSE);
}
/**
* Get the default RMLVO set.
* Set the default RMLVO set.
* Get the default RMLVO set.
* Repeat the last two steps.
*
* Result: RMLVO set obtained is the same as previously set.
*/
static void
xkb_set_get_rules_test(void)
{
/* This test failed before XkbGetRulesDftlts changed to strdup.
We test this twice because the first time using XkbGetRulesDflts we obtain
the built-in defaults. The unexpected free isn't triggered until the second
XkbSetRulesDefaults.
*/
XkbRMLVOSet rmlvo = { NULL };
XkbRMLVOSet rmlvo_backup;
XkbGetRulesDflts(&rmlvo);
/* pass 1 */
XkbSetRulesDflts(&rmlvo);
XkbFreeRMLVOSet(&rmlvo, FALSE);
XkbGetRulesDflts(&rmlvo);
/* Make a backup copy */
rmlvo_backup.rules = strdup(rmlvo.rules);
rmlvo_backup.layout = strdup(rmlvo.layout);
rmlvo_backup.model = strdup(rmlvo.model);
rmlvo_backup.variant = strdup(rmlvo.variant);
rmlvo_backup.options = strdup(rmlvo.options);
/* pass 2 */
XkbSetRulesDflts(&rmlvo);
/* This test is iffy, because strictly we may be comparing against already
* freed memory */
assert(strcmp(rmlvo.rules, rmlvo_backup.rules) == 0);
assert(strcmp(rmlvo.model, rmlvo_backup.model) == 0);
assert(strcmp(rmlvo.layout, rmlvo_backup.layout) == 0);
assert(strcmp(rmlvo.variant, rmlvo_backup.variant) == 0);
assert(strcmp(rmlvo.options, rmlvo_backup.options) == 0);
XkbFreeRMLVOSet(&rmlvo, FALSE);
XkbGetRulesDflts(&rmlvo);
assert(strcmp(rmlvo.rules, rmlvo_backup.rules) == 0);
assert(strcmp(rmlvo.model, rmlvo_backup.model) == 0);
assert(strcmp(rmlvo.layout, rmlvo_backup.layout) == 0);
assert(strcmp(rmlvo.variant, rmlvo_backup.variant) == 0);
assert(strcmp(rmlvo.options, rmlvo_backup.options) == 0);
XkbFreeRMLVOSet(&rmlvo, FALSE);
XkbFreeRMLVOSet(&rmlvo_backup, FALSE);
}
const testfunc_t*
xkb_test(void)
{
static const testfunc_t testfuncs[] = {
xkb_set_get_rules_test,
xkb_get_rules_test,
xkb_set_rules_test,
NULL,
};
return testfuncs;
}
|