mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
e3c17aa6d0
* Travis: run luacheck on unit tests
77 lines
2.5 KiB
Lua
77 lines
2.5 KiB
Lua
describe("network_manager module", function()
|
|
local Device
|
|
local turn_on_wifi_called
|
|
local turn_off_wifi_called
|
|
local obtain_ip_called
|
|
local release_ip_called
|
|
|
|
local function clearState()
|
|
turn_on_wifi_called = 0
|
|
turn_off_wifi_called = 0
|
|
obtain_ip_called = 0
|
|
release_ip_called = 0
|
|
end
|
|
|
|
setup(function()
|
|
require("commonrequire")
|
|
Device = require("device")
|
|
function Device:initNetworkManager(NetworkMgr)
|
|
function NetworkMgr:turnOnWifi(callback)
|
|
turn_on_wifi_called = turn_on_wifi_called + 1
|
|
if callback then
|
|
callback()
|
|
end
|
|
end
|
|
function NetworkMgr:turnOffWifi(callback)
|
|
turn_off_wifi_called = turn_off_wifi_called + 1
|
|
if callback then
|
|
callback()
|
|
end
|
|
end
|
|
function NetworkMgr:obtainIP(callback)
|
|
obtain_ip_called = obtain_ip_called + 1
|
|
if callback then
|
|
callback()
|
|
end
|
|
end
|
|
function NetworkMgr:releaseIP(callback)
|
|
release_ip_called = release_ip_called + 1
|
|
if callback then
|
|
callback()
|
|
end
|
|
end
|
|
function NetworkMgr:restoreWifiAsync()
|
|
self:turnOnWifi()
|
|
self:obtainIP()
|
|
end
|
|
end
|
|
end)
|
|
|
|
it("should restore wifi in init if wifi was on", function()
|
|
package.loaded["ui/network/manager"] = nil
|
|
clearState()
|
|
G_reader_settings:saveSetting("wifi_was_on", true)
|
|
local network_manager = require("ui/network/manager") --luacheck: ignore
|
|
assert.is.same(turn_on_wifi_called, 1)
|
|
assert.is.same(turn_off_wifi_called, 0)
|
|
assert.is.same(obtain_ip_called, 1)
|
|
assert.is.same(release_ip_called, 0)
|
|
end)
|
|
|
|
it("should not restore wifi in init if wifi was off", function()
|
|
package.loaded["ui/network/manager"] = nil
|
|
clearState()
|
|
G_reader_settings:saveSetting("wifi_was_on", false)
|
|
local network_manager = require("ui/network/manager") --luacheck: ignore
|
|
assert.is.same(turn_on_wifi_called, 0)
|
|
assert.is.same(turn_off_wifi_called, 0)
|
|
assert.is.same(obtain_ip_called, 0)
|
|
assert.is.same(release_ip_called, 0)
|
|
end)
|
|
|
|
teardown(function()
|
|
function Device:initNetworkManager() end
|
|
package.loaded["ui/network/manager"] = nil
|
|
end)
|
|
end)
|