Merge branch 'ennorehling-feature/test-world' into develop

This commit is contained in:
Enno Rehling 2015-08-07 00:16:42 +02:00
commit 45ecd8099b
3 changed files with 45 additions and 0 deletions

View File

@ -10,3 +10,4 @@ require 'tests.orders'
require 'tests.common'
require 'tests.storage'
require 'tests.magicbag'
require 'tests.process'

View File

@ -7,3 +7,4 @@ require 'tests.e3.morale'
require 'tests.orders'
require 'tests.common'
require 'tests.magicbag'
require 'tests.process'

43
scripts/tests/process.lua Normal file
View File

@ -0,0 +1,43 @@
require "lunit"
module("tests.process", package.seeall, lunit.testcase)
local u, r, f,turn
function setup()
eressea.free_game()
r = region.create(0, 0, "plain")
f = faction.create("bernd@eressea.de", "human", "de")
u = unit.create(f, r, 1)
u:add_item("money", 10)
turn = get_turn()
end
local function file_exists(name)
local f=io.open(name,"r")
if f~=nil then io.close(f) return true else return false end
end
local function assert_file(filename)
assert_equal(true, file_exists(filename))
os.remove(filename)
end
function test_process_turn()
u:add_order("NUMMER PARTEI 777")
process_orders()
assert_equal(0, init_reports())
assert_equal(0, write_reports())
assert_equal(0, eressea.write_game("test.dat"))
assert_file("data/test.dat")
assert_file("reports/" .. get_turn() .. "-ii.nr")
assert_file("reports/" .. get_turn() .. "-ii.cr")
assert_file("reports/" .. get_turn() .. "-ii.txt")
assert_file("reports/" .. get_turn() .. "-777.nr")
assert_file("reports/" .. get_turn() .. "-777.cr")
assert_file("reports/" .. get_turn() .. "-777.txt")
assert_file("reports/reports.txt")
os.remove("reports")
os.remove("data")
assert_equal(turn+1, get_turn())
end