2011-03-09 20:49:55 +01:00
|
|
|
require "lunit"
|
|
|
|
|
|
|
|
module("tests.rules", package.seeall, lunit.testcase)
|
|
|
|
|
|
|
|
function setup()
|
2012-06-07 21:44:25 +02:00
|
|
|
eressea.free_game()
|
|
|
|
eressea.settings.set("nmr.removenewbie", "0")
|
|
|
|
eressea.settings.set("nmr.timeout", "0")
|
|
|
|
eressea.settings.set("NewbieImmunity", "0")
|
2014-06-13 07:14:07 +02:00
|
|
|
eressea.config.parse('{ "races": { "human" : {}}}')
|
2011-03-09 20:49:55 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function test_landing1()
|
|
|
|
local ocean = region.create(1, 0, "ocean")
|
|
|
|
local r = region.create(0, 0, "plain")
|
|
|
|
local f = faction.create("noreply@eressea.de", "insects", "de")
|
|
|
|
local f2 = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local s = ship.create(ocean, "longboat")
|
|
|
|
local u1 = unit.create(f, ocean, 1)
|
|
|
|
local u2 = unit.create(f2, r, 1)
|
|
|
|
assert_not_nil(u2)
|
|
|
|
u1:add_item("money", 1000)
|
|
|
|
u2:add_item("money", 1000)
|
|
|
|
|
|
|
|
u1.ship = s
|
|
|
|
u1:set_skill("sailing", 10)
|
|
|
|
u1:clear_orders()
|
|
|
|
u1:add_order("NACH w")
|
|
|
|
process_orders()
|
|
|
|
|
|
|
|
assert_equal(r.id, u1.region.id) -- the plain case: okay
|
|
|
|
end
|
|
|
|
|
2011-03-09 20:51:11 +01:00
|
|
|
function test_landing_harbour()
|
2011-03-09 20:49:55 +01:00
|
|
|
local ocean = region.create(1, 0, "ocean")
|
|
|
|
local r = region.create(0, 0, "glacier")
|
|
|
|
local harbour = building.create(r, "harbour")
|
|
|
|
harbour.size = 25
|
|
|
|
local f = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local f2 = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local s = ship.create(ocean, "longboat")
|
|
|
|
local u1 = unit.create(f, ocean, 1)
|
|
|
|
local u2 = unit.create(f2, r, 1)
|
|
|
|
assert_not_nil(u2)
|
|
|
|
u1:add_item("money", 1000)
|
|
|
|
u2:add_item("money", 1000)
|
2011-03-09 20:51:11 +01:00
|
|
|
u2.building = harbour
|
2011-03-09 20:49:55 +01:00
|
|
|
|
|
|
|
u1.ship = s
|
|
|
|
u1:set_skill("sailing", 10)
|
|
|
|
u1:clear_orders()
|
|
|
|
u1:add_order("NACH w")
|
|
|
|
process_orders()
|
|
|
|
|
|
|
|
assert_equal(r.id, u1.region.id) -- glacier with harbour -- okay
|
|
|
|
end
|
|
|
|
|
2011-03-09 20:51:11 +01:00
|
|
|
function test_landing_harbour_unpaid()
|
|
|
|
local ocean = region.create(1, 0, "ocean")
|
|
|
|
local r = region.create(0, 0, "glacier")
|
|
|
|
local harbour = building.create(r, "harbour")
|
|
|
|
harbour.size = 25
|
|
|
|
local f = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local f2 = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local s = ship.create(ocean, "longboat")
|
|
|
|
local u1 = unit.create(f, ocean, 1)
|
|
|
|
local u2 = unit.create(f2, r, 1)
|
|
|
|
assert_not_nil(u2)
|
|
|
|
u1:add_item("money", 1000)
|
|
|
|
u2:add_item("money", 1000)
|
|
|
|
|
|
|
|
u1.ship = s
|
|
|
|
u1:set_skill("sailing", 10)
|
|
|
|
u1:clear_orders()
|
|
|
|
u1:add_order("NACH w")
|
|
|
|
process_orders()
|
|
|
|
|
|
|
|
assert_equal(ocean.id, u1.region.id) -- did not pay
|
|
|
|
end
|
|
|
|
|
|
|
|
function test_landing_terrain()
|
2014-06-13 07:14:07 +02:00
|
|
|
local ocean = region.create(1, 0, "ocean")
|
|
|
|
local r = region.create(0, 0, "glacier")
|
|
|
|
local f = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local f2 = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local s = ship.create(ocean, "longboat")
|
|
|
|
local u1 = unit.create(f, ocean, 1)
|
|
|
|
local u2 = unit.create(f2, r, 1)
|
|
|
|
assert_not_nil(u2)
|
|
|
|
u1:add_item("money", 1000)
|
|
|
|
u2:add_item("money", 1000)
|
|
|
|
|
|
|
|
u1.ship = s
|
|
|
|
u1:set_skill("sailing", 10)
|
|
|
|
u1:clear_orders()
|
|
|
|
u1:add_order("NACH w")
|
|
|
|
process_orders()
|
|
|
|
|
|
|
|
assert_equal(ocean.id, u1.region.id) -- cannot land in glacier without harbour
|
2011-03-09 20:49:55 +01:00
|
|
|
end
|
|
|
|
|
2011-03-09 20:51:11 +01:00
|
|
|
function test_landing_insects()
|
2011-03-09 20:49:55 +01:00
|
|
|
local ocean = region.create(1, 0, "ocean")
|
|
|
|
local r = region.create(0, 0, "glacier")
|
|
|
|
local harbour = building.create(r, "harbour")
|
|
|
|
harbour.size = 25
|
|
|
|
local f = faction.create("noreply@eressea.de", "insects", "de")
|
|
|
|
local f2 = faction.create("noreply@eressea.de", "human", "de")
|
|
|
|
local s = ship.create(ocean, "longboat")
|
|
|
|
local u1 = unit.create(f, ocean, 1)
|
|
|
|
local u2 = unit.create(f2, r, 1)
|
|
|
|
assert_not_nil(u2)
|
|
|
|
u1:add_item("money", 1000)
|
|
|
|
u2:add_item("money", 1000)
|
2011-03-09 20:51:11 +01:00
|
|
|
u2.building = harbour
|
2011-03-09 20:49:55 +01:00
|
|
|
|
|
|
|
u1.ship = s
|
|
|
|
u1:set_skill("sailing", 10)
|
|
|
|
u1:clear_orders()
|
|
|
|
u1:add_order("NACH w")
|
|
|
|
process_orders()
|
|
|
|
|
|
|
|
assert_equal(ocean.id, u1.region.id) -- insects cannot land in glaciers
|
|
|
|
end
|