aboutsummaryrefslogtreecommitdiffstats
path: root/test/plugin_escript.mk
blob: 39495476a37b5655c72598ca2fc90e6db05b09cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# Escript plugin.

ESCRIPT_TARGETS = $(call list_targets,escript)

.PHONY: escript $(ESCRIPT_TARGETS)

escript: $(ESCRIPT_TARGETS)

escript-build: init

	$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 a module containing a function main/1"
	$t printf "%s\n" \
		"-module($(APP))." \
		"-export([main/1])." \
		'main(_) -> io:format("good~n").' > $(APP)/src/$(APP).erl

	$i "Build the escript"
	$t $(MAKE) -C $(APP) escript $v

	$i "Check that the escript exists"
	$t test -f $(APP)/$(APP)

	$i "Check that the escript runs"
	$t $(APP)/$(APP) | grep -q good

	$i "Distclean the application"
	$t $(MAKE) -C $(APP) distclean $v

	$i "Check that the escript was removed"
	$t test ! -e $(APP)/$(APP)

escript-build-deps: init

	$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 "Add Ranch to the list of dependencies"
	$t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = ranch\n"}' $(APP)/Makefile

	$i "Add lfe.mk to the list of build dependencies"
	$t perl -ni.bak -e 'print;if ($$.==1) {print "BUILD_DEPS = lfe.mk\ndep_lfe.mk = git https://github.com/ninenines/lfe.mk master\n"}' $(APP)/Makefile

	$i "Generate a module containing a function main/1"
	$t printf "%s\n" \
		"-module($(APP))." \
		"-export([main/1])." \
		'main(_) -> io:format("good~n").' > $(APP)/src/$(APP).erl

	$i "Build the escript"
	$t $(MAKE) -C $(APP) escript $v

	$i "Check that the build dependency was fetched"
	$t test -d $(APP)/deps/lfe.mk

	$i "Check that the escript runs"
	$t $(APP)/$(APP) | grep -q good

	$i "Check that the escript does not contain the build dependency"
	$t ! unzip -l $(APP)/$(APP) 2> /dev/null | grep -q lfe

escript-deps: init

	$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 "Add Ranch to the list of dependencies"
	$t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = ranch\n"}' $(APP)/Makefile

	$i "Generate a module containing a function main/1"
	$t printf "%s\n" \
		"-module($(APP))." \
		"-export([main/1])." \
		'main(_) -> io:format("good~n").' > $(APP)/src/$(APP).erl

	$i "Build the escript"
	$t $(MAKE) -C $(APP) escript $v

	$i "Check that the escript runs"
	$t $(APP)/$(APP) | grep -q good

	$i "Check that the escript contains the dependency"
	$t unzip -l $(APP)/$(APP) 2> /dev/null | grep -q ranch

escript-deps-with-deps: init

	$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 "Add Cowboy 1.0.0 to the list of dependencies"
	$t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = cowboy\ndep_cowboy_commit = 1.0.0\n"}' $(APP)/Makefile

	$i "Generate a module containing a function main/1"
	$t printf "%s\n" \
		"-module($(APP))." \
		"-export([main/1])." \
		'main(_) -> io:format("good~n").' > $(APP)/src/$(APP).erl

	$i "Build the application"
	$t $(MAKE) -C $(APP) $v

	$i "Build the escript"
	$t $(MAKE) -C $(APP) escript $v

	$i "Check that the escript runs"
	$t $(APP)/$(APP) | grep -q good

	$i "Check that the escript contains the dependencies"
	$t unzip -l $(APP)/$(APP) 2> /dev/null | grep -q cowboy
	$t unzip -l $(APP)/$(APP) 2> /dev/null | grep -q cowlib
	$t unzip -l $(APP)/$(APP) 2> /dev/null | grep -q ranch

escript-distclean: init

	$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 "Use a non-standard name for the escript"
	$t perl -ni.bak -e 'print;if ($$.==1) {print "ESCRIPT_FILE = real-escript\n"}' $(APP)/Makefile

	$i "Generate a module containing a function main/1"
	$t printf "%s\n" \
		"-module($(APP))." \
		"-export([main/1])." \
		'main(_) -> io:format("good~n").' > $(APP)/src/$(APP).erl

	$i "Build the escript"
	$t $(MAKE) -C $(APP) escript $v

	$i "Check that the escript runs"
	$t test ! -f $(APP)/$(APP)
	$t $(APP)/real-escript | grep -q good

	$i "Check that make distclean removes the generated escript"
	$t $(MAKE) -C $(APP) distclean $v
	$t test ! -f $(APP)/$(APP)
	$t test ! -f $(APP)/real-escript

escript-extra: init

	$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 "Instruct Erlang.mk to add extra files to the escript"
	$t printf "%s\n" \
		"escript-zip::" \
		'	$$(verbose) $$(ESCRIPT_ZIP) $$(ESCRIPT_ZIP_FILE) Makefile erlang.mk' >> $(APP)/Makefile

	$i "Generate a module containing a function main/1"
	$t printf "%s\n" \
		"-module($(APP))." \
		"-export([main/1])." \
		'main(_) -> io:format("good~n").' > $(APP)/src/$(APP).erl

	$i "Build the escript"
	$t $(MAKE) -C $(APP) escript $v

	$i "Check that the escript runs"
	$t $(APP)/$(APP) | grep -q good

	$i "Check that the escript contains the extra files"
	$t unzip -l $(APP)/$(APP) 2> /dev/null | grep -q Makefile
	$t unzip -l $(APP)/$(APP) 2> /dev/null | grep -q erlang.mk