2012-02-26 00:48:02 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-04-16 13:41:44 +00:00
|
|
|
#include "testutils.h"
|
|
|
|
|
2012-02-26 00:48:02 +00:00
|
|
|
#ifdef WITH_QEMU
|
|
|
|
|
|
|
|
# include "internal.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
# include "viralloc.h"
|
2012-02-26 00:48:02 +00:00
|
|
|
# include "qemu/qemu_monitor.h"
|
|
|
|
|
|
|
|
struct testEscapeString
|
|
|
|
{
|
|
|
|
const char *unescaped;
|
|
|
|
const char *escaped;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct testEscapeString escapeStrings[] = {
|
|
|
|
{ "", "" },
|
|
|
|
{ " ", " " },
|
|
|
|
{ "\\", "\\\\" },
|
|
|
|
{ "\n", "\\n" },
|
|
|
|
{ "\r", "\\r" },
|
|
|
|
{ "\"", "\\\"" },
|
|
|
|
{ "\"\"\"\\\\\n\r\\\\\n\r\"\"\"", "\\\"\\\"\\\"\\\\\\\\\\n\\r\\\\\\\\\\n\\r\\\"\\\"\\\"" },
|
|
|
|
{ "drive_add dummy file=foo\\", "drive_add dummy file=foo\\\\" },
|
|
|
|
{ "block info", "block info" },
|
|
|
|
{ "set_password \":\\\"\"", "set_password \\\":\\\\\\\"\\\"" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int testEscapeArg(const void *data ATTRIBUTE_UNUSED)
|
|
|
|
{
|
Convert 'int i' to 'size_t i' in tests/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
size_t i;
|
2012-02-26 00:48:02 +00:00
|
|
|
char *escaped = NULL;
|
|
|
|
for (i = 0; i < ARRAY_CARDINALITY(escapeStrings); ++i) {
|
|
|
|
escaped = qemuMonitorEscapeArg(escapeStrings[i].unescaped);
|
|
|
|
if (!escaped) {
|
|
|
|
if (virTestGetDebug() > 0) {
|
|
|
|
fprintf(stderr, "\nUnescaped string [%s]\n",
|
|
|
|
escapeStrings[i].unescaped);
|
|
|
|
fprintf(stderr, "Expect result [%s]\n",
|
|
|
|
escapeStrings[i].escaped);
|
|
|
|
fprintf(stderr, "Actual result [(null)]\n");
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (STRNEQ(escapeStrings[i].escaped, escaped)) {
|
|
|
|
virtTestDifference(stderr, escapeStrings[i].escaped, escaped);
|
|
|
|
VIR_FREE(escaped);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
VIR_FREE(escaped);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int testUnescapeArg(const void *data ATTRIBUTE_UNUSED)
|
|
|
|
{
|
Convert 'int i' to 'size_t i' in tests/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
size_t i;
|
2012-02-26 00:48:02 +00:00
|
|
|
char *unescaped = NULL;
|
|
|
|
for (i = 0; i < ARRAY_CARDINALITY(escapeStrings); ++i) {
|
|
|
|
unescaped = qemuMonitorUnescapeArg(escapeStrings[i].escaped);
|
|
|
|
if (!unescaped) {
|
|
|
|
if (virTestGetDebug() > 0) {
|
|
|
|
fprintf(stderr, "\nEscaped string [%s]\n",
|
|
|
|
escapeStrings[i].escaped);
|
|
|
|
fprintf(stderr, "Expect result [%s]\n",
|
|
|
|
escapeStrings[i].unescaped);
|
|
|
|
fprintf(stderr, "Actual result [(null)]\n");
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (STRNEQ(escapeStrings[i].unescaped, unescaped)) {
|
|
|
|
virtTestDifference(stderr, escapeStrings[i].unescaped, unescaped);
|
|
|
|
VIR_FREE(unescaped);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
VIR_FREE(unescaped);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mymain(void)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
# define DO_TEST(_name) \
|
|
|
|
do { \
|
2013-09-20 18:13:35 +00:00
|
|
|
if (virtTestRun("qemu monitor "#_name, test##_name, \
|
2012-02-26 00:48:02 +00:00
|
|
|
NULL) < 0) { \
|
|
|
|
result = -1; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
DO_TEST(EscapeArg);
|
|
|
|
DO_TEST(UnescapeArg);
|
|
|
|
|
|
|
|
return result == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIRT_TEST_MAIN(mymain)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
return EXIT_AM_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WITH_QEMU */
|