mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-03-21 11:13:35 +00:00
* Unit Test rework & Master/Ticker update * Fixes and working unit testing * Fixes * Test fixes and FA update * Fixed runtimes * Radio subsystem * move that glob wherever later * ident * CIBUILDING compile option * Fixed runtimes * Some changes to the workflow * CI Split * More split * Pathing * Linters and Annotators * ci dir fix * Missing undef fixed * Enable grep checks * More test conversions * More split * Correct file * Removes unneeded inputs * oop * More dependency changes * More conversions * Conversion fixes * Fixes * Some assert fixes * Corrects start gate * Converted some README.dms to README.mds * Removes duplicate proc * Removes unused defines * Example configs * fix dll access viol by double calling * Post-rebase fixes * Cleans up names global list * Undef restart counter * More code/game/ cleanup * Statpanel update * Skybox * add * Fix ticker * Roundend fix * Persistence dependency update * Reordering * Reordering * Reordering * Initstage fix * . * . * Reorder * Reorder * Circle * Mobs * Air * Test fix * CI Script Fix * Configs * More ticker stuff * This is now in 'reboot world' * Restart world announcements * no glob in PreInit * to define * Update * Removed old include * Make this file normal again * moved * test * shared unit testing objects * Updates batched_spritesheets and universal_icon * . * job data debug * rm that * init order * show us * . * i wonder * . * . * urg * do we not have a job ID? * . * rm sleep for now * updated rust-g linux binaries * binaries update 2 * binaries update 3 * testing something * change that * test something * . * . * . * locavar * test * move that * . * debug * don't run this test * strack trace it * cleaner * . * . * cras again * also comment this out * return to official rust g * Update robot_icons.dm * monitor the generation * . --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
190 lines
6.2 KiB
Plaintext
190 lines
6.2 KiB
Plaintext
/// converted unit test, maybe should be fully refactored
|
|
/// MIGHT REQUIRE BIGGER REWORK
|
|
|
|
/// Test that tests the apcs, scrubbers and vents of the defined z-levels
|
|
/datum/unit_test/apc_area_test
|
|
|
|
/datum/unit_test/apc_area_test/Run()
|
|
var/list/exempt_areas = typesof(/area/space,
|
|
/area/syndicate_station,
|
|
/area/skipjack_station,
|
|
/area/solar,
|
|
/area/shuttle,
|
|
/area/holodeck,
|
|
/area/supply/station,
|
|
/area/mine,
|
|
/area/vacant/vacant_shop,
|
|
/area/turbolift,
|
|
/area/submap
|
|
)
|
|
|
|
var/list/exempt_from_atmos = typesof(/area/maintenance,
|
|
/area/storage,
|
|
/area/engineering/atmos/storage,
|
|
/area/rnd/test_area,
|
|
/area/construction,
|
|
/area/server,
|
|
/area/mine,
|
|
/area/vacant/vacant_shop,
|
|
/area/rnd/research_storage, // This should probably be fixed,
|
|
/area/security/riot_control, // This should probably be fixed,
|
|
)
|
|
|
|
var/list/exempt_from_apc = typesof(/area/construction,
|
|
/area/medical/genetics,
|
|
/area/mine,
|
|
/area/vacant/vacant_shop
|
|
)
|
|
|
|
// Some maps have areas specific to the map, so include those.
|
|
exempt_areas += using_map.unit_test_exempt_areas.Copy()
|
|
exempt_from_atmos += using_map.unit_test_exempt_from_atmos.Copy()
|
|
exempt_from_apc += using_map.unit_test_exempt_from_apc.Copy()
|
|
|
|
var/list/zs_to_test = using_map.unit_test_z_levels || list(1) //Either you set it, or you just get z1
|
|
|
|
for(var/area/A in world)
|
|
if((A.z in zs_to_test) && !(A.type in exempt_areas))
|
|
var/bad_msg = "--------------- [A.name]([A.type])"
|
|
|
|
// Scan for areas with extra APCs
|
|
if(!(A.type in exempt_from_apc))
|
|
TEST_ASSERT_NOTNULL(A.apc, "[bad_msg] lacks an APC. (X[A.x]|Y[A.y]) - Z[A.z])")
|
|
|
|
if(!isnull(A.apc))
|
|
var/list/apc_list = list()
|
|
for(var/turf/T in get_current_area_turfs(A))
|
|
for(var/atom/S in T.contents)
|
|
if(istype(S,/obj/machinery/power/apc))
|
|
apc_list.Add(S)
|
|
if(apc_list.len > 1)
|
|
for(var/obj/machinery/power/P in apc_list)
|
|
TEST_FAIL("[bad_msg] has too many APCs. (X[P.x]|Y[P.y]) - Z[P.z])")
|
|
|
|
TEST_ASSERT(!(!A.air_scrub_info.len && !(A.type in exempt_from_atmos)), "[bad_msg] lacks an Air scrubber. (X[A.x]|Y[A.y]) - (Z[A.z])")
|
|
TEST_ASSERT(!(!A.air_vent_info.len && !(A.type in exempt_from_atmos)), "[bad_msg] lacks an Air vent. (X[A.x]|Y[A.y]) - (Z[A.z])")
|
|
|
|
/// Test that tests cables on defined z-levels
|
|
/datum/unit_test/wire_test
|
|
var/wire_test_count = 0
|
|
var/turf/T = null
|
|
var/obj/structure/cable/C = null
|
|
var/list/cable_turfs = list()
|
|
var/list/dirs_checked = list()
|
|
|
|
var/list/exempt_from_wires = list()
|
|
|
|
/datum/unit_test/wire_test/Run()
|
|
set background = 1
|
|
|
|
exempt_from_wires += using_map.unit_test_exempt_from_wires.Copy()
|
|
|
|
var/list/zs_to_test = using_map.unit_test_z_levels || list(1) //Either you set it, or you just get z1
|
|
|
|
for(var/color in GLOB.possible_cable_coil_colours)
|
|
cable_turfs = list()
|
|
|
|
for(C in world)
|
|
T = null
|
|
|
|
T = get_turf(C)
|
|
var/area/A = get_area(T)
|
|
if(T && (T.z in zs_to_test) && !(A.type in exempt_from_wires))
|
|
if(C.color == GLOB.possible_cable_coil_colours[color])
|
|
cable_turfs |= get_turf(C)
|
|
|
|
for(T in cable_turfs)
|
|
var/bad_msg = "--------------- [T.name] \[[T.x] / [T.y] / [T.z]\] [color]"
|
|
dirs_checked.Cut()
|
|
for(C in T)
|
|
wire_test_count++
|
|
var/combined_dir = "[C.d1]-[C.d2]"
|
|
TEST_ASSERT(!(combined_dir in dirs_checked), "[bad_msg] Contains multiple wires with same direction on top of each other.")
|
|
TEST_ASSERT(C.dir == SOUTH, "[bad_msg] Contains wire with dir set, wires MUST face south, use icon_states.")
|
|
dirs_checked.Add(combined_dir)
|
|
|
|
/// Test template no-ops on all maps
|
|
/datum/unit_test/template_noops
|
|
var/list/log = list()
|
|
var/turf_noop_count = 0
|
|
|
|
/datum/unit_test/template_noops/Run()
|
|
for(var/turf/template_noop/T in world)
|
|
turf_noop_count++
|
|
log += "+-- Template Turf @ [T.x], [T.y], [T.z] ([T.loc])"
|
|
|
|
var/area_noop_count = 0
|
|
for(var/area/template_noop/A in world)
|
|
area_noop_count++
|
|
log += "+-- Template Area"
|
|
|
|
if(turf_noop_count || area_noop_count)
|
|
TEST_FAIL("Map contained [turf_noop_count] template turfs and [area_noop_count] template areas at round-start.\n" + log.Join("\n"))
|
|
|
|
/// Test active edges on all maps
|
|
/datum/unit_test/active_edges
|
|
|
|
/datum/unit_test/active_edges/Run()
|
|
var/active_edges = SSair.active_edges.len
|
|
var/list/edge_log = list()
|
|
|
|
if(active_edges)
|
|
for(var/connection_edge/E in SSair.active_edges)
|
|
var/a_temp = E.A.air.temperature
|
|
var/a_moles = E.A.air.total_moles
|
|
var/a_vol = E.A.air.volume
|
|
var/a_gas = ""
|
|
for(var/gas in E.A.air.gas)
|
|
a_gas += "[gas]=[E.A.air.gas[gas]]"
|
|
|
|
var/b_temp
|
|
var/b_moles
|
|
var/b_vol
|
|
var/b_gas = ""
|
|
|
|
// Two zones mixing
|
|
if(istype(E, /connection_edge/zone))
|
|
var/connection_edge/zone/Z = E
|
|
b_temp = Z.B.air.temperature
|
|
b_moles = Z.B.air.total_moles
|
|
b_vol = Z.B.air.volume
|
|
for(var/gas in Z.B.air.gas)
|
|
b_gas += "[gas]=[Z.B.air.gas[gas]]"
|
|
|
|
// Zone and unsimulated turfs mixing
|
|
if(istype(E, /connection_edge/unsimulated))
|
|
var/connection_edge/unsimulated/U = E
|
|
b_temp = U.B.temperature
|
|
b_moles = "Unsim"
|
|
b_vol = "Unsim"
|
|
for(var/gas in U.air.gas)
|
|
b_gas += "[gas]=[U.air.gas[gas]]"
|
|
|
|
edge_log += "Active Edge [E] ([E.type])"
|
|
edge_log += "Edge side A: T:[a_temp], Mol:[a_moles], Vol:[a_vol], Gas:[a_gas]"
|
|
edge_log += "Edge side B: T:[b_temp], Mol:[b_moles], Vol:[b_vol], Gas:[b_gas]"
|
|
|
|
for(var/turf/T in E.connecting_turfs)
|
|
edge_log += "+--- Connecting Turf [T] ([T.type]) @ [T.x], [T.y], [T.z] ([T.loc])"
|
|
|
|
if(active_edges)
|
|
TEST_FAIL("Maps contained [active_edges] active edges at round-start.\n" + edge_log.Join("\n"))
|
|
|
|
/// Test the ladders on the maps
|
|
/datum/unit_test/ladder_test
|
|
var/failed = FALSE
|
|
|
|
/datum/unit_test/ladder_test/Run()
|
|
for(var/obj/structure/ladder/L in world)
|
|
var/turf/T = get_turf(L)
|
|
TEST_ASSERT(T, "[L.x].[L.y].[L.z]: Map - Ladder on invalid turf")
|
|
if(!T)
|
|
continue
|
|
|
|
if(L.allowed_directions & UP)
|
|
TEST_ASSERT(L.target_up, "[T.x].[T.y].[T.z]: Map - Ladder allows upward movement, but had no ladder above it")
|
|
if(L.allowed_directions & DOWN)
|
|
TEST_ASSERT(L.target_down, "[T.x].[T.y].[T.z]: Map - Ladder allows downward movement, but had no ladder beneath it")
|
|
|
|
TEST_ASSERT(!T.density, "[L.x].[L.y].[L.z]: Map - Ladder is inside a wall")
|