2008-01-29 18:15:54 +00:00
|
|
|
#include <config.h>
|
2006-08-24 21:46:28 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2007-11-26 12:03:34 +00:00
|
|
|
|
Wed Dec 5 13:48:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* python/libvir.c, python/libvirt_wrap.h, qemud/qemud.c,
qemud/remote.c, src/internal.h, src/openvz_conf.c,
src/openvz_driver.c, src/proxy_internal.h, src/qemu_conf.c,
src/qemu_driver.c, src/remote_internal.h, src/test.h, src/util.c,
src/xen_unified.c, src/xen_unified.h, tests/nodeinfotest.c,
tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c, tests/reconnect.c,
tests/sexpr2xmltest.c, tests/virshtest.c, tests/xencapstest.c,
tests/xmconfigtest.c, tests/xml2sexprtest.c:
Change #include <> to #include "" for local includes.
Removed many includes from src/internal.h and put them in
the C files which actually use them.
Removed <ansidecl.h> - unused.
Added a comment around __func__.
Removed a clashing redefinition of VERSION symbol.
All limits (PATH_MAX etc) now done in src/internal.h, so we
don't need to include those headers in other files.
2007-12-05 13:56:22 +00:00
|
|
|
#include "internal.h"
|
2006-08-24 21:46:28 +00:00
|
|
|
#include "xml.h"
|
|
|
|
#include "testutils.h"
|
|
|
|
|
|
|
|
static char *progname;
|
2008-05-29 19:20:22 +00:00
|
|
|
static char *abs_srcdir;
|
2006-08-24 21:46:28 +00:00
|
|
|
#define MAX_FILE 4096
|
|
|
|
|
2008-11-24 07:11:26 +00:00
|
|
|
#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\
|
2010-06-17 07:57:12 +00:00
|
|
|
Persistent: yes\n\
|
2008-11-24 07:11:26 +00:00
|
|
|
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";
|
|
|
|
|
2006-08-24 21:46:28 +00:00
|
|
|
static int testFilterLine(char *buffer,
|
2008-04-10 16:54:54 +00:00
|
|
|
const char *toRemove) {
|
2006-08-24 21:46:28 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-11-24 07:11:26 +00:00
|
|
|
static int testCompareOutputLit(const char *expectData,
|
|
|
|
const char *filter, const char *const argv[]) {
|
2006-08-24 21:46:28 +00:00
|
|
|
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;
|
|
|
|
|
2008-05-14 19:51:24 +00:00
|
|
|
if (STRNEQ(expectData, actualData)) {
|
|
|
|
virtTestDifference(stderr, expectData, actualData);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-08-24 21:46:28 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-24 07:11:26 +00:00
|
|
|
#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
|
2006-08-24 21:46:28 +00:00
|
|
|
|
2009-09-16 11:01:53 +00:00
|
|
|
#define VIRSH_DEFAULT "../tools/virsh", \
|
2006-08-24 21:46:28 +00:00
|
|
|
"--connect", \
|
|
|
|
"test:///default"
|
|
|
|
|
|
|
|
static char *custom_uri;
|
|
|
|
|
2009-09-16 11:01:53 +00:00
|
|
|
#define VIRSH_CUSTOM "../tools/virsh", \
|
2006-08-24 21:46:28 +00:00
|
|
|
"--connect", \
|
|
|
|
custom_uri
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareListDefault(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
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);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareListCustom(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
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);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareNodeinfoDefault(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
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);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareNodeinfoCustom(const void *data ATTRIBUTE_UNUSED) {
|
2006-08-24 21:46:28 +00:00
|
|
|
const char *const argv[] = {
|
|
|
|
VIRSH_CUSTOM,
|
|
|
|
"nodeinfo",
|
|
|
|
NULL
|
|
|
|
};
|
2008-11-24 07:11:26 +00:00
|
|
|
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);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDominfoByID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "dominfo", "2", NULL };
|
|
|
|
const char *exp = dominfo_fc4;
|
|
|
|
return testCompareOutputLit(exp, "\nCPU time:", argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDominfoByUUID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "dominfo", DOM_UUID, NULL };
|
|
|
|
const char *exp = dominfo_fc4;
|
|
|
|
return testCompareOutputLit(exp, "\nCPU time:", argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDominfoByName(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "dominfo", "fc4", NULL };
|
|
|
|
const char *exp = dominfo_fc4;
|
|
|
|
return testCompareOutputLit(exp, "\nCPU time:", argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomuuidByID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domuuid", "2", NULL };
|
|
|
|
const char *exp = domuuid_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomuuidByName(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domuuid", "fc4", NULL };
|
|
|
|
const char *exp = domuuid_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomidByName(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domid", "fc4", NULL };
|
|
|
|
const char *exp = domid_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomidByUUID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domid", DOM_UUID, NULL };
|
|
|
|
const char *exp = domid_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomnameByID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domname", "2", NULL };
|
|
|
|
const char *exp = domname_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomnameByUUID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domname", DOM_UUID, NULL };
|
|
|
|
const char *exp = domname_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomstateByID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domstate", "2", NULL };
|
|
|
|
const char *exp = domstate_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomstateByUUID(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domstate", DOM_UUID, NULL };
|
|
|
|
const char *exp = domstate_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
static int testCompareDomstateByName(const void *data ATTRIBUTE_UNUSED) {
|
2008-11-24 07:11:26 +00:00
|
|
|
const char *const argv[] = { VIRSH_CUSTOM, "domstate", "fc4", NULL };
|
|
|
|
const char *exp = domstate_fc4;
|
|
|
|
return testCompareOutputLit(exp, NULL, argv);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
|
|
|
|
2010-10-15 16:34:11 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
static int
|
|
|
|
mymain(int argc, char **argv)
|
2006-08-24 21:46:28 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
char buffer[PATH_MAX];
|
2008-05-29 19:20:22 +00:00
|
|
|
char cwd[PATH_MAX];
|
2006-08-24 21:46:28 +00:00
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
abs_srcdir = getenv("abs_srcdir");
|
|
|
|
if (!abs_srcdir)
|
|
|
|
abs_srcdir = getcwd(cwd, sizeof(cwd));
|
2006-08-24 21:46:28 +00:00
|
|
|
|
2008-10-28 17:48:01 +00:00
|
|
|
#ifdef WIN32
|
2009-12-15 08:43:29 +00:00
|
|
|
exit (EXIT_AM_SKIP);
|
2008-10-28 17:48:01 +00:00
|
|
|
#endif
|
|
|
|
|
2009-09-16 18:02:59 +00:00
|
|
|
snprintf(buffer, PATH_MAX-1, "test://%s/../examples/xml/test/testnode.xml", abs_srcdir);
|
2006-08-24 21:46:28 +00:00
|
|
|
buffer[PATH_MAX-1] = '\0';
|
|
|
|
progname = argv[0];
|
|
|
|
custom_uri = buffer;
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2006-08-24 21:46:28 +00:00
|
|
|
if (argc > 1) {
|
2008-02-05 19:27:37 +00:00
|
|
|
fprintf(stderr, "Usage: %s\n", progname);
|
2008-05-29 19:20:22 +00:00
|
|
|
return(EXIT_FAILURE);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2006-08-24 21:46:28 +00:00
|
|
|
if (virtTestRun("virsh list (default)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareListDefault, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh list (custom)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareListCustom, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh nodeinfo (default)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareNodeinfoDefault, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh nodeinfo (custom)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareNodeinfoCustom, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh dominfo (by id)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDominfoByID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh dominfo (by uuid)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDominfoByUUID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh dominfo (by name)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDominfoByName, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domid (by name)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomidByName, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domid (by uuid)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomidByUUID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domuuid (by id)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomuuidByID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domuuid (by name)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomuuidByName, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domname (by id)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomnameByID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domname (by uuid)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomnameByUUID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domstate (by id)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomstateByID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domstate (by uuid)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomstateByUUID, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (virtTestRun("virsh domstate (by name)",
|
2008-04-10 16:54:54 +00:00
|
|
|
1, testCompareDomstateByName, NULL) != 0)
|
2006-08-24 21:46:28 +00:00
|
|
|
ret = -1;
|
|
|
|
|
2010-10-15 16:34:11 +00:00
|
|
|
/* 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 + * ; . ' " / ? = \n < > &\n",
|
|
|
|
"echo", "--xml", "a", "A", "0", "+", "*", ";", ".", "'", "\"",
|
|
|
|
"/", "?", "=", " ", "\n", "<", ">", "&");
|
|
|
|
DO_TEST(16, "a A 0 + '*' ';' . ''' '"' / '?' = ' ' '\n' '<'"
|
|
|
|
" '>' '&'\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
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
return(ret==0 ? EXIT_SUCCESS : EXIT_FAILURE);
|
2006-08-24 21:46:28 +00:00
|
|
|
}
|
2008-05-29 19:20:22 +00:00
|
|
|
|
|
|
|
VIRT_TEST_MAIN(mymain)
|