2003-06-15 15:41:32 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2003-06-15 15:41:32 +02:00
|
|
|
#include "hash.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
#include "util.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "values.hh"
|
|
|
|
#include "globals.hh"
|
2003-06-15 15:41:32 +02:00
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
void evalTest(Expr e)
|
2003-06-15 15:41:32 +02:00
|
|
|
{
|
2003-06-16 15:33:38 +02:00
|
|
|
EvalResult r = evalValue(e);
|
|
|
|
|
|
|
|
char * s = ATwriteToString(r.e);
|
|
|
|
cout << (string) r.h << ": " << s << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void runTests()
|
|
|
|
{
|
|
|
|
/* Hashing. */
|
|
|
|
string s = "0b0ffd0538622bfe20b92c4aa57254d9";
|
|
|
|
Hash h = parseHash(s);
|
|
|
|
if ((string) h != s) abort();
|
|
|
|
|
|
|
|
try {
|
|
|
|
h = parseHash("blah blah");
|
|
|
|
abort();
|
|
|
|
} catch (BadRefError err) { };
|
|
|
|
|
|
|
|
try {
|
|
|
|
h = parseHash("0b0ffd0538622bfe20b92c4aa57254d99");
|
|
|
|
abort();
|
|
|
|
} catch (BadRefError err) { };
|
|
|
|
|
|
|
|
|
|
|
|
/* Set up the test environment. */
|
|
|
|
|
|
|
|
mkdir("scratch", 0777);
|
2003-06-15 15:41:32 +02:00
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
string testDir = absPath("scratch");
|
|
|
|
cout << testDir << endl;
|
|
|
|
|
|
|
|
nixValues = testDir;
|
|
|
|
nixLogDir = testDir;
|
|
|
|
nixDB = testDir + "/db";
|
|
|
|
|
|
|
|
initDB();
|
|
|
|
|
|
|
|
/* Expression evaluation. */
|
|
|
|
|
|
|
|
evalTest(ATmake("Str(\"Hello World\")"));
|
|
|
|
evalTest(ATmake("Bool(True)"));
|
|
|
|
evalTest(ATmake("Bool(False)"));
|
|
|
|
|
|
|
|
Hash builder1 = addValue("./test-builder-1.sh");
|
|
|
|
|
|
|
|
evalTest(ATmake("Exec(Str(<str>), External(<str>), [])",
|
|
|
|
thisSystem.c_str(), ((string) builder1).c_str()));
|
|
|
|
|
|
|
|
Hash builder2 = addValue("./test-builder-2.sh");
|
|
|
|
|
|
|
|
evalTest(ATmake("Exec(Str(<str>), External(<str>), [])",
|
|
|
|
thisSystem.c_str(), ((string) builder2).c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
|
|
|
ATerm bottomOfStack;
|
|
|
|
ATinit(argc, argv, &bottomOfStack);
|
2003-06-15 15:41:32 +02:00
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
try {
|
|
|
|
runTests();
|
|
|
|
} catch (exception & e) {
|
|
|
|
cerr << "error: " << e.what() << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2003-06-15 15:41:32 +02:00
|
|
|
}
|