123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- /**
- * Copyright © 2012 Canonical, Ltd.
- *
- * 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.
- */
- #ifdef HAVE_DIX_CONFIG_H
- #include <dix-config.h>
- #endif
- #include <stdint.h>
- #include <unistd.h>
- #include "assert.h"
- #include "misc.h"
- struct number_format_test {
- uint64_t number;
- char string[21];
- char hex_string[17];
- };
- struct signed_number_format_test {
- int64_t number;
- char string[21];
- };
- struct float_number_format_test {
- double number;
- char string[21];
- };
- static Bool
- check_signed_number_format_test(long int number)
- {
- char string[21];
- char expected[21];
- sprintf(expected, "%ld", number);
- FormatInt64(number, string);
- if(strncmp(string, expected, 21) != 0) {
- fprintf(stderr, "Failed to convert %jd to decimal string (expected %s but got %s)\n",
- (intmax_t) number, expected, string);
- return FALSE;
- }
- return TRUE;
- }
- static Bool
- check_float_format_test(double number)
- {
- char string[21];
- char expected[21];
- /* we currently always print float as .2f */
- sprintf(expected, "%.2f", number);
- FormatDouble(number, string);
- if(strncmp(string, expected, 21) != 0) {
- fprintf(stderr, "Failed to convert %f to string (%s vs %s)\n",
- number, expected, string);
- return FALSE;
- }
- return TRUE;
- }
- static Bool
- check_number_format_test(long unsigned int number)
- {
- char string[21];
- char expected[21];
- sprintf(expected, "%lu", number);
- FormatUInt64(number, string);
- if(strncmp(string, expected, 21) != 0) {
- fprintf(stderr, "Failed to convert %ju to decimal string (%s vs %s)\n",
- (intmax_t) number, expected, string);
- return FALSE;
- }
- sprintf(expected, "%lx", number);
- FormatUInt64Hex(number, string);
- if(strncmp(string, expected, 17) != 0) {
- fprintf(stderr, "Failed to convert %ju to hexadecimal string (%s vs %s)\n",
- (intmax_t) number, expected, string);
- return FALSE;
- }
- return TRUE;
- }
- /* FIXME: max range stuff */
- double float_tests[] = { 0, 5, 0.1, 0.01, 5.2342, 10.2301,
- -1, -2.00, -0.6023, -1203.30
- };
- static void
- number_formatting(void)
- {
- int i;
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Woverflow"
- long unsigned int unsigned_tests[] = { 0,/* Zero */
- 5, /* Single digit number */
- 12, /* Two digit decimal number */
- 37, /* Two digit hex number */
- 0xC90B2, /* Large < 32 bit number */
- 0x15D027BF211B37A, /* Large > 32 bit number */
- 0xFFFFFFFFFFFFFFFF, /* Maximum 64-bit number */
- };
- long int signed_tests[] = { 0,/* Zero */
- 5, /* Single digit number */
- 12, /* Two digit decimal number */
- 37, /* Two digit hex number */
- 0xC90B2, /* Large < 32 bit number */
- 0x15D027BF211B37A, /* Large > 32 bit number */
- 0x7FFFFFFFFFFFFFFF, /* Maximum 64-bit signed number */
- -1, /* Single digit number */
- -12, /* Two digit decimal number */
- -0xC90B2, /* Large < 32 bit number */
- -0x15D027BF211B37A, /* Large > 32 bit number */
- -0x7FFFFFFFFFFFFFFF, /* Maximum 64-bit signed number */
- } ;
- #pragma GCC diagnostic pop
- for (i = 0; i < sizeof(unsigned_tests) / sizeof(unsigned_tests[0]); i++)
- assert(check_number_format_test(unsigned_tests[i]));
- for (i = 0; i < sizeof(unsigned_tests) / sizeof(signed_tests[0]); i++)
- assert(check_signed_number_format_test(signed_tests[i]));
- for (i = 0; i < sizeof(float_tests) / sizeof(float_tests[0]); i++)
- assert(check_float_format_test(float_tests[i]));
- }
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wformat-security"
- #pragma GCC diagnostic ignored "-Wformat"
- #pragma GCC diagnostic ignored "-Wformat-extra-args"
- static void logging_format(void)
- {
- const char *log_file_path = "/tmp/Xorg-logging-test.log";
- const char *str = "%s %d %u %% %p %i";
- char buf[1024];
- int i;
- unsigned int ui;
- long li;
- unsigned long lui;
- FILE *f;
- char read_buf[2048];
- char *logmsg;
- uintptr_t ptr;
- /* set up buf to contain ".....end" */
- memset(buf, '.', sizeof(buf));
- strcpy(&buf[sizeof(buf) - 4], "end");
- LogInit(log_file_path, NULL);
- assert(f = fopen(log_file_path, "r"));
- #define read_log_msg(msg) do { \
- msg = fgets(read_buf, sizeof(read_buf), f); \
- assert(msg != NULL); \
- msg = strchr(read_buf, ']'); \
- assert(msg != NULL); \
- assert(strlen(msg) > 2); \
- msg = msg + 2; /* advance past [time.stamp] */ \
- } while (0)
- /* boring test message */
- LogMessageVerbSigSafe(X_ERROR, -1, "test message\n");
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) test message\n") == 0);
- /* long buf is truncated to "....en\n" */
- LogMessageVerbSigSafe(X_ERROR, -1, buf);
- read_log_msg(logmsg);
- assert(strcmp(&logmsg[strlen(logmsg) - 3], "en\n") == 0);
- /* same thing, this time as string substitution */
- LogMessageVerbSigSafe(X_ERROR, -1, "%s", buf);
- read_log_msg(logmsg);
- assert(strcmp(&logmsg[strlen(logmsg) - 3], "en\n") == 0);
- /* strings containing placeholders should just work */
- LogMessageVerbSigSafe(X_ERROR, -1, "%s\n", str);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) %s %d %u %% %p %i\n") == 0);
- /* literal % */
- LogMessageVerbSigSafe(X_ERROR, -1, "test %%\n");
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) test %\n") == 0);
- /* character */
- LogMessageVerbSigSafe(X_ERROR, -1, "test %c\n", 'a');
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) test a\n") == 0);
- /* something unsupported % */
- LogMessageVerbSigSafe(X_ERROR, -1, "test %Q\n");
- read_log_msg(logmsg);
- assert(strstr(logmsg, "BUG") != NULL);
- LogMessageVerbSigSafe(X_ERROR, -1, "\n");
- fseek(f, 0, SEEK_END);
- /* string substitution */
- LogMessageVerbSigSafe(X_ERROR, -1, "%s\n", "substituted string");
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) substituted string\n") == 0);
- /* Invalid format */
- LogMessageVerbSigSafe(X_ERROR, -1, "%4", 4);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) ") == 0);
- LogMessageVerbSigSafe(X_ERROR, -1, "\n");
- fseek(f, 0, SEEK_END);
- /* %hld is bogus */
- LogMessageVerbSigSafe(X_ERROR, -1, "%hld\n", 4);
- read_log_msg(logmsg);
- assert(strstr(logmsg, "BUG") != NULL);
- LogMessageVerbSigSafe(X_ERROR, -1, "\n");
- fseek(f, 0, SEEK_END);
- /* number substitution */
- ui = 0;
- do {
- char expected[30];
- sprintf(expected, "(EE) %u\n", ui);
- LogMessageVerbSigSafe(X_ERROR, -1, "%u\n", ui);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %x\n", ui);
- LogMessageVerbSigSafe(X_ERROR, -1, "%x\n", ui);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- if (ui == 0)
- ui = 1;
- else
- ui <<= 1;
- } while(ui);
- lui = 0;
- do {
- char expected[30];
- sprintf(expected, "(EE) %lu\n", lui);
- LogMessageVerbSigSafe(X_ERROR, -1, "%lu\n", lui);
- read_log_msg(logmsg);
- sprintf(expected, "(EE) %lld\n", (unsigned long long)ui);
- LogMessageVerbSigSafe(X_ERROR, -1, "%lld\n", (unsigned long long)ui);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %lx\n", lui);
- printf("%s\n", expected);
- LogMessageVerbSigSafe(X_ERROR, -1, "%lx\n", lui);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %llx\n", (unsigned long long)ui);
- LogMessageVerbSigSafe(X_ERROR, -1, "%llx\n", (unsigned long long)ui);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- if (lui == 0)
- lui = 1;
- else
- lui <<= 1;
- } while(lui);
- /* signed number substitution */
- i = 0;
- do {
- char expected[30];
- sprintf(expected, "(EE) %d\n", i);
- LogMessageVerbSigSafe(X_ERROR, -1, "%d\n", i);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %d\n", i | INT_MIN);
- LogMessageVerbSigSafe(X_ERROR, -1, "%d\n", i | INT_MIN);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- if (i == 0)
- i = 1;
- else
- i <<= 1;
- } while(i > INT_MIN);
- li = 0;
- do {
- char expected[30];
- sprintf(expected, "(EE) %ld\n", li);
- LogMessageVerbSigSafe(X_ERROR, -1, "%ld\n", li);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %ld\n", li | LONG_MIN);
- LogMessageVerbSigSafe(X_ERROR, -1, "%ld\n", li | LONG_MIN);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %lld\n", (long long)li);
- LogMessageVerbSigSafe(X_ERROR, -1, "%lld\n", (long long)li);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- sprintf(expected, "(EE) %lld\n", (long long)(li | LONG_MIN));
- LogMessageVerbSigSafe(X_ERROR, -1, "%lld\n", (long long)(li | LONG_MIN));
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- if (li == 0)
- li = 1;
- else
- li <<= 1;
- } while(li > LONG_MIN);
- /* pointer substitution */
- /* we print a null-pointer differently to printf */
- LogMessageVerbSigSafe(X_ERROR, -1, "%p\n", NULL);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, "(EE) 0x0\n") == 0);
- ptr = 1;
- do {
- char expected[30];
- #ifdef __sun /* Solaris doesn't autoadd "0x" to %p format */
- sprintf(expected, "(EE) 0x%p\n", (void*)ptr);
- #else
- sprintf(expected, "(EE) %p\n", (void*)ptr);
- #endif
- LogMessageVerbSigSafe(X_ERROR, -1, "%p\n", (void*)ptr);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- ptr <<= 1;
- } while(ptr);
- for (i = 0; i < sizeof(float_tests)/sizeof(float_tests[0]); i++) {
- double d = float_tests[i];
- char expected[30];
- sprintf(expected, "(EE) %.2f\n", d);
- LogMessageVerbSigSafe(X_ERROR, -1, "%f\n", d);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- /* test for length modifiers, we just ignore them atm */
- LogMessageVerbSigSafe(X_ERROR, -1, "%.3f\n", d);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- LogMessageVerbSigSafe(X_ERROR, -1, "%3f\n", d);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- LogMessageVerbSigSafe(X_ERROR, -1, "%.0f\n", d);
- read_log_msg(logmsg);
- assert(strcmp(logmsg, expected) == 0);
- }
- LogClose(EXIT_NO_ERROR);
- unlink(log_file_path);
- #undef read_log_msg
- }
- #pragma GCC diagnostic pop /* "-Wformat-security" */
- int
- main(int argc, char **argv)
- {
- number_formatting();
- logging_format();
- return 0;
- }
|