aboutsummaryrefslogtreecommitdiffstats
path: root/test/plugin_erlydtl.mk
diff options
context:
space:
mode:
authorJared Flatow <[email protected]>2016-06-08 18:43:55 -0700
committerLoïc Hoguin <[email protected]>2016-10-20 13:41:50 +0200
commit38454657fc33d90333c4d5447fb25bffceb6e80e (patch)
treea63f69b2a313ad77cb741d5c0ac940920fa18739 /test/plugin_erlydtl.mk
parentda05859f4bef76b8b933c65ee764c48a97b4baf5 (diff)
downloaderlang.mk-38454657fc33d90333c4d5447fb25bffceb6e80e.tar.gz
erlang.mk-38454657fc33d90333c4d5447fb25bffceb6e80e.tar.bz2
erlang.mk-38454657fc33d90333c4d5447fb25bffceb6e80e.zip
Fix several problems with the erlydtl plugin:
DTL_SUFFIX: - make sure it is actually used - add a test for it (and one combined with other options) DTL_PATH: - handle correctly with or without trailing / - don't hard-code the `doc_root` opt - the erlydtl default is better
Diffstat (limited to 'test/plugin_erlydtl.mk')
-rw-r--r--test/plugin_erlydtl.mk52
1 files changed, 51 insertions, 1 deletions
diff --git a/test/plugin_erlydtl.mk b/test/plugin_erlydtl.mk
index ddb32d3..853ba55 100644
--- a/test/plugin_erlydtl.mk
+++ b/test/plugin_erlydtl.mk
@@ -1,6 +1,6 @@
# ErlyDTL plugin.
-ERLYDTL_CASES = compile full-path opts
+ERLYDTL_CASES = compile full-path opts path-full-path-suffix suffix
ERLYDTL_TARGETS = $(addprefix erlydtl-,$(ERLYDTL_CASES))
.PHONY: erlydtl $(ERLYDTL_TARGETS)
@@ -99,3 +99,53 @@ erlydtl-opts: build clean
{ok, Result} = $(APP)_foo_dtl:render([{foo, <<\"<&>\">>}]), \
<<\"<&>\", _/binary>> = iolist_to_binary(Result), \
halt()"
+
+erlydtl-path-full-path-suffix: build clean
+
+ $i "Bootstrap a new OTP library named $(APP)"
+ $t mkdir $(APP)/
+ $t cp ../erlang.mk $(APP)/
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
+
+ $i "Generate ErlyDTL templates"
+ $t mkdir -p $(APP)/dtl/two/
+ $t touch $(APP)/dtl/one.dtl
+ $t touch $(APP)/dtl/two/three.dtl
+
+ $i "Build the application"
+ $t $(MAKE) -C $(APP) DEPS=erlydtl DTL_PATH=dtl DTL_FULL_PATH=1 DTL_SUFFIX=_suffix $v
+
+ $i "Check that ErlyDTL templates are compiled"
+ $t test -f $(APP)/ebin/one_suffix.beam
+ $t test -f $(APP)/ebin/two_three_suffix.beam
+
+ $i "Check that ErlyDTL generated modules are included in .app file"
+ $t $(ERL) -pa $(APP)/ebin/ -eval " \
+ ok = application:load($(APP)), \
+ {ok, [one_suffix, two_three_suffix]} = application:get_key($(APP), modules), \
+ halt()"
+
+erlydtl-suffix: build clean
+
+ $i "Bootstrap a new OTP library named $(APP)"
+ $t mkdir $(APP)/
+ $t cp ../erlang.mk $(APP)/
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
+
+ $i "Generate ErlyDTL templates"
+ $t mkdir $(APP)/templates/
+ $t touch $(APP)/templates/one.dtl
+ $t touch $(APP)/templates/two.dtl
+
+ $i "Build the application"
+ $t $(MAKE) -C $(APP) DEPS=erlydtl DTL_SUFFIX= $v
+
+ $i "Check that ErlyDTL templates are compiled"
+ $t test -f $(APP)/ebin/one.beam
+ $t test -f $(APP)/ebin/two.beam
+
+ $i "Check that ErlyDTL generated modules are included in .app file"
+ $t $(ERL) -pa $(APP)/ebin/ -eval " \
+ ok = application:load($(APP)), \
+ {ok, [one, two]} = application:get_key($(APP), modules), \
+ halt()"