mirror of
https://github.com/richardharrington/robotwar.git
synced 2024-10-31 20:09:53 +00:00
Merge pull request #15 from richardharrington/refactor-robot-tests
factored out helper method in robots.clj tests
This commit is contained in:
commit
fe158800f5
@ -8,95 +8,78 @@
|
||||
|
||||
(def world (world/init-world [""]))
|
||||
|
||||
; The next four tests are pretty much cut and pasted from each other. So sue me.
|
||||
; To change them significantly, delete three of them and build up from the first one
|
||||
; again. TODO: write a wrapper for these.
|
||||
(def x
|
||||
{:pos-key :pos-x
|
||||
:v-key :v-x
|
||||
:desired-v-key :desired-v-x
|
||||
:register-name-key "SPEEDX"})
|
||||
|
||||
(deftest positive-acceleration-x-test
|
||||
(testing "application of SPEEDX register in
|
||||
positive direction has expected behavior"
|
||||
(let [zeroed-world (assoc-in world [:robots 0 :pos-x] 0.0)
|
||||
(def y
|
||||
{:pos-key :pos-y
|
||||
:v-key :v-y
|
||||
:desired-v-key :desired-v-y
|
||||
:register-name-key "SPEEDY"})
|
||||
|
||||
(defn acceleration-test [pos speed {:keys [pos-key v-key desired-v-key register-name-key]} expected-sequence]
|
||||
(let [zeroed-world (assoc-in world [:robots 0 pos-key] pos)
|
||||
zeroed-registers (get-in world [:robots 0 :brain :registers])
|
||||
speedy-world (register/write-register (zeroed-registers "SPEEDX") zeroed-world 140)
|
||||
speedy-world (register/write-register (zeroed-registers register-name-key) zeroed-world speed)
|
||||
speedy-worlds (iterate (fn [{[robot] :robots :as world}]
|
||||
(binding [*GAME-SECONDS-PER-TICK* 1.0]
|
||||
(tick-robot robot world)))
|
||||
speedy-world)]
|
||||
(is (= (take 6 (map (fn [world]
|
||||
{:pos-x (get-in world [:robots 0 :pos-x])
|
||||
:v-x (get-in world [:robots 0 :v-x])
|
||||
:desired-v-x (get-in world [:robots 0 :desired-v-x])})
|
||||
speedy-worlds))
|
||||
(is (= (take 6 (for [{[robot] :robots} speedy-worlds]
|
||||
(select-keys robot [pos-key v-key desired-v-key])))
|
||||
expected-sequence))))
|
||||
|
||||
(deftest positive-acceleration-x-test
|
||||
(testing "application of SPEEDX register in positive direction has expected behavior"
|
||||
(acceleration-test
|
||||
0.0
|
||||
140
|
||||
x
|
||||
[{:pos-x 0.0, :v-x 0.0, :desired-v-x 14.0}
|
||||
{:pos-x 2.0, :v-x 4.0, :desired-v-x 14.0}
|
||||
{:pos-x 8.0, :v-x 8.0, :desired-v-x 14.0}
|
||||
{:pos-x 18.0, :v-x 12.0, :desired-v-x 14.0}
|
||||
{:pos-x 31.5, :v-x 14.0, :desired-v-x 14.0}
|
||||
{:pos-x 45.5, :v-x 14.0, :desired-v-x 14.0}])))))
|
||||
{:pos-x 45.5, :v-x 14.0, :desired-v-x 14.0}])))
|
||||
|
||||
(deftest negative-acceleration-x-test
|
||||
(testing "application of SPEEDX register in
|
||||
negative direction has expected behavior"
|
||||
(let [zeroed-world (assoc-in world [:robots 0 :pos-x] 100.0)
|
||||
zeroed-registers (get-in world [:robots 0 :brain :registers])
|
||||
speedy-world (register/write-register (zeroed-registers "SPEEDX") zeroed-world -140)
|
||||
speedy-worlds (iterate (fn [{[robot] :robots :as world}]
|
||||
(binding [*GAME-SECONDS-PER-TICK* 1.0]
|
||||
(tick-robot robot world)))
|
||||
speedy-world)]
|
||||
(is (= (take 6 (map (fn [world]
|
||||
{:pos-x (get-in world [:robots 0 :pos-x])
|
||||
:v-x (get-in world [:robots 0 :v-x])
|
||||
:desired-v-x (get-in world [:robots 0 :desired-v-x])})
|
||||
speedy-worlds))
|
||||
(testing "application of SPEEDX register in negative direction has expected behavior"
|
||||
(acceleration-test
|
||||
100.0
|
||||
-140
|
||||
x
|
||||
[{:pos-x 100.0, :v-x 0.0, :desired-v-x -14.0}
|
||||
{:pos-x 98.0, :v-x -4.0, :desired-v-x -14.0}
|
||||
{:pos-x 92.0, :v-x -8.0, :desired-v-x -14.0}
|
||||
{:pos-x 82.0, :v-x -12.0, :desired-v-x -14.0}
|
||||
{:pos-x 68.5, :v-x -14.0, :desired-v-x -14.0}
|
||||
{:pos-x 54.5, :v-x -14.0, :desired-v-x -14.0}])))))
|
||||
{:pos-x 54.5, :v-x -14.0, :desired-v-x -14.0}])))
|
||||
|
||||
(deftest positive-acceleration-y-test
|
||||
(testing "application of SPEEDY register in
|
||||
positive direction has expected behavior"
|
||||
(let [zeroed-world (assoc-in world [:robots 0 :pos-y] 0.0)
|
||||
zeroed-registers (get-in world [:robots 0 :brain :registers])
|
||||
speedy-world (register/write-register (zeroed-registers "SPEEDY") zeroed-world 140)
|
||||
speedy-worlds (iterate (fn [{[robot] :robots :as world}]
|
||||
(binding [*GAME-SECONDS-PER-TICK* 1.0]
|
||||
(tick-robot robot world)))
|
||||
speedy-world)]
|
||||
(is (= (take 6 (map (fn [world]
|
||||
{:pos-y (get-in world [:robots 0 :pos-y])
|
||||
:v-y (get-in world [:robots 0 :v-y])
|
||||
:desired-v-y (get-in world [:robots 0 :desired-v-y])})
|
||||
speedy-worlds))
|
||||
(testing "application of SPEEDY register in positive direction has expected behavior"
|
||||
(acceleration-test
|
||||
0.0
|
||||
140
|
||||
y
|
||||
[{:pos-y 0.0, :v-y 0.0, :desired-v-y 14.0}
|
||||
{:pos-y 2.0, :v-y 4.0, :desired-v-y 14.0}
|
||||
{:pos-y 8.0, :v-y 8.0, :desired-v-y 14.0}
|
||||
{:pos-y 18.0, :v-y 12.0, :desired-v-y 14.0}
|
||||
{:pos-y 31.5, :v-y 14.0, :desired-v-y 14.0}
|
||||
{:pos-y 45.5, :v-y 14.0, :desired-v-y 14.0}])))))
|
||||
{:pos-y 45.5, :v-y 14.0, :desired-v-y 14.0}])))
|
||||
|
||||
(deftest negative-acceleration-y-test
|
||||
(testing "application of SPEEDY register in
|
||||
negative direction has expected behavior"
|
||||
(let [zeroed-world (assoc-in world [:robots 0 :pos-y] 100.0)
|
||||
zeroed-registers (get-in world [:robots 0 :brain :registers])
|
||||
speedy-world (register/write-register (zeroed-registers "SPEEDY") zeroed-world -140)
|
||||
speedy-worlds (iterate (fn [{[robot] :robots :as world}]
|
||||
(binding [*GAME-SECONDS-PER-TICK* 1.0]
|
||||
(tick-robot robot world)))
|
||||
speedy-world)]
|
||||
(is (= (take 6 (map (fn [world]
|
||||
{:pos-y (get-in world [:robots 0 :pos-y])
|
||||
:v-y (get-in world [:robots 0 :v-y])
|
||||
:desired-v-y (get-in world [:robots 0 :desired-v-y])})
|
||||
speedy-worlds))
|
||||
(testing "application of SPEEDY register in negative direction has expected behavior"
|
||||
(acceleration-test
|
||||
100.0
|
||||
-140
|
||||
y
|
||||
[{:pos-y 100.0, :v-y 0.0, :desired-v-y -14.0}
|
||||
{:pos-y 98.0, :v-y -4.0, :desired-v-y -14.0}
|
||||
{:pos-y 92.0, :v-y -8.0, :desired-v-y -14.0}
|
||||
{:pos-y 82.0, :v-y -12.0, :desired-v-y -14.0}
|
||||
{:pos-y 68.5, :v-y -14.0, :desired-v-y -14.0}
|
||||
{:pos-y 54.5, :v-y -14.0, :desired-v-y -14.0}])))))
|
||||
|
||||
{:pos-y 54.5, :v-y -14.0, :desired-v-y -14.0}])))
|
||||
|
Loading…
Reference in New Issue
Block a user