mw-engine/test/mw_engine/heightmap_test.clj
Simon Brooke 0e140a4666 Correctly getting the build signature properties into the MANIFEST.MF
on build, now testing I'm clearing them down again before commit.
2014-07-27 11:58:29 +01:00

24 lines
1 KiB
Clojure

(ns mw-engine.heightmap-test
(:require [clojure.test :refer :all]
[mw-engine.heightmap :refer :all]
[clojure.math.combinatorics :as combo]))
(deftest apply-heightmap-test
(testing "Heightmap functionality"
(let [world (apply-heightmap "heightmaps/test9x9.png")
altitudes (map #(:altitude %) (flatten world))
gradients (map #(:gradient %) (flatten world))]
(is (= (count world) 9) "World should be 9x9")
(is (= (count (first world)) 9) "World should be 9x9")
(is (= (count (remove nil? altitudes)) 81)
"All cells should have altitude")
(is (= (count (remove nil? gradients)) 81)
"All cells should have gradient")
(is (> (apply max altitudes)
(apply min altitudes))
"There should be a range of altitudes")
(is (> (apply + gradients) 0)
"At least some gradients must be positive, none should be negative")
)))