blob: 90f2e24134954e9d284b1a2b1686e316323c9180 [file] [log] [blame]
/*
*
* Copyright (C) 2006-2007 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND OTHER CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libyasm/file.h"
#include "libyasm/coretype.h"
typedef struct Test_Entry {
/* combpath function to test */
char * (*combpath) (const char *from, const char *to);
/* input "from" path */
const char *from;
/* input "to" path */
const char *to;
/* correct path returned */
const char *out;
} Test_Entry;
static Test_Entry tests[] = {
/* UNIX */
{yasm__combpath_unix, "file1", "file2", "file2"},
{yasm__combpath_unix, "./file1.ext", "./file2.ext", "file2.ext"},
{yasm__combpath_unix, "/file1", "file2", "/file2"},
{yasm__combpath_unix, "file1", "/file2", "/file2"},
{yasm__combpath_unix, "/foo/file1", "../../file2", "/file2"},
{yasm__combpath_unix, "/foo//file1", "../../file2", "/file2"},
{yasm__combpath_unix, "foo/bar/file1", "../file2", "foo/file2"},
{yasm__combpath_unix, "foo/bar/file1", "../../../file2", "../file2"},
{yasm__combpath_unix, "foo/bar//file1", "../..//..//file2", "../file2"},
{yasm__combpath_unix, "foo/bar/", "file2", "foo/bar/file2"},
{yasm__combpath_unix, "../../file1", "../../file2", "../../../../file2"},
{yasm__combpath_unix, "../foo/bar/../file1", "../../file2", "../foo/bar/../../../file2"},
{yasm__combpath_unix, "/", "../file2", "/file2"},
{yasm__combpath_unix, "../foo/", "../file2", "../file2"},
{yasm__combpath_unix, "../foo/file1", "../../bar/file2", "../../bar/file2"},
/* Windows */
{yasm__combpath_win, "file1", "file2", "file2"},
{yasm__combpath_win, "./file1.ext", "./file2.ext", "file2.ext"},
{yasm__combpath_win, "./file1.ext", ".\\file2.ext", "file2.ext"},
{yasm__combpath_win, ".\\file1.ext", "./file2.ext", "file2.ext"},
{yasm__combpath_win, "/file1", "file2", "\\file2"},
{yasm__combpath_win, "\\file1", "file2", "\\file2"},
{yasm__combpath_win, "file1", "/file2", "\\file2"},
{yasm__combpath_win, "file1", "\\file2", "\\file2"},
{yasm__combpath_win, "/foo\\file1", "../../file2", "\\file2"},
{yasm__combpath_win, "\\foo\\\\file1", "..\\../file2", "\\file2"},
{yasm__combpath_win, "foo/bar/file1", "../file2", "foo\\file2"},
{yasm__combpath_win, "foo/bar/file1", "../..\\../file2", "..\\file2"},
{yasm__combpath_win, "foo/bar//file1", "../..\\\\..//file2", "..\\file2"},
{yasm__combpath_win, "foo/bar/", "file2", "foo\\bar\\file2"},
{yasm__combpath_win, "..\\../file1", "../..\\file2", "..\\..\\..\\..\\file2"},
{yasm__combpath_win, "../foo/bar\\\\../file1", "../..\\file2", "..\\foo\\bar\\..\\..\\..\\file2"},
{yasm__combpath_win, "/", "../file2", "\\file2"},
{yasm__combpath_win, "../foo/", "../file2", "..\\file2"},
{yasm__combpath_win, "../foo/file1", "../..\\bar\\file2", "..\\..\\bar\\file2"},
{yasm__combpath_win, "c:/file1.ext", "./file2.ext", "c:\\file2.ext"},
{yasm__combpath_win, "e:\\path\\to/file1.ext", ".\\file2.ext", "e:\\path\\to\\file2.ext"},
{yasm__combpath_win, ".\\file1.ext", "g:file2.ext", "g:file2.ext"},
};
static char failed[1000];
static char failmsg[100];
static int
run_test(Test_Entry *test)
{
char *out;
const char *funcname;
if (test->combpath == &yasm__combpath_unix)
funcname = "unix";
else
funcname = "win";
out = test->combpath(test->from, test->to);
if (strcmp(out, test->out) != 0) {
sprintf(failmsg,
"combpath_%s(\"%s\", \"%s\"): expected \"%s\", got \"%s\"!",
funcname, test->from, test->to, test->out, out);
yasm_xfree(out);
return 1;
}
yasm_xfree(out);
return 0;
}
int
main(void)
{
int nf = 0;
int numtests = sizeof(tests)/sizeof(Test_Entry);
int i;
failed[0] = '\0';
printf("Test combpath_test: ");
for (i=0; i<numtests; i++) {
int fail = run_test(&tests[i]);
printf("%c", fail>0 ? 'F':'.');
fflush(stdout);
if (fail)
sprintf(failed, "%s ** F: %s\n", failed, failmsg);
nf += fail;
}
printf(" +%d-%d/%d %d%%\n%s",
numtests-nf, nf, numtests, 100*(numtests-nf)/numtests, failed);
return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}