nixite/testing/site.test.nix

315 lines
7.5 KiB
Nix
Raw Normal View History

2024-01-02 09:18:30 +00:00
{it,...}:let
html = import ../nixite/html.nix;
2023-12-31 00:24:48 +00:00
elems = import ../nixite/elems.nix;
site = import ../nixite/site.nix;
2024-01-01 08:10:32 +00:00
style = import ../nixite/style.nix;
in with site; [
(it "applies a style" {
expected = {
"index.html" = html.tag "html" { } [
(html.tag "head" { } [
(elems.title { } "foobar")
(elems.Stylesheet "/style.css")
])
(elems.main { } "something")
];
blog = {
"index.html" = html.tag "html" { } [
(html.tag "head" { } [
(elems.title { } "foobar")
(elems.Stylesheet "/style.css")
])
(elems.main { } "blogy blog")
];
2023-12-31 00:24:48 +00:00
};
"style.css" = ''
this is a stylesheet
'';
};
actual = applyStyle ''
this is a stylesheet
'' {
"index.html" = html.tag "html" { } [
(html.tag "head" { } [ (elems.title { } "foobar") ])
(elems.main { } "something")
];
blog = {
"index.html" = html.tag "html" { } [
(html.tag "head" { } [ (elems.title { } "foobar") ])
(elems.main { } "blogy blog")
2023-12-31 09:15:25 +00:00
];
};
};
asJSON = true;
})
2024-01-01 08:10:32 +00:00
(it "applies a favicon" {
expected = {
"index.html" = elems.html { } [
(elems.head { } [
(elems.title { } "foobar")
(elems.link {
rel = "shortcut icon";
href = ./src/favicon.png;
})
])
(elems.main { } "something")
];
blog = {
"index.html" = elems.html { } [
(elems.head { } [
(elems.title { } "foobar")
(elems.link {
rel = "shortcut icon";
href = ./src/favicon.png;
})
])
(elems.main { } "something")
];
};
};
actual = applyFavicon ./src/favicon.png {
"index.html" = elems.html { } [
(elems.head { } [ (elems.title { } "foobar") ])
(elems.main { } "something")
];
blog = {
"index.html" = elems.html { } [
(elems.head { } [ (elems.title { } "foobar") ])
(elems.main { } "something")
];
};
};
asJSON = true;
})
2024-01-01 09:43:52 +00:00
(it "gets all styles" {
expected = {
"p" = { };
"div" = { };
2024-01-01 09:43:52 +00:00
"p.class" = { color = "blue"; };
2024-01-01 12:42:18 +00:00
"div.class2" = { color = "green"; };
2024-01-01 08:10:32 +00:00
};
actual = getStyles (let
2024-01-01 12:42:18 +00:00
p = style.component elems.p "class" { style = { color = "blue"; }; };
g = style.component elems.div "class2" { style = { color = "green"; }; };
2024-01-01 08:10:32 +00:00
in {
"index.html" = p "";
2024-01-01 09:43:52 +00:00
blog = { "index.html" = g ""; };
2024-01-01 08:10:32 +00:00
});
removeDunders = true;
})
2024-01-01 09:43:52 +00:00
(it "gets top level paths" {
actual = getPaths {
something = "";
src = ./src/index.md;
};
expected = { "index.md" = ./src/index.md; };
})
2024-01-01 09:43:52 +00:00
(it "gets lower level paths" {
actual = getPaths {
something = "yes";
a-list = [
{ thingy = ./src/index.md; }
[ (html.tag "img" { src = ./src/favicon.png; } "") ]
];
};
expected = {
"index.md" = ./src/index.md;
"favicon.png" = ./src/favicon.png;
};
})
2024-01-01 09:43:52 +00:00
(it "switches paths" {
actual = switchPaths {
something = "";
a-thing = { src = ./src/index.md; };
a-list = [{ thingy = ./src/index.md; }];
};
expected = {
something = "";
a-thing = { src = "/static/index.md"; };
a-list = [{ thingy = "/static/index.md"; }];
};
})
2023-12-31 09:15:25 +00:00
(it "extracts paths" {
actual = extractPaths {
something = "";
a-thing = { src = ./src/index.md; };
a-list = [{ thingy = ./src/index.md; }];
};
expected = {
something = "";
a-thing = { src = "/static/index.md"; };
a-list = [{ thingy = "/static/index.md"; }];
static = { "index.md" = ./src/index.md; };
};
})
2024-01-01 09:43:52 +00:00
2024-01-01 11:12:37 +00:00
(it "switches links" (let
coolPage = {
type = "link";
2024-01-01 09:43:52 +00:00
name = "cool-page";
content = "";
};
in {
2024-01-01 11:12:37 +00:00
actual = switchLinks {
2024-01-01 09:43:52 +00:00
something = "";
a-thing = { src = coolPage; };
a-list = [{ thingy = coolPage; }];
};
expected = {
something = "";
a-thing = { src = "/static/cool-page"; };
a-list = [{ thingy = "/static/cool-page"; }];
};
}))
2024-01-01 11:12:37 +00:00
(it "gets links" (let
coolPage = {
type = "link";
2024-01-01 09:43:52 +00:00
name = "cool-page";
content = "cool content";
};
2024-01-01 11:12:37 +00:00
otherPage = {
type = "link";
2024-01-01 09:43:52 +00:00
name = "page2";
content = "stuff";
};
in {
2024-01-01 11:12:37 +00:00
actual = getLinks {
2024-01-01 09:43:52 +00:00
something = "yes";
a-list =
[ { thingy = coolPage; } [ (elems.img { src = otherPage; } "") ] ];
};
expected = {
"cool-page" = "cool content";
"page2" = "stuff";
};
}))
2024-01-01 11:12:37 +00:00
(it "extracts links" (let
coolPage = {
type = "link";
2024-01-01 09:43:52 +00:00
name = "cool-page";
content = "cool content";
};
2024-01-01 11:12:37 +00:00
otherPage = {
type = "link";
2024-01-01 09:43:52 +00:00
name = "page2";
content = "stuff";
};
in {
2024-01-01 11:12:37 +00:00
actual = extractLinks {
2024-01-01 09:43:52 +00:00
something = "";
a-thing = { src = coolPage; };
a-list = [{ thingy = otherPage; }];
};
expected = {
something = "";
a-thing = { src = "/static/cool-page"; };
a-list = [{ thingy = "/static/page2"; }];
static = {
"cool-page" = "cool content";
"page2" = "stuff";
};
};
}))
2024-01-01 09:57:58 +00:00
(it "copies all the files" ({
actual = copyTo "." {
page = "this is a page";
subdir = {
page = "this page is in a subdir";
link = ./src;
};
};
expected = ''
cp /nix/store/crirfz0n6f8dgl1si3x7pwyw7fqm0r8l-page ./page
mkdir -p ./subdir
cp -r /nix/store/q95cn7ccixzi9w22aic4bl0ykk40ka7v-src ./subdir/link
cp /nix/store/ic6fyy8wg8r4338a3m5kinmg11igxsyj-page ./subdir/page
'';
}))
(it "throws with a list for a page" ({
2024-01-01 17:31:04 +00:00
actual = copyTo "." { page = [ ]; };
throws = true;
}))
(it "throws with null for a page" ({
2024-01-01 17:31:04 +00:00
actual = copyTo "." { page = null; };
throws = true;
}))
(it "throws with a bool for a page" ({
2024-01-01 17:31:04 +00:00
actual = copyTo "." { page = true; };
throws = true;
}))
(it "throws with a number for a page" ({
2024-01-01 17:31:04 +00:00
actual = copyTo "." { page = 5; };
throws = true;
}))
2024-01-01 11:12:37 +00:00
(it "prepares the site" ({
actual = prepare { favicon = ./src/favicon.png; } {
"index.html" = elems.html { } [
(elems.head { } [ (elems.title { } "foobar") ])
(elems.main { } [
(elems.a {
href = {
type = "link";
name = "a-page";
content = "this is another page";
};
} "A Page")
])
];
blog = {
"index.html" = elems.html { } [
(elems.head { } [ (elems.title { } "foobar") ])
(elems.main { } "something")
];
};
};
expected = {
"index.html" = elems.html { } [
(elems.head { } [
(elems.title { } "foobar")
(elems.link {
rel = "shortcut icon";
href = "/static/favicon.png";
})
(elems.Stylesheet "/style.css")
])
(elems.main { } [ (elems.a { href = "/static/a-page"; } "A Page") ])
];
blog = {
"index.html" = elems.html { } [
(elems.head { } [
(elems.title { } "foobar")
(elems.link {
rel = "shortcut icon";
href = "/static/favicon.png";
})
(elems.Stylesheet "/style.css")
])
(elems.main { } "something")
];
};
static = {
"favicon.png" = ./src/favicon.png;
"a-page" = "this is another page";
};
"style.css" = "";
};
asJSON = true;
}))
]