virshtest.c 7.7 KB
Newer Older
1 2 3 4

#include <stdio.h>
#include <string.h>
#include <unistd.h>
5
#include <limits.h>
6 7 8 9 10 11

#include "xml.h"
#include "testutils.h"
#include "internal.h"

static char *progname;
12
static char *abs_top_srcdir;
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#define MAX_FILE 4096

static int testFilterLine(char *buffer,
			  const char *toRemove) {
  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;
}

31 32
static int testCompareOutput(const char *expect_rel, const char *filter,
                             const char *const argv[]) {
33 34 35 36
  char expectData[MAX_FILE];
  char actualData[MAX_FILE];
  char *expectPtr = &(expectData[0]);
  char *actualPtr = &(actualData[0]);
37 38 39
  char expect[PATH_MAX];

  snprintf(expect, sizeof expect - 1, "%s/tests/%s", abs_top_srcdir, expect_rel);
40 41 42 43 44 45 46 47 48 49 50 51

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

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

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

  if (getenv("DEBUG_TESTS")) {
52 53
      printf("Expect %d '%s'\n", (int)strlen(expectData), expectData);
      printf("Actual %d '%s'\n", (int)strlen(actualData), actualData);
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
  }
  if (strcmp(expectData, actualData))
    return -1;

  return 0;
}


#define VIRSH_DEFAULT     "../src/virsh", \
    "--connect", \
    "test:///default"

static char *custom_uri;

#define VIRSH_CUSTOM     "../src/virsh", \
    "--connect", \
    custom_uri



74
static int testCompareListDefault(const void *data ATTRIBUTE_UNUSED) {
75 76 77 78 79 80 81 82 83 84
  const char *const argv[] = {
    VIRSH_DEFAULT,
    "list",
    NULL
  };
  return testCompareOutput("virshdata/list-default.txt",
			   NULL,
			   argv);
}

85
static int testCompareListCustom(const void *data ATTRIBUTE_UNUSED) {
86 87 88 89 90 91 92 93 94 95 96
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "list",
    NULL
  };
  return testCompareOutput("virshdata/list-custom.txt",
			   NULL,
			   argv);
}


97
static int testCompareNodeinfoDefault(const void *data ATTRIBUTE_UNUSED) {
98 99 100 101 102 103 104 105 106 107
  const char *const argv[] = {
    VIRSH_DEFAULT,
    "nodeinfo",
    NULL
  };
  return testCompareOutput("virshdata/nodeinfo-default.txt",
			   NULL,
			   argv);
}

108
static int testCompareNodeinfoCustom(const void *data ATTRIBUTE_UNUSED) {
109 110 111 112 113 114 115 116 117 118
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "nodeinfo",
    NULL
  };
  return testCompareOutput("virshdata/nodeinfo-custom.txt",
			   NULL,
			   argv);
}

119
static int testCompareDominfoByID(const void *data ATTRIBUTE_UNUSED) {
120 121 122
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "dominfo",
D
Daniel P. Berrange 已提交
123
    "2",
124 125 126 127 128 129 130 131
    NULL
  };
  return testCompareOutput("virshdata/dominfo-fc4.txt",
			   "\nCPU time:",
			   argv);
}


132
static int testCompareDominfoByUUID(const void *data ATTRIBUTE_UNUSED) {
133 134 135 136 137 138 139 140 141 142 143 144
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "dominfo",
    "ef861801-45b9-11cb-88e3-afbfe5370493",
    NULL
  };
  return testCompareOutput("virshdata/dominfo-fc4.txt",
			   "\nCPU time:",
			   argv);
}


145
static int testCompareDominfoByName(const void *data ATTRIBUTE_UNUSED) {
146 147 148 149 150 151 152 153 154 155 156 157
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "dominfo",
    "fc4",
    NULL
  };
  return testCompareOutput("virshdata/dominfo-fc4.txt",
			   "\nCPU time:",
			   argv);
}


158
static int testCompareDomuuidByID(const void *data ATTRIBUTE_UNUSED) {
159 160 161
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domuuid",
D
Daniel P. Berrange 已提交
162
    "2",
163 164 165 166 167 168 169
    NULL
  };
  return testCompareOutput("virshdata/domuuid-fc4.txt",
			   NULL,
			   argv);
}

170
static int testCompareDomuuidByName(const void *data ATTRIBUTE_UNUSED) {
171 172 173 174 175 176 177 178 179 180 181
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domuuid",
    "fc4",
    NULL
  };
  return testCompareOutput("virshdata/domuuid-fc4.txt",
			   NULL,
			   argv);
}

182
static int testCompareDomidByName(const void *data ATTRIBUTE_UNUSED) {
183 184 185 186 187 188 189 190 191 192 193 194
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domid",
    "fc4",
    NULL
  };
  return testCompareOutput("virshdata/domid-fc4.txt",
			   NULL,
			   argv);
}


195
static int testCompareDomidByUUID(const void *data ATTRIBUTE_UNUSED) {
196 197 198 199 200 201 202 203 204 205 206 207
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domid",
    "ef861801-45b9-11cb-88e3-afbfe5370493",
    NULL
  };
  return testCompareOutput("virshdata/domid-fc4.txt",
			   NULL,
			   argv);
}


208
static int testCompareDomnameByID(const void *data ATTRIBUTE_UNUSED) {
209 210 211
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domname",
D
Daniel P. Berrange 已提交
212
    "2",
213 214 215 216 217 218 219 220
    NULL
  };
  return testCompareOutput("virshdata/domname-fc4.txt",
			   NULL,
			   argv);
}


221
static int testCompareDomnameByUUID(const void *data ATTRIBUTE_UNUSED) {
222 223 224 225 226 227 228 229 230 231 232
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domname",
    "ef861801-45b9-11cb-88e3-afbfe5370493",
    NULL
  };
  return testCompareOutput("virshdata/domname-fc4.txt",
			   NULL,
			   argv);
}

233
static int testCompareDomstateByID(const void *data ATTRIBUTE_UNUSED) {
234 235 236
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domstate",
D
Daniel P. Berrange 已提交
237
    "2",
238 239 240 241 242 243 244 245
    NULL
  };
  return testCompareOutput("virshdata/domstate-fc4.txt",
			   NULL,
			   argv);
}


246
static int testCompareDomstateByUUID(const void *data ATTRIBUTE_UNUSED) {
247 248 249 250 251 252 253 254 255 256 257
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domstate",
    "ef861801-45b9-11cb-88e3-afbfe5370493",
    NULL
  };
  return testCompareOutput("virshdata/domstate-fc4.txt",
			   NULL,
			   argv);
}

258
static int testCompareDomstateByName(const void *data ATTRIBUTE_UNUSED) {
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
  const char *const argv[] = {
    VIRSH_CUSTOM,
    "domstate",
    "fc4",
    NULL
  };
  return testCompareOutput("virshdata/domstate-fc4.txt",
			   NULL,
			   argv);
}



int
main(int argc, char **argv)
{
    int ret = 0;
    char buffer[PATH_MAX];

278 279
    abs_top_srcdir = getenv("abs_top_srcdir");
    if (!abs_top_srcdir)
280 281
      return 1;

282
    snprintf(buffer, PATH_MAX-1, "test://%s/docs/testnode.xml", abs_top_srcdir);
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
    buffer[PATH_MAX-1] = '\0';
    progname = argv[0];
    custom_uri = buffer;
    
    if (argc > 1) {
        fprintf(stderr, "Usage: %s\n", progname); 
        exit(EXIT_FAILURE);
    }
    
    if (virtTestRun("virsh list (default)",
		    1, testCompareListDefault, NULL) != 0)
        ret = -1;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    exit(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
}