virerrortest.c 2.6 KB
Newer Older
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
/*
 * 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, see
 * <http://www.gnu.org/licenses/>.
 */

#include <config.h>

#include "testutils.h"

#define LIBVIRT_VIRERRORPRIV_H_ALLOW
#include "virerrorpriv.h"
#undef LIBVIRT_VIRERRORPRIV_H_ALLOW

static int
virErrorTestMsgFormatInfoOne(const char *msg)
{
    bool found = false;
    char *next;
    int ret = 0;

    for (next = (char *)msg; (next = strchr(next, '%')); next++) {
        if (next[1] != 's') {
34
            VIR_TEST_VERBOSE("\nerror message '%s' contains disallowed printf modifiers", msg);
35 36 37
            ret = -1;
        } else {
            if (found) {
38
                VIR_TEST_VERBOSE("\nerror message '%s' contains multiple %%s modifiers", msg);
39 40 41 42 43 44 45 46
                ret = -1;
            } else {
                found = true;
            }
        }
    }

    if (!found) {
47
        VIR_TEST_VERBOSE("\nerror message '%s' does not contain any %%s modifiers", msg);
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
        ret = -1;
    }

    return ret;
}


static int
virErrorTestMsgs(const void *opaque ATTRIBUTE_UNUSED)
{
    const char *err_noinfo;
    const char *err_info;
    size_t i;
    int ret = 0;

    for (i = 1; i < VIR_ERR_NUMBER_LAST; i++) {
        err_noinfo = virErrorMsg(i, NULL);
        err_info = virErrorMsg(i, "");

        if (!err_noinfo) {
68
            VIR_TEST_VERBOSE("\nmissing string without info for error id %zu", i);
69 70 71 72
            ret = -1;
        }

        if (!err_info) {
73
            VIR_TEST_VERBOSE("\nmissing string with info for error id %zu", i);
74 75 76
            ret = -1;
        }

77
        if (err_noinfo && strchr(err_noinfo, '%')) {
78
            VIR_TEST_VERBOSE("\nerror message id %zu contains formatting characters: '%s'",
79 80 81 82
                             i, err_noinfo);
            ret = -1;
        }

83
        if (err_info && virErrorTestMsgFormatInfoOne(err_info) < 0)
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
            ret = -1;
    }

    return ret;
}


static int
mymain(void)
{
    int ret = 0;

    if (virTestRun("error message strings ", virErrorTestMsgs, NULL) < 0)
        ret = -1;

    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}

VIR_TEST_MAIN(mymain)