mirror of
https://github.com/Insality/druid.git
synced 2025-09-27 18:12:19 +02:00
Update tests
This commit is contained in:
@@ -1,95 +1,105 @@
|
||||
return function()
|
||||
local mock_gui = nil
|
||||
local mock_time = nil
|
||||
local mock_input = nil
|
||||
local test_helper = nil
|
||||
local druid_system = nil
|
||||
|
||||
local druid = nil
|
||||
local context = nil
|
||||
|
||||
local function create_drag_instance(on_drag)
|
||||
local button = mock_gui.add_box("button", 0, 0, 20, 20)
|
||||
local instance = druid:new_drag(button, on_drag)
|
||||
instance.style.NO_USE_SCREEN_KOEF = true
|
||||
instance.style.DRAG_DEADZONE = 4
|
||||
return instance
|
||||
end
|
||||
|
||||
describe("Drag component", function()
|
||||
local mock_time
|
||||
local mock_input
|
||||
local druid_system
|
||||
|
||||
local druid
|
||||
local context
|
||||
|
||||
local function create_drag_instance(on_drag)
|
||||
local button = gui.new_box_node(vmath.vector3(0, 0, 0), vmath.vector3(100, 100, 0))
|
||||
local instance = druid:new_drag(button, on_drag)
|
||||
instance.style.NO_USE_SCREEN_KOEF = true
|
||||
instance.style.DRAG_DEADZONE = 4
|
||||
return instance
|
||||
end
|
||||
|
||||
before(function()
|
||||
mock_gui = require("deftest.mock.gui")
|
||||
mock_time = require("deftest.mock.time")
|
||||
mock_input = require("test.helper.mock_input")
|
||||
test_helper = require("test.helper.test_helper")
|
||||
druid_system = require("druid.druid")
|
||||
|
||||
mock_gui.mock()
|
||||
mock_time.mock()
|
||||
mock_time.set(60)
|
||||
mock_time.set(0)
|
||||
|
||||
context = test_helper.get_context()
|
||||
context = vmath.vector3()
|
||||
druid = druid_system.new(context)
|
||||
end)
|
||||
|
||||
after(function()
|
||||
mock_gui.unmock()
|
||||
mock_time.unmock()
|
||||
druid:final(context)
|
||||
druid:final()
|
||||
druid = nil
|
||||
end)
|
||||
|
||||
it("Should call drag callback on node", function()
|
||||
local on_drag, on_drag_mock = test_helper.get_function()
|
||||
local on_drag_calls = 0
|
||||
local drag_dx, drag_dy, drag_total_x, drag_total_y
|
||||
|
||||
local function on_drag(_, dx, dy, total_x, total_y)
|
||||
on_drag_calls = on_drag_calls + 1
|
||||
drag_dx, drag_dy = dx, dy
|
||||
drag_total_x, drag_total_y = total_x, total_y
|
||||
end
|
||||
|
||||
local instance = create_drag_instance(on_drag)
|
||||
|
||||
druid:on_input(mock_input.click_pressed(10, 10))
|
||||
assert(instance.is_touch == true)
|
||||
|
||||
druid:on_input(mock_input.input_empty(12, 10))
|
||||
assert(on_drag_mock.calls == 0)
|
||||
assert(on_drag_calls == 0)
|
||||
|
||||
druid:on_input(mock_input.input_empty(14, 10))
|
||||
assert(on_drag_mock.calls == 1)
|
||||
assert(on_drag_mock.params[2] == 2) -- From the last input dx
|
||||
assert(on_drag_mock.params[3] == 0)
|
||||
assert(on_drag_mock.params[4] == 4) -- Total X from drag start point
|
||||
assert(on_drag_mock.params[5] == 0)
|
||||
assert(on_drag_calls == 1)
|
||||
assert(drag_dx == 2) -- From the last input dx
|
||||
assert(drag_dy == 0)
|
||||
assert(drag_total_x == 4) -- Total X from drag start point
|
||||
assert(drag_total_y == 0)
|
||||
end)
|
||||
|
||||
|
||||
it("Should call all included events", function()
|
||||
local on_drag, on_drag_mock = test_helper.get_function()
|
||||
local on_drag_calls = 0
|
||||
local function on_drag() on_drag_calls = on_drag_calls + 1 end
|
||||
local instance = create_drag_instance(on_drag)
|
||||
|
||||
local on_touch_start, on_touch_start_mock = test_helper.get_function()
|
||||
local on_touch_start_calls = 0
|
||||
local function on_touch_start() on_touch_start_calls = on_touch_start_calls + 1 end
|
||||
instance.on_touch_start:subscribe(on_touch_start)
|
||||
local on_touch_end, on_touch_end_mock = test_helper.get_function()
|
||||
|
||||
local on_touch_end_calls = 0
|
||||
local function on_touch_end() on_touch_end_calls = on_touch_end_calls + 1 end
|
||||
instance.on_touch_end:subscribe(on_touch_end)
|
||||
local on_drag_start, on_drag_start_mock = test_helper.get_function()
|
||||
|
||||
local on_drag_start_calls = 0
|
||||
local function on_drag_start() on_drag_start_calls = on_drag_start_calls + 1 end
|
||||
instance.on_drag_start:subscribe(on_drag_start)
|
||||
local on_drag_end, on_drag_end_mock = test_helper.get_function()
|
||||
|
||||
local on_drag_end_calls = 0
|
||||
local function on_drag_end() on_drag_end_calls = on_drag_end_calls + 1 end
|
||||
instance.on_drag_end:subscribe(on_drag_end)
|
||||
|
||||
assert(on_touch_start_mock.calls == 0)
|
||||
assert(on_touch_start_calls == 0)
|
||||
druid:on_input(mock_input.click_pressed(10, 10))
|
||||
assert(on_touch_start_mock.calls == 1)
|
||||
assert(on_touch_end_mock.calls == 0)
|
||||
assert(on_touch_start_calls == 1)
|
||||
assert(on_touch_end_calls == 0)
|
||||
druid:on_input(mock_input.click_released(12, 10))
|
||||
assert(on_touch_end_mock.calls == 1)
|
||||
assert(on_touch_end_calls == 1)
|
||||
|
||||
druid:on_input(mock_input.click_pressed(10, 10))
|
||||
assert(on_drag_start_mock.calls == 0)
|
||||
assert(on_drag_start_calls == 0)
|
||||
druid:on_input(mock_input.input_empty(15, 10))
|
||||
assert(on_drag_start_mock.calls == 1)
|
||||
assert(on_drag_mock.calls == 1)
|
||||
assert(on_drag_end_mock.calls == 0)
|
||||
assert(on_drag_start_calls == 1)
|
||||
assert(on_drag_calls == 1)
|
||||
assert(on_drag_end_calls == 0)
|
||||
druid:on_input(mock_input.click_released(15, 10))
|
||||
assert(on_drag_end_mock.calls == 1)
|
||||
assert(on_drag_end_calls == 1)
|
||||
end)
|
||||
|
||||
it("Should work with set_enabled", function()
|
||||
local on_drag, on_drag_mock = test_helper.get_function()
|
||||
local on_drag_calls = 0
|
||||
local function on_drag() on_drag_calls = on_drag_calls + 1 end
|
||||
local instance = create_drag_instance(on_drag)
|
||||
|
||||
instance:set_enabled(false)
|
||||
@@ -99,10 +109,10 @@ return function()
|
||||
assert(instance.is_touch == false)
|
||||
|
||||
druid:on_input(mock_input.input_empty(12, 10))
|
||||
assert(on_drag_mock.calls == 0)
|
||||
assert(on_drag_calls == 0)
|
||||
|
||||
druid:on_input(mock_input.input_empty(15, 10))
|
||||
assert(on_drag_mock.calls == 0)
|
||||
assert(on_drag_calls == 0)
|
||||
|
||||
instance:set_enabled(true)
|
||||
assert(instance:is_enabled() == true)
|
||||
@@ -111,32 +121,49 @@ return function()
|
||||
assert(instance.is_touch == true)
|
||||
|
||||
druid:on_input(mock_input.input_empty(12, 10))
|
||||
assert(on_drag_mock.calls == 0)
|
||||
assert(on_drag_calls == 0)
|
||||
|
||||
druid:on_input(mock_input.input_empty(15, 10))
|
||||
assert(on_drag_mock.calls == 1)
|
||||
assert(on_drag_calls == 1)
|
||||
end)
|
||||
|
||||
it("Should work with click zone", function()
|
||||
local on_drag, on_drag_mock = test_helper.get_function()
|
||||
local on_drag_calls = 0
|
||||
local function on_drag() on_drag_calls = on_drag_calls + 1 end
|
||||
local instance = create_drag_instance(on_drag)
|
||||
local zone = mock_gui.add_box("zone", 10, 10, 10, 10)
|
||||
local zone = gui.new_box_node(vmath.vector3(0, 0, 0), vmath.vector3(10, 10, 0))
|
||||
instance:set_click_zone(zone)
|
||||
|
||||
druid:on_input(mock_input.click_pressed(5, 5))
|
||||
druid:on_input(mock_input.click_pressed(20, 20))
|
||||
assert(instance.is_touch == false)
|
||||
|
||||
druid:on_input(mock_input.input_empty(10, 5))
|
||||
assert(on_drag_mock.calls == 0)
|
||||
druid:on_input(mock_input.input_empty(10, 10))
|
||||
assert(on_drag_calls == 0)
|
||||
|
||||
druid:on_input(mock_input.input_empty(15, 10))
|
||||
assert(on_drag_mock.calls == 0)
|
||||
druid:on_input(mock_input.input_empty(15, 15))
|
||||
druid:on_input(mock_input.click_released(15, 15))
|
||||
assert(on_drag_calls == 0)
|
||||
|
||||
druid:on_input(mock_input.click_pressed(15, 15))
|
||||
mock_time.set(60)
|
||||
druid:on_input(mock_input.click_pressed(0, 0))
|
||||
assert(instance.is_touch == true)
|
||||
|
||||
druid:on_input(mock_input.input_empty(20, 15))
|
||||
assert(on_drag_mock.calls == 1)
|
||||
druid:on_input(mock_input.input_empty(5, 5))
|
||||
assert(on_drag_calls == 1)
|
||||
end)
|
||||
|
||||
it("Should not trigger in deadzone", function()
|
||||
local on_drag_calls = 0
|
||||
local function on_drag() on_drag_calls = on_drag_calls + 1 end
|
||||
local instance = create_drag_instance(on_drag)
|
||||
|
||||
instance.style.DRAG_DEADZONE = 10
|
||||
|
||||
druid:on_input(mock_input.click_pressed(10, 10))
|
||||
assert(instance.is_touch == true)
|
||||
|
||||
druid:on_input(mock_input.input_empty(15, 15))
|
||||
assert(on_drag_calls == 0)
|
||||
end)
|
||||
end)
|
||||
end
|
||||
|
Reference in New Issue
Block a user