virshtest.c 12.4 KB
Newer Older
1
#include <config.h>
2 3 4 5

#include <stdio.h>
#include <string.h>
#include <unistd.h>
6

7
#include "internal.h"
8 9 10 11
#include "xml.h"
#include "testutils.h"

static char *progname;
12
static char *abs_srcdir;
13 14
#define MAX_FILE 4096

15 16 17 18 19 20 21 22 23 24 25
#define DOM_UUID "ef861801-45b9-11cb-88e3-afbfe5370493"

static const char *dominfo_fc4 = "\
Id:             2\n\
Name:           fc4\n\
UUID:           " DOM_UUID "\n\
OS Type:        linux\n\
State:          running\n\
CPU(s):         1\n\
Max memory:     261072 kB\n\
Used memory:    131072 kB\n\
26
Persistent:     yes\n\
27 28 29 30 31 32 33
Autostart:      disable\n\
\n";
static const char *domuuid_fc4 = DOM_UUID "\n\n";
static const char *domid_fc4 = "2\n\n";
static const char *domname_fc4 = "fc4\n\n";
static const char *domstate_fc4 = "running\n\n";

34
static int testFilterLine(char *buffer,
35
                          const char *toRemove) {
36 37 38 39 40 41 42 43 44 45 46 47 48 49
  char *start;
  char *end;

  if (!(start = strstr(buffer, toRemove)))
    return -1;

  if (!(end = strstr(start+1, "\n"))) {
    *start = '\0';
  } else {
    memmove(start, end, strlen(end)+1);
  }
  return 0;
}

50 51
static int testCompareOutputLit(const char *expectData,
                                const char *filter, const char *const argv[]) {
52 53 54 55 56 57 58 59 60 61
  char actualData[MAX_FILE];
  char *actualPtr = &(actualData[0]);

  if (virtTestCaptureProgramOutput(argv, &actualPtr, MAX_FILE) < 0)
    return -1;

  if (filter)
    if (testFilterLine(actualData, filter) < 0)
      return -1;

62 63 64 65
  if (STRNEQ(expectData, actualData)) {
      virtTestDifference(stderr, expectData, actualData);
      return -1;
  }
66 67 68 69

  return 0;
}

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
#if unused
static int testCompareOutput(const char *expect_rel, const char *filter,
                             const char *const argv[]) {
  char expectData[MAX_FILE];
  char *expectPtr = &(expectData[0]);
  char expect[PATH_MAX];

  snprintf(expect, sizeof expect - 1, "%s/%s", abs_srcdir, expect_rel);

  if (virtTestLoadFile(expect, &expectPtr, MAX_FILE) < 0)
    return -1;

  return testCompareOutputLit(expectData, filter, argv);
}
#endif
85

86
#define VIRSH_DEFAULT     "../tools/virsh", \
87 88 89 90 91
    "--connect", \
    "test:///default"

static char *custom_uri;

92
#define VIRSH_CUSTOM     "../tools/virsh", \
93 94 95
    "--connect", \
    custom_uri

96
static int testCompareListDefault(const void *data ATTRIBUTE_UNUSED) {
97 98 99 100 101 102 103
  const char *const argv[] = { VIRSH_DEFAULT, "list", NULL };
  const char *exp = "\
 Id Name                 State\n\
----------------------------------\n\
  1 test                 running\n\
\n";
  return testCompareOutputLit(exp, NULL, argv);
104 105
}

106
static int testCompareListCustom(const void *data ATTRIBUTE_UNUSED) {
107 108 109 110 111 112 113 114
  const char *const argv[] = { VIRSH_CUSTOM, "list", NULL };
  const char *exp = "\
 Id Name                 State\n\
----------------------------------\n\
  1 fv0                  running\n\
  2 fc4                  running\n\
\n";
  return testCompareOutputLit(exp, NULL, argv);
115 116
}

117
static int testCompareNodeinfoDefault(const void *data ATTRIBUTE_UNUSED) {
118 119 120 121 122 123 124 125 126 127 128 129
  const char *const argv[] = { VIRSH_DEFAULT, "nodeinfo", NULL };
  const char *exp = "\
CPU model:           i686\n\
CPU(s):              16\n\
CPU frequency:       1400 MHz\n\
CPU socket(s):       2\n\
Core(s) per socket:  2\n\
Thread(s) per core:  2\n\
NUMA cell(s):        2\n\
Memory size:         3145728 kB\n\
\n";
  return testCompareOutputLit(exp, NULL, argv);
130 131
}

132
static int testCompareNodeinfoCustom(const void *data ATTRIBUTE_UNUSED) {
133 134 135 136 137
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "nodeinfo",
    NULL
  };
138 139 140 141 142 143 144 145 146 147 148
  const char *exp = "\
CPU model:           i986\n\
CPU(s):              50\n\
CPU frequency:       6000 MHz\n\
CPU socket(s):       4\n\
Core(s) per socket:  4\n\
Thread(s) per core:  2\n\
NUMA cell(s):        4\n\
Memory size:         8192000 kB\n\
\n";
  return testCompareOutputLit(exp, NULL, argv);
149 150
}

151
static int testCompareDominfoByID(const void *data ATTRIBUTE_UNUSED) {
152 153 154
  const char *const argv[] = { VIRSH_CUSTOM, "dominfo", "2", NULL };
  const char *exp = dominfo_fc4;
  return testCompareOutputLit(exp, "\nCPU time:", argv);
155 156
}

157
static int testCompareDominfoByUUID(const void *data ATTRIBUTE_UNUSED) {
158 159 160
  const char *const argv[] = { VIRSH_CUSTOM, "dominfo", DOM_UUID, NULL };
  const char *exp = dominfo_fc4;
  return testCompareOutputLit(exp, "\nCPU time:", argv);
161 162
}

163
static int testCompareDominfoByName(const void *data ATTRIBUTE_UNUSED) {
164 165 166
  const char *const argv[] = { VIRSH_CUSTOM, "dominfo", "fc4", NULL };
  const char *exp = dominfo_fc4;
  return testCompareOutputLit(exp, "\nCPU time:", argv);
167 168
}

169
static int testCompareDomuuidByID(const void *data ATTRIBUTE_UNUSED) {
170 171 172
  const char *const argv[] = { VIRSH_CUSTOM, "domuuid", "2", NULL };
  const char *exp = domuuid_fc4;
  return testCompareOutputLit(exp, NULL, argv);
173 174
}

175
static int testCompareDomuuidByName(const void *data ATTRIBUTE_UNUSED) {
176 177 178
  const char *const argv[] = { VIRSH_CUSTOM, "domuuid", "fc4", NULL };
  const char *exp = domuuid_fc4;
  return testCompareOutputLit(exp, NULL, argv);
179 180
}

181
static int testCompareDomidByName(const void *data ATTRIBUTE_UNUSED) {
182 183 184
  const char *const argv[] = { VIRSH_CUSTOM, "domid", "fc4", NULL };
  const char *exp = domid_fc4;
  return testCompareOutputLit(exp, NULL, argv);
185 186
}

187
static int testCompareDomidByUUID(const void *data ATTRIBUTE_UNUSED) {
188 189 190
  const char *const argv[] = { VIRSH_CUSTOM, "domid", DOM_UUID, NULL };
  const char *exp = domid_fc4;
  return testCompareOutputLit(exp, NULL, argv);
191 192
}

193
static int testCompareDomnameByID(const void *data ATTRIBUTE_UNUSED) {
194 195 196
  const char *const argv[] = { VIRSH_CUSTOM, "domname", "2", NULL };
  const char *exp = domname_fc4;
  return testCompareOutputLit(exp, NULL, argv);
197 198
}

199
static int testCompareDomnameByUUID(const void *data ATTRIBUTE_UNUSED) {
200 201 202
  const char *const argv[] = { VIRSH_CUSTOM, "domname", DOM_UUID, NULL };
  const char *exp = domname_fc4;
  return testCompareOutputLit(exp, NULL, argv);
203 204
}

205
static int testCompareDomstateByID(const void *data ATTRIBUTE_UNUSED) {
206 207 208
  const char *const argv[] = { VIRSH_CUSTOM, "domstate", "2", NULL };
  const char *exp = domstate_fc4;
  return testCompareOutputLit(exp, NULL, argv);
209 210
}

211
static int testCompareDomstateByUUID(const void *data ATTRIBUTE_UNUSED) {
212 213 214
  const char *const argv[] = { VIRSH_CUSTOM, "domstate", DOM_UUID, NULL };
  const char *exp = domstate_fc4;
  return testCompareOutputLit(exp, NULL, argv);
215 216
}

217
static int testCompareDomstateByName(const void *data ATTRIBUTE_UNUSED) {
218 219 220
  const char *const argv[] = { VIRSH_CUSTOM, "domstate", "fc4", NULL };
  const char *exp = domstate_fc4;
  return testCompareOutputLit(exp, NULL, argv);
221 222
}

223 224 225 226 227 228 229 230 231 232 233
struct testInfo {
    const char *const *argv;
    const char *result;
};

static int testCompareEcho(const void *data) {
    const struct testInfo *info = data;
    return testCompareOutputLit(info->result, NULL, info->argv);
}


234 235
static int
mymain(int argc, char **argv)
236 237 238
{
    int ret = 0;
    char buffer[PATH_MAX];
239
    char cwd[PATH_MAX];
240

241 242 243
    abs_srcdir = getenv("abs_srcdir");
    if (!abs_srcdir)
        abs_srcdir = getcwd(cwd, sizeof(cwd));
244

J
Jim Meyering 已提交
245
#ifdef WIN32
246
    exit (EXIT_AM_SKIP);
J
Jim Meyering 已提交
247 248
#endif

249
    snprintf(buffer, PATH_MAX-1, "test://%s/../examples/xml/test/testnode.xml", abs_srcdir);
250 251 252
    buffer[PATH_MAX-1] = '\0';
    progname = argv[0];
    custom_uri = buffer;
253

254
    if (argc > 1) {
255
        fprintf(stderr, "Usage: %s\n", progname);
256
        return(EXIT_FAILURE);
257
    }
258

259
    if (virtTestRun("virsh list (default)",
260
                    1, testCompareListDefault, NULL) != 0)
261 262 263
        ret = -1;

    if (virtTestRun("virsh list (custom)",
264
                    1, testCompareListCustom, NULL) != 0)
265 266 267
        ret = -1;

    if (virtTestRun("virsh nodeinfo (default)",
268
                    1, testCompareNodeinfoDefault, NULL) != 0)
269 270 271
        ret = -1;

    if (virtTestRun("virsh nodeinfo (custom)",
272
                    1, testCompareNodeinfoCustom, NULL) != 0)
273 274 275
        ret = -1;

    if (virtTestRun("virsh dominfo (by id)",
276
                    1, testCompareDominfoByID, NULL) != 0)
277 278 279
        ret = -1;

    if (virtTestRun("virsh dominfo (by uuid)",
280
                    1, testCompareDominfoByUUID, NULL) != 0)
281 282 283
        ret = -1;

    if (virtTestRun("virsh dominfo (by name)",
284
                    1, testCompareDominfoByName, NULL) != 0)
285 286 287
        ret = -1;

    if (virtTestRun("virsh domid (by name)",
288
                    1, testCompareDomidByName, NULL) != 0)
289 290 291
        ret = -1;

    if (virtTestRun("virsh domid (by uuid)",
292
                    1, testCompareDomidByUUID, NULL) != 0)
293 294 295
        ret = -1;

    if (virtTestRun("virsh domuuid (by id)",
296
                    1, testCompareDomuuidByID, NULL) != 0)
297 298 299
        ret = -1;

    if (virtTestRun("virsh domuuid (by name)",
300
                    1, testCompareDomuuidByName, NULL) != 0)
301 302 303
        ret = -1;

    if (virtTestRun("virsh domname (by id)",
304
                    1, testCompareDomnameByID, NULL) != 0)
305 306 307
        ret = -1;

    if (virtTestRun("virsh domname (by uuid)",
308
                    1, testCompareDomnameByUUID, NULL) != 0)
309 310 311
        ret = -1;

    if (virtTestRun("virsh domstate (by id)",
312
                    1, testCompareDomstateByID, NULL) != 0)
313 314 315
        ret = -1;

    if (virtTestRun("virsh domstate (by uuid)",
316
                    1, testCompareDomstateByUUID, NULL) != 0)
317 318 319
        ret = -1;

    if (virtTestRun("virsh domstate (by name)",
320
                    1, testCompareDomstateByName, NULL) != 0)
321 322
        ret = -1;

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
    /* It's a bit awkward listing result before argument, but that's a
     * limitation of C99 vararg macros.  */
#define DO_TEST(i, result, ...)                                         \
    do {                                                                \
        const char *myargv[] = { VIRSH_DEFAULT, __VA_ARGS__, NULL };    \
        const struct testInfo info = { myargv, result };                \
        if (virtTestRun("virsh echo " #i,                               \
                        1, testCompareEcho, &info) < 0)                 \
            ret = -1;                                                   \
    } while (0)

    /* Arg parsing quote removal tests.  */
    DO_TEST(0, "\n",
            "echo");
    DO_TEST(1, "a\n",
            "echo", "a");
    DO_TEST(2, "a b\n",
            "echo", "a", "b");
    DO_TEST(3, "a b\n",
            "echo a \t b");
    DO_TEST(4, "a \t b\n",
            "echo \"a \t b\"");
    DO_TEST(5, "a \t b\n",
            "echo 'a \t b'");
    DO_TEST(6, "a \t b\n",
            "echo a\\ \\\t\\ b");
    DO_TEST(7, "\n\n",
            "echo ; echo");
    DO_TEST(8, "a\nb\n",
            ";echo a; ; echo b;");
    DO_TEST(9, "' \" \\;echo\ta\n",
            "echo", "'", "\"", "\\;echo\ta");
    DO_TEST(10, "' \" ;echo a\n",
            "echo \\' \\\" \\;echo\ta");
    DO_TEST(11, "' \" \\\na\n",
            "echo \\' \\\" \\\\;echo\ta");
    DO_TEST(12, "' \" \\\\\n",
            "echo  \"'\"  '\"'  '\\'\"\\\\\"");

    /* Tests of echo flags.  */
    DO_TEST(13, "a A 0 + * ; . ' \" / ? =   \n < > &\n",
            "echo", "a", "A", "0", "+", "*", ";", ".", "'", "\"", "/", "?",
            "=", " ", "\n", "<", ">", "&");
    DO_TEST(14, "a A 0 + '*' ';' . ''\\''' '\"' / '?' = ' ' '\n' '<' '>' '&'\n",
            "echo", "--shell", "a", "A", "0", "+", "*", ";", ".", "'", "\"",
            "/", "?", "=", " ", "\n", "<", ">", "&");
    DO_TEST(15, "a A 0 + * ; . &apos; &quot; / ? =   \n &lt; &gt; &amp;\n",
            "echo", "--xml", "a", "A", "0", "+", "*", ";", ".", "'", "\"",
            "/", "?", "=", " ", "\n", "<", ">", "&");
    DO_TEST(16, "a A 0 + '*' ';' . '&apos;' '&quot;' / '?' = ' ' '\n' '&lt;'"
            " '&gt;' '&amp;'\n",
            "echo", "--shell", "--xml", "a", "A", "0", "+", "*", ";", ".", "'",
            "\"", "/", "?", "=", " ", "\n", "<", ">", "&");
    DO_TEST(17, "\n",
            "echo", "");
    DO_TEST(18, "''\n",
            "echo", "--shell", "");
    DO_TEST(19, "\n",
            "echo", "--xml", "");
    DO_TEST(20, "''\n",
            "echo", "--xml", "--shell", "");
    DO_TEST(21, "\n",
            "echo ''");
    DO_TEST(22, "''\n",
            "echo --shell \"\"");
    DO_TEST(23, "\n",
            "echo --xml ''");
    DO_TEST(24, "''\n",
            "echo --xml --shell \"\"''");

    /* Tests of -- handling.  */
    DO_TEST(25, "a\n",
            "--", "echo", "--shell", "a");
    DO_TEST(26, "a\n",
            "--", "echo", "a", "--shell");
    DO_TEST(27, "a --shell\n",
            "--", "echo", "--", "a", "--shell");
    DO_TEST(28, "-- --shell a\n",
            "echo", "--", "--", "--shell", "a");
    DO_TEST(29, "a\n",
            "echo --s\\h'e'\"l\"l -- a");
    DO_TEST(30, "--shell a\n",
            "echo \t '-'\"-\" \t --shell \t a");

#undef DO_TEST

409
    return(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
410
}
411 412

VIRT_TEST_MAIN(mymain)