chiark / gitweb /
jstest: wire up to check target
[otter.git] / Makefile
1 # Copyright 2020-2021 Ian Jackson and contributors to Otter
2 # SPDX-License-Identifier: AGPL-3.0-or-later
3 # There is NO WARRANTY.
4
5 # make -j8
6 # make -j8 release
7 # make -j8 shapelib
8
9 SHELL=/bin/bash
10 src=.
11
12 default: all check
13 all: debug
14 full-check: all check cargo-syntaxcheck-release shapelib doc-sphinx
15 full-check: for-deploy release
16 everything: debug doc release check bundled-sources
17
18 shapelib: templates/shapelib.html docs/html/index.html
19         @echo 'Shape library preview and docs can now be found here:'
20         @for f in $^; do echo '  file://$(PWD)/'$$f; done
21
22 MAKEFILE_DEP ?= Makefile
23 MAKEFILE_FIND_X ?=
24 # ^ set this to "x" to debug the $rsrcs rune
25
26 #---------- funky macros etc. ----------
27
28 cr = $(addprefix --,$(filter-out debug,$1))
29 rsrcs = $(shell $(foreach x,$(MAKEFILE_FIND_X),set -$x;)\
30     find -H $1 \( -name Cargo.toml -o -name Cargo.lock -o -name Cargo.lock.example -o -name \*.rs \) \! -path '*/build/*' )
31 stamp=@mkdir -p stamp; touch $@
32
33 BUNDLED_SOURCES_LIT = README.md LICENCE
34 BUNDLED_SOURCES_FILES = index.html $(BUNDLED_SOURCES_LIT)
35 BUNDLED_SOURCES_LINKS += $(BUNDLED_SOURCES_LIT) otter/
36 BUNDLED_SOURCES += $(BUNDLED_SOURCES_FILES)
37
38 #---------- programs and config variables ----------
39
40 CARGO ?= cargo
41 TARGET_DIR ?= target
42
43 USVG_OPTIONS = "--sans-serif-family=DejaVu Sans"
44
45 WASM_BINDGEN = $(TARGET_DIR)/debug/wasm-bindgen
46 WASM_BINDGEN_OPTIONS =                                          \
47         --remove-name-section --remove-producers-section        \
48         --typescript
49
50 BUNDLE_SOURCES ?= bundle-rust-sources
51
52 SPHINXBUILD   = sphinx-build
53
54 ifndef INKSCAPE_EXTENSIONS
55 INKSCAPE ?= inkscape
56 INKSCAPE_SDD_QUIETEN ?= 2>/dev/null
57 # inkscape 0.92.4: --extension-directory works, no --system-data-directory
58 # inkscape 1.0.2: --system-data-directory, no --extension-directory
59 INKSCAPE_EXTENSIONS := $(shell set -e; { sdd=$$( $(INKSCAPE) --system-data-directory $(INKSCAPE_SDD_QUIETEN) ) && echo "$$sdd/extensions"; } || $(INKSCAPE) --extension-directory )
60 endif
61 RECOLOUR_SVG ?= ./run-inkscape-extension $(INKSCAPE_EXTENSIONS)/color_replace.py
62
63 DEPLOY_ARCH=x86_64-unknown-linux-musl
64 DEPLOY_RELEASE=debug
65 DEPLOY_TARGET_DIR=$(TARGET_DIR)/$(addsuffix /,$(DEPLOY_ARCH))$(DEPLOY_RELEASE)
66 DEPLOYED_BRANCH=deployed
67 PUBLISHED_BRANCH=published
68
69 #---------- nailing-cargo ----------
70
71 ifneq (,$(wildcard ../Cargo.nail))
72
73 NAILING_CARGO = nailing-cargo
74 CARGO = $(NAILING_CARGO)
75 BUILD_SUBDIR ?= ../Build
76 TARGET_DIR = $(BUILD_SUBDIR)/$(notdir $(PWD))/target
77
78 NAILING_CARGO_JUST_RUN ?= $(NAILING_CARGO) --just-run -q ---
79 BUNDLE_SOURCES_CMD ?= $(NAILING_CARGO) --- $(BUNDLE_SOURCES)
80 USVG_CMD ?= $(NAILING_CARGO_JUST_RUN) $(USVG)
81 WASM_BINDGEN_CLI_CARGO_OPTS ?= --subcommand-props=!manifest-path
82
83 clean-nailing:
84         $(NAILING_CARGO_JUST_RUN) \
85  sh -c 'cd "$1"; find -mindepth 1 -maxdepth 1 -print0 | xargs -0r rm -rf --' \
86                 $(abspath $(BUILD_SUBDIR)/$(notdir $(PWD)))
87
88 else
89 clean-nailing:
90 endif # Cargo.nail
91
92 BUILD_SUBDIR ?= ../Build
93 BUNDLE_SOURCES_CMD ?= $(BUNDLE_SOURCES)
94 USVG_CMD ?= $(USVG)
95
96 WASM_PACKED=$(TARGET_DIR)/packed-wasm
97
98 #---------- local programs ----------
99
100 define lp
101 stamp/cargo.$2: $(call rsrcs, ! -name \*.rs)
102         $$(CARGO) build $(call cr,$3) -p $2
103         $$(stamp)
104 $1 := $(abspath $(TARGET_DIR)/$3/$4)
105 endef
106
107 $(eval $(call lp,BUNDLE_SOURCES,bundle-sources,debug,bundle-rust-sources))
108 $(eval $(call lp,USVG,usvg,release,usvg))
109
110 #---------- variables defining bits of source etc. ----------
111
112 PROGRAMS=daemon-otter otter
113
114 WASM_ASSETS := $(addprefix otter_wasm,.js _bg.wasm)
115 WASM_OUTPUTS := $(addprefix otter_wasm,.d.ts)
116
117 TS_SRCS= script
118 TS_SRC_FILES= \
119         $(addprefix templates/,$(addsuffix .ts,$(TS_SRCS))) \
120         webassembly-types/webassembly.d.ts \
121         $(WASM_PACKED)/otter_wasm.d.ts
122
123 LITFILES= LICENCE AGPLv3
124 TXTFILES= CC-BY-SA-3.0 CC-BY-SA-4.0
125
126 FILEASSETS = $(addprefix templates/, libre shapelib.html script.js \
127                         $(LITFILES) $(TXTFILES)) \
128                 $(wildcard templates/*.tera)
129
130 WASM := wasm32-unknown-unknown
131 # ^ todo: Is this still right after
132 #     Use correct ABI for wasm32 by default
133 #     https://github.com/rust-lang/rust/pull/79998
134 # ?  But maybe it doesn't matter since we're very conservative and
135 # only pass JsValue and a few strings across the WASM ABI.
136
137 #---------- toplevel aggregate targets ----------
138
139 check: stamp/cargo.debug-check at wdt jstest
140         @echo 'Tests passed.'
141
142 full-check: stamp/cargo.release-check
143 full-check: stamp/cargo.release-miri stamp/cargo.debug-miri
144
145 full-check:
146         @echo 'Full tests passed.'
147
148 doc: cargo-doc doc-sphinx examples
149
150 debug release:: %: stamp/cargo.% assets libraries extra-%
151
152 cargo: cargo-debug cargo-wasm-release
153
154 cargo-debug cargo-release cargo-check cargo-doc \
155 cargo-wasm-debug cargo-wasm-release:: \
156 cargo-%: stamp/cargo.%
157
158 EXAMPLE_BUNDLES = test-bundle big-bundle
159 EXAMPLE_BUNDLE_FILES = $(foreach f, $(EXAMPLE_BUNDLES), examples/$f.zip)
160
161 examples: $(EXAMPLE_BUNDLE_FILES)
162 .PHONY: examples
163
164 cargo-wasm: cargo-wasm-release
165
166 wasm: stamp/wasm-bindgen
167
168 assets: js stamp/wasm-bindgen $(FILEASSETS)
169
170 js: templates/script.js
171
172 extra-debug:
173 extra-release: bundled-sources
174
175 cargo-syntaxcheck: cargo-syntaxcheck-host cargo-syntaxcheck-wasm
176 cargo-syntaxcheck-host:
177         $(CARGO) check --workspace
178 cargo-syntaxcheck-wasm:
179         $(CARGO) check --target $(WASM) -p otter-wasm --release
180 cargo-syntaxcheck-release:
181         $(CARGO) check --workspace --release
182
183 #---------- cargo ----------
184
185 DR=debug release
186 CARGOES=$(foreach t, wasm-,$(addprefix $t,check $(DR)))
187
188 $(addprefix stamp/cargo.,$(DR)):: \
189 stamp/cargo.%: $(call rsrcs,. ! -path './wasm/*')
190         $(CARGO) build --workspace $(call cr,$*) -p otter -p otter-daemon -p otter-cli
191         $(NAILING_CARGO_JUST_RUN) \
192         ln -sf otter $(abspath $(TARGET_DIR))/$*/otter-ssh-proxy
193         $(stamp)
194
195 $(TARGET_DIR)/debug/%: $(call rsrcs, ! -path './wasm/*')
196         $(CARGO) build --workspace -p otter-cli
197
198 stamp/cargo.wasm-bindgen: $(call rsrcs, ! -name \*.rs)
199         $(CARGO) $(WASM_BINDGEN_CLI_CARGO_OPTS) build --target-dir=target \
200                 --manifest-path=$(abspath wasm/Cargo.toml) -p wasm-bindgen-cli
201         $(stamp)
202
203 stamp/cargo.%-check: $(call rsrcs,.)
204         $(CARGO) test --workspace $(call cr,$*)
205         $(stamp)
206
207 stamp/cargo.%-miri: $(call rsrcs,.)
208         $(CARGO) miri test --workspace $(call cr,$*)
209         $(stamp)
210
211 stamp/cargo-at.debug: $(call rsrcs,.)
212         $(CARGO) build --workspace $(call cr,$*) -p otter-api-tests
213         $(stamp)
214
215 stamp/cargo-wdt.debug: $(call rsrcs,.)
216         $(CARGO) build --workspace $(call cr,$*) -p otter-webdriver-tests
217         $(stamp)
218
219 stamp/cargo.doc: $(call rsrcs,.)
220         set -o pipefail -e; \
221         $(CARGO) doc $(CARGO_DOC_OPTS) --workspace 2>&1 |egrep -vf .cargo-doc-suppress-errors
222         $(stamp)
223
224 $(addprefix stamp/cargo.wasm-,$(DR)):: \
225 stamp/cargo.wasm-%: $(call rsrcs, base wasm Cargo.*)
226         $(CARGO) build --target $(WASM) -p otter-wasm $(call cr,$*)
227         $(stamp)
228
229 stamp/cargo.deploy-build: $(call rsrcs,.)
230         $(CARGO) build --target $(DEPLOY_ARCH) $(call cr,$(DEPLOY_RELEASE)) -p otter -p otter-cli -p otter-daemon
231         $(NAILING_CARGO_JUST_RUN) \
232         ln -sf otter $(abspath $(TARGET_DIR)/$(DEPLOY_ARCH))/$(DEPLOY_RELEASE)/otter-ssh-proxy
233         $(stamp)
234
235 #---------- sphnix ----------
236
237 doc-sphinx:     docs/html/index.html \
238         $(foreach f, $(EXAMPLE_BUNDLES), docs/html/examples/$f.zip) \
239         $(addprefix docs/html/examples/, $(notdir $(wildcard specs/*.toml)))
240         @echo 'Documentation can now be found here:'
241         @echo '  file://$(PWD)/$<'
242
243 docs/html/index.html: docs/conf.py $(wildcard docs/*.md docs/*.rst docs/*.png)
244         $(SPHINXBUILD) -M html docs docs $(SPHINXOPTS)
245
246 docs/html/examples/%.zip: examples/%.zip
247         mkdir -p docs/html/examples
248         rm -f $@ && ln $< $@
249
250 docs/html/examples/%.toml: specs/%.toml
251         mkdir -p docs/html/examples
252         rm -f $@ && ln $< $@
253
254 #---------- jstest ----------
255
256 .PHONY: jstest
257 jstest: stamp/jstest
258
259 stamp/jstest: jstest/run jstest/wasmtest.nodejs stamp/wasm-bindgen-jstest
260         $(NAILING_CARGO_JUST_RUN) $(abspath $(filter-out stamp/%,$^))
261         $(stamp)
262
263 #---------- wasm ----------
264
265 $(addprefix $(WASM_PACKED)/,$(WASM_ASSETS) $(WASM_OUTPUTS)): stamp/wasm-bindgen
266 stamp/wasm-bindgen: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
267         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
268                 $(WASM_BINDGEN_OPTIONS) --no-modules \
269                 --out-dir target/packed-wasm \
270                 target/$(WASM)/release/otter_wasm.wasm
271         $(stamp)
272
273 stamp/wasm-bindgen-jstest: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
274         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
275                 $(WASM_BINDGEN_OPTIONS) --nodejs \
276                 --out-dir target/jstest \
277                 target/$(WASM)/release/otter_wasm.wasm
278         $(stamp)
279
280 #---------- bundle-sources ----------
281
282 BUNDLED_SOURCES_DIRS += otter
283
284 bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS))
285
286 TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources
287
288 $(TARGET_BUNDLED):
289         $(NAILING_CARGO_JUST_RUN) mkdir -p $(abspath $@)
290
291 $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \
292 bundled-sources/%: stamp/cargo.bundle-sources $(TARGET_BUNDLED)
293         set -e; d=$(abspath $(TARGET_BUNDLED)); \
294         $(if $(filter-out otter,$*), cd ../$*;) \
295         $(BUNDLE_SOURCES_CMD) --output $$d/$*
296
297 bundled-sources:: $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_FILES))
298
299 $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_LIT)): \
300 $(TARGET_BUNDLED)/%: % $(TARGET_BUNDLED)
301         $(NAILING_CARGO_JUST_RUN) cp $(abspath $(src))/$< $(abspath $@)
302
303 $(TARGET_BUNDLED)/index.html: bundled-sources-make-index \
304                 $(MAKEFILE_DEP) $(TARGET_BUNDLED)
305         $(NAILING_CARGO_JUST_RUN) sh -ec '                      \
306                 cd $(abspath $(src)); mkdir -p $(dir $@);       \
307                 ./$< >$@.tmp $(BUNDLED_SOURCES_LINKS);          \
308                 mv -f $@.tmp $@;                                \
309         '
310
311 bundled-sources::
312         @echo Bundled sources.
313
314 #---------- svg processing ----------
315
316 LIBRARIES ?= $(basename $(wildcard library/*.toml))
317 USVG_DEP = stamp/cargo.usvg
318
319 include $(addsuffix /files.make, $(LIBRARIES))
320
321 USVG_PROCESSOR = usvg-processor
322 LIBRARY_PROCESS_SVG = ./$(USVG_PROCESSOR) $@ $(wordlist 1,2,$^) '$(USVG_CMD) $(USVG_OPTIONS)'
323 $(LIBRARY_FILES): $(USVG_PROCESSOR) $(USVG_DEP) $(MAKEFILE_DEP)
324
325 # actual command for each of $(LIBRARY_FILES) is in one of the files.make
326
327 library/%/files.make: media-scraper library/%.toml
328         ./$< --offline library/$*.toml
329
330 #---------- typescript ----------
331
332 templates/%.js: tsc-wrap tsconfig.json
333         ./tsc-wrap $@ tsconfig.json $(filter %.ts,$^)
334
335 templates/script.js: $(TS_SRC_FILES) stamp/wasm-bindgen
336
337 #---------- other templates ----------
338
339 $(addprefix templates/,$(LITFILES)): templates/%: %
340         cp $< $@.new && mv -f $@.new $@
341
342 $(addprefix templates/,$(TXTFILES)): templates/%: %.txt
343         cp $< $@.new && mv -f $@.new $@
344
345 libraries: $(LIBRARY_FILES)
346
347 templates/shapelib.html: $(TARGET_DIR)/debug/otterlib $(LIBRARY_FILES)
348         $(NAILING_CARGO_JUST_RUN) $(abspath $<) \
349         --libs '$(addprefix $(PWD)/, $(addsuffix .toml, $(LIBRARIES)))' \
350                 preview >$@.tmp && mv -f $@.tmp $@
351
352 #---------- examples ----------
353
354 EXAMPLE_BUNDLE_INPUT_DEPS := $(shell                                    \
355         cd examples/test-bundle/ && find \! \( -name '*~' -o -name '.*' \) \
356 )
357
358 examples/%.zip: $(MAKEFILE_DEP)
359         set -e; rm -f $@.tmp; cd examples/$*/; \
360         zip $(ZIPFLAGS) -DX ../$(notdir $@).tmp $(ZIP_INPUTS)
361         mv -f $@.tmp $@
362
363 examples/test-bundle.zip: ZIP_INPUTS=$(EXAMPLE_BUNDLE_INPUT_DEPS)
364 examples/test-bundle.zip: \
365  $(addprefix examples/test-bundle/, $(EXAMPLE_BUNDLE_INPUT_DEPS))
366
367 examples/big-bundle.zip: examples/big-bundle/otter.toml
368 examples/big-bundle.zip: ZIPFLAGS+= -0 -r -q
369 examples/big-bundle.zip: ZIP_INPUTS=.
370 examples/big-bundle/otter.toml: $(LIBRARY_FILES) $(MAKEFILE_DEP)
371         rm -rf examples/big-bundle
372         mkdir examples/big-bundle examples/big-bundle/library
373         @set -e; echo 'MKDIR for $@'; \
374         for l in $(LIBRARIES); do \
375                 mkdir examples/big-bundle/$$l; \
376                 perl -p \
377  -e 'BEGIN { print "# -- AUTOGENERATED FROM COPY IN OTTER SOURCE --\n" }' \
378  -e 'if (m/^\[scraper]/..0) { unless (m/^\[(?!scraper)/..0) { s/^/\#/ } }' \
379  -e 's/(?<=\s)\w\S*(?=\s)/-/ if m/^files = """/..m/^"""/;' \
380                         <$$l.toml >examples/big-bundle/$$l.toml; done
381         @set -e; echo 'LN for $@'; \
382         for e in $(LIBRARY_FILE_INPUTS); do \
383                 ln $${e#*:} examples/big-bundle/$${e%%.usvg:*}.svg; done;
384         @set -e; echo 'MV for $@'; \
385         cd examples/big-bundle/library/; for x in '' .toml; do \
386                 mv wikimedia$$x duped-example$$x; done
387         @set -e; mkdir examples/big-bundle/specs/; \
388         perl -pe <specs/demo.game.toml \
389                 >examples/big-bundle/specs/Modded-spec.game.toml \
390                 's/chess-b-/chess-purple-/; s/chess-w-/chess-yellow-/'
391         @set -e; echo 'ECHO for $@'; \
392         echo 'title = "Autogenerated test bundle - do not distribute"' \
393                 >$@.tmp
394         mv -f $@.tmp $@
395
396 #---------- webdriver tests (wdt) ----------
397
398 AT_TESTS := $(basename $(notdir $(wildcard apitest/at-*.rs)))
399 WDT_TESTS := $(basename $(notdir $(wildcard wdriver/wdt-*.rs)))
400
401 WDT_LANDSCAPE_TESTS = wdt-altergame
402
403 at:     $(foreach f, $(AT_TESTS), stamp/$f.check)
404
405 wdt:    $(foreach f, $(WDT_TESTS), stamp/$f.check) \
406         $(foreach f, $(WDT_LANDSCAPE_TESTS), stamp/$f.lcheck) \
407
408 RUNTEST_DEPS =  apitest/run1 stamp/cargo.debug $(FILEASSETS) \
409                 $(wildcard specs/*.toml) examples/test-bundle.zip \
410                 $(wildcard libraries/*.toml) $(LIBRARY_FILES)
411
412 AT_DEPS =       $(filter-out templates/script.js, $(RUNTEST_DEPS)) \
413                 examples/big-bundle.zip \
414                 stamp/cargo-at.debug
415
416 WDT_DEPS =      $(RUNTEST_DEPS) \
417                 stamp/cargo-wdt.debug
418
419 AT_WDT_RUN = $(NAILING_CARGO_JUST_RUN) $(abspath $<)
420
421 AT_RUN = $(AT_WDT_RUN) apitest --test=$(basename $(notdir $@))
422 WDT_RUN = $(AT_WDT_RUN) wdriver --test=$(basename $(notdir $@))
423
424 for-at:                 $(AT_DEPS)
425 stamp/at-%.check:       $(AT_DEPS)
426         $(AT_RUN)
427         $(stamp)
428
429 for-wdt:                $(WDT_DEPS)
430 stamp/wdt-%.check:      $(WDT_DEPS)
431         $(WDT_RUN)
432         $(stamp)
433
434 stamp/wdt-%.lcheck:     $(WDT_DEPS)
435         $(WDT_RUN) --as-if=lwdt-$* --layout=Landscape
436         $(stamp)
437
438 #---------- docs publication ----------
439
440 PUBLISH_USER=ianmdlvl@login.chiark.greenend.org.uk
441 PUBLISH_DOC_SPHINX=$(PUBLISH_USER):public-html/otter/docs
442
443 publish: doc-sphinx
444         rsync -r --delete-delay docs/html/. $(PUBLISH_DOC_SPHINX)/.
445         git branch -f $(PUBLISHED_BRANCH)
446
447 #---------- deployment ----------
448
449 DEPLOY_USER=ian@login.chiark.greenend.org.uk
450 DEPLOY_BASE=$(DEPLOY_USER):/volatile/Otter
451 DEPLOY_FINISH=/home/Otter/etc/deploy-finish
452
453 for-deploy: stamp/cargo.deploy-build
454 deploy: for-deploy bundled-sources assets libraries
455         rsync -zvl --progress $(addprefix $(DEPLOY_TARGET_DIR)/,$(PROGRAMS) otter-ssh-proxy) $(DEPLOY_BASE)/bin/
456         rsync -zv --progress $(TARGET_DIR)/release/usvg $(DEPLOY_BASE)/libexec/
457         rsync -rv --progress $(TARGET_DIR)/bundled-sources/. $(DEPLOY_BASE)/bundled-sources
458         rsync -r README.md $(DEPLOY_BASE)/.
459         rsync -r --delete --exclude=\*~ library specs $(DEPLOY_BASE)/.
460         rsync -r $(FILEASSETS) $(addprefix $(WASM_PACKED)/, $(WASM_ASSETS)) \
461                 $(DEPLOY_BASE)/assets/
462         rsync -r nwtemplates/*.tera $(DEPLOY_BASE)/nwtemplates/
463         ssh -o BatchMode=true $(DEPLOY_USER) $(DEPLOY_FINISH)
464         git branch -f $(DEPLOYED_BRANCH)
465         -git push origin main
466         -git push chiark main
467
468 #$(DEPLOY_BASE)/bundled-sources
469
470 #---------- clean ----------
471
472 clean-for-retest:
473         rm -f templates/script.js library/*/*.usvg stamp/*
474         rm -rf $(LIBRARY_CLEAN)
475         rm -rf examples/big-bundle examples/big-bundle.zip
476         rm -f examples/test-bundle.zip
477         find * \( -name '*~' -o -name '*.tmp' \) -print0 | xargs -0r rm --
478
479 clean: clean-nailing clean-for-retest
480         rm -rf target
481         $(NAILING_CARGO_JUST_RUN) rm -rf target