1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 01:33:16 +00:00
TiddlyWiki5/test.sh

28 lines
1.0 KiB
Bash
Raw Normal View History

2011-11-22 14:29:29 +00:00
#!/bin/sh
# create a temporary directory if it doesn't already exist
mkdir -p tmp
2011-11-22 14:29:29 +00:00
# cook the recipe with the old cook.rb (assuming you have set it up as described in github.com/TiddlyWiki/cooker)
cook $PWD/test/data/tiddlywiki.com/index.html.recipe -d $PWD -o tmp/oldcooked.html || exit 1
2011-11-22 14:29:29 +00:00
# cook it with cook.js
node cook.js $PWD/test/data/tiddlywiki.com/index.html.recipe > tmp/newcooked.html || exit 1
2011-11-22 14:29:29 +00:00
# compare the two
2011-11-26 12:51:56 +00:00
#opendiff tmp/oldcooked.html tmp/newcooked.html
2011-11-26 12:51:56 +00:00
# split the newly cooked tiddlywiki into tiddlers, first with the new ginsu
mkdir -p tmp/newtiddlers
rm -f tmp/newtiddlers/*
node ginsu.js tmp/newcooked.html tmp/newtiddlers || exit 1
2011-11-26 12:51:56 +00:00
# and now ginsu them with the old ginsu.rb
2011-11-26 12:51:56 +00:00
rm -r tmp/oldtiddlers
ginsu tmp/oldcooked || exit 1
2011-11-26 12:51:56 +00:00
mv oldcooked.html.0 tmp/oldtiddlers/
# now cook those tiddlers back again with the respective versions of cook
#cook $PWD/test/data/recipes/oldtiddlers.recipe -d $PWD -o tmp/oldrecooked.html || exit 1
node cook.js $PWD/test/data/recipes/newtiddlers.recipe > tmp/newrecooked.html || exit 1