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-20 12:40:25 +02:00
|
|
|
#include "archive.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
#include "util.hh"
|
2003-07-07 09:44:57 +02:00
|
|
|
#include "fstate.hh"
|
|
|
|
#include "store.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
#include "globals.hh"
|
2003-06-15 15:41:32 +02:00
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
void realise(FState fs)
|
2003-06-15 15:41:32 +02:00
|
|
|
{
|
2003-06-27 16:56:12 +02:00
|
|
|
cout << format("%1% => %2%\n")
|
|
|
|
% printTerm(fs)
|
|
|
|
% printTerm(realiseFState(fs));
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
void realiseFail(FState fs)
|
2003-06-27 11:55:31 +02:00
|
|
|
{
|
|
|
|
try {
|
2003-06-27 15:55:12 +02:00
|
|
|
realiseFState(fs);
|
2003-06-27 11:55:31 +02:00
|
|
|
abort();
|
|
|
|
} catch (Error e) {
|
|
|
|
cout << "error (expected): " << e.what() << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-16 17:59:23 +02:00
|
|
|
struct MySink : DumpSink
|
|
|
|
{
|
|
|
|
virtual void operator () (const unsigned char * data, unsigned int len)
|
|
|
|
{
|
2003-06-18 16:34:43 +02:00
|
|
|
/* Don't use cout, it's slow as hell! */
|
2003-06-23 15:27:59 +02:00
|
|
|
if (write(STDOUT_FILENO, (char *) data, len) != (ssize_t) len)
|
|
|
|
throw SysError("writing to stdout");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct MySource : RestoreSource
|
|
|
|
{
|
|
|
|
virtual void operator () (const unsigned char * data, unsigned int len)
|
|
|
|
{
|
|
|
|
ssize_t res = read(STDIN_FILENO, (char *) data, len);
|
|
|
|
if (res == -1)
|
|
|
|
throw SysError("reading from stdin");
|
|
|
|
if (res != (ssize_t) len)
|
|
|
|
throw Error("not enough data available on stdin");
|
2003-06-16 17:59:23 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
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) { };
|
|
|
|
|
2003-07-08 21:58:41 +02:00
|
|
|
/* Path canonicalisation. */
|
|
|
|
cout << canonPath("/./../././//") << endl;
|
|
|
|
cout << canonPath("/foo/bar") << endl;
|
|
|
|
cout << canonPath("///foo/////bar//") << endl;
|
|
|
|
cout << canonPath("/././/foo/////bar//.") << endl;
|
|
|
|
cout << canonPath("/foo////bar//..///x/") << endl;
|
|
|
|
cout << canonPath("/foo////bar//..//..//x/y/../z/") << endl;
|
|
|
|
cout << canonPath("/foo/bar/../../../..///") << endl;
|
|
|
|
|
2003-06-16 17:59:23 +02:00
|
|
|
/* Dumping. */
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
MySink sink;
|
|
|
|
dumpPath("scratch", sink);
|
|
|
|
cout << (string) hashPath("scratch") << endl;
|
|
|
|
#endif
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-06-23 15:27:59 +02:00
|
|
|
/* Restoring. */
|
2003-06-23 16:40:49 +02:00
|
|
|
#if 0
|
2003-06-23 15:27:59 +02:00
|
|
|
MySource source;
|
|
|
|
restorePath("outdir", source);
|
|
|
|
cout << (string) hashPath("outdir") << endl;
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
/* 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;
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
nixStore = testDir;
|
2003-06-16 15:33:38 +02:00
|
|
|
nixLogDir = testDir;
|
|
|
|
nixDB = testDir + "/db";
|
|
|
|
|
|
|
|
initDB();
|
|
|
|
|
|
|
|
/* Expression evaluation. */
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
#if 0
|
2003-06-27 11:55:31 +02:00
|
|
|
eval(whNormalise,
|
|
|
|
ATmake("Str(\"Hello World\")"));
|
|
|
|
eval(whNormalise,
|
|
|
|
ATmake("Bool(True)"));
|
|
|
|
eval(whNormalise,
|
|
|
|
ATmake("Bool(False)"));
|
|
|
|
eval(whNormalise,
|
|
|
|
ATmake("App(Lam(\"x\", Var(\"x\")), Str(\"Hello World\"))"));
|
|
|
|
eval(whNormalise,
|
|
|
|
ATmake("App(App(Lam(\"x\", Lam(\"y\", Var(\"x\"))), Str(\"Hello World\")), Str(\"Hallo Wereld\"))"));
|
|
|
|
eval(whNormalise,
|
|
|
|
ATmake("App(Lam(\"sys\", Lam(\"x\", [Var(\"x\"), Var(\"sys\")])), Str(\"i686-suse-linux\"))"));
|
|
|
|
|
|
|
|
evalFail(whNormalise,
|
|
|
|
ATmake("Foo(123)"));
|
|
|
|
|
|
|
|
string builder1fn = absPath("./test-builder-1.sh");
|
2003-07-06 16:20:47 +02:00
|
|
|
Hash builder1h = hashPath(builder1fn);
|
2003-06-27 11:55:31 +02:00
|
|
|
|
|
|
|
string fn1 = nixValues + "/builder-1.sh";
|
2003-07-06 16:20:47 +02:00
|
|
|
Expr e1 = ATmake("Path(<str>, ExtFile(<str>, <str>), [])",
|
2003-06-27 11:55:31 +02:00
|
|
|
fn1.c_str(),
|
|
|
|
builder1h.c_str(),
|
|
|
|
builder1fn.c_str());
|
|
|
|
eval(fNormalise, e1);
|
|
|
|
|
|
|
|
string fn2 = nixValues + "/refer.txt";
|
2003-07-06 16:20:47 +02:00
|
|
|
Expr e2 = ATmake("Path(<str>, Regular(<str>), [<term>])",
|
2003-06-27 11:55:31 +02:00
|
|
|
fn2.c_str(),
|
|
|
|
("I refer to " + fn1).c_str(),
|
|
|
|
e1);
|
|
|
|
eval(fNormalise, e2);
|
|
|
|
|
|
|
|
realise(e2);
|
2003-06-27 15:55:12 +02:00
|
|
|
#endif
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
Hash builder1h;
|
|
|
|
string builder1fn;
|
|
|
|
addToStore("./test-builder-1.sh", builder1fn, builder1h);
|
|
|
|
|
|
|
|
FState fs1 = ATmake(
|
2003-07-06 16:20:47 +02:00
|
|
|
"Path(<str>, Hash(<str>), [])",
|
2003-06-27 15:55:12 +02:00
|
|
|
builder1fn.c_str(),
|
|
|
|
((string) builder1h).c_str());
|
2003-06-27 16:56:12 +02:00
|
|
|
realise(fs1);
|
|
|
|
realise(fs1);
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
FState fs2 = ATmake(
|
2003-07-06 16:20:47 +02:00
|
|
|
"Path(<str>, Hash(<str>), [])",
|
2003-06-27 15:55:12 +02:00
|
|
|
(builder1fn + "_bla").c_str(),
|
|
|
|
((string) builder1h).c_str());
|
2003-06-27 16:56:12 +02:00
|
|
|
realise(fs2);
|
|
|
|
realise(fs2);
|
|
|
|
|
|
|
|
string out1fn = nixStore + "/hello.txt";
|
|
|
|
FState fs3 = ATmake(
|
|
|
|
"Derive(<str>, <str>, [<term>], <str>, [(\"out\", <str>)])",
|
|
|
|
thisSystem.c_str(),
|
|
|
|
builder1fn.c_str(),
|
|
|
|
fs1,
|
|
|
|
out1fn.c_str(),
|
|
|
|
out1fn.c_str());
|
|
|
|
realise(fs3);
|
2003-06-27 15:55:12 +02:00
|
|
|
|
|
|
|
#if 0
|
2003-06-17 17:45:43 +02:00
|
|
|
Expr e1 = ATmake("Exec(Str(<str>), Hash(<str>), [])",
|
2003-06-16 23:01:18 +02:00
|
|
|
thisSystem.c_str(), ((string) builder1).c_str());
|
|
|
|
|
2003-06-27 11:55:31 +02:00
|
|
|
eval(e1);
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
Hash builder2 = addValue("./test-builder-2.sh");
|
|
|
|
|
2003-06-16 23:01:18 +02:00
|
|
|
Expr e2 = ATmake(
|
2003-06-17 17:45:43 +02:00
|
|
|
"Exec(Str(<str>), Hash(<str>), [Tup(Str(\"src\"), <term>)])",
|
2003-06-16 23:01:18 +02:00
|
|
|
thisSystem.c_str(), ((string) builder2).c_str(), e1);
|
|
|
|
|
2003-06-27 11:55:31 +02:00
|
|
|
eval(e2);
|
2003-06-17 17:45:43 +02:00
|
|
|
|
2003-06-17 17:47:25 +02:00
|
|
|
Hash h3 = addValue("./test-expr-1.nix");
|
2003-06-17 17:45:43 +02:00
|
|
|
Expr e3 = ATmake("Deref(Hash(<str>))", ((string) h3).c_str());
|
|
|
|
|
2003-06-27 11:55:31 +02:00
|
|
|
eval(e3);
|
2003-06-23 16:40:49 +02:00
|
|
|
|
|
|
|
deleteValue(h3);
|
2003-06-27 11:55:31 +02:00
|
|
|
#endif
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-07 11:25:26 +02:00
|
|
|
void run(Strings args)
|
2003-06-16 15:33:38 +02:00
|
|
|
{
|
2003-07-07 11:25:26 +02:00
|
|
|
runTests();
|
2003-06-15 15:41:32 +02:00
|
|
|
}
|
2003-07-07 11:25:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
string programId = "test";
|