Files
ss14-wl/Content.IntegrationTests/Tests/Fluids/AbsorbentTest.cs
T
Moony d42adbf05d Gametest Part 2: Preliminary refactor every test to use GameTest as the framework. (#43207)
* Pass 1.

* i'm FREE

* Prevent hangups.

* okay fine here's an attribute for settings, will polish later and prolly remove the overridable thing.

* sigh.

* fix singular trigger bug so LatheTest doesn't flake.

* Remove SystemAttribute usage.

* Poke

* I used the shotgun. You know why? Cause the shot gun doesn’t miss, and unlike the shitty hybrid taser it stops a criminal in their tracks in two hits. Bang, bang, and they’re fucking done. I use four shots just to make damn sure. Because, once again, I’m not there to coddle a buncha criminal scum sucking f------, I’m there to 1) Survive the fucking round. 2) Guard the armory. So you can absolutely get fucked. If I get unbanned, which I won’t, you can guarantee I will continue to use the shotgun to apprehend criminals. Because it’s quick, clean and effective as fuck. Why in the seven hells would I fuck around with the disabler shots, which take half a clip just to bring someone down, or with the tazer bolts which are slow as balls, impossible to aim and do about next to jack shit, fuck all. The shotgun is the superior law enforcement weapon. Because it stops crime. And it stops crime by reducing the number of criminals roaming the fucking halls.

* Change the faulty store test into two tests, one of which is ignored for failing.
2026-04-01 16:06:26 +00:00

341 lines
18 KiB
C#

using Content.Server.Fluids.EntitySystems;
using Content.Shared.Chemistry.Components;
using Content.Shared.Chemistry.EntitySystems;
using Content.Shared.FixedPoint;
using Content.Shared.Fluids;
using Robust.Shared.GameObjects;
using Robust.Shared.Prototypes;
using System.Collections.Generic;
using System.Linq;
using Content.IntegrationTests.Fixtures;
namespace Content.IntegrationTests.Tests.Fluids;
[TestFixture]
[TestOf(typeof(AbsorbentComponent))]
public sealed class AbsorbentTest : GameTest
{
private const string UserDummyId = "UserDummy";
private const string AbsorbentDummyId = "AbsorbentDummy";
private const string RefillableDummyId = "RefillableDummy";
private const string SmallRefillableDummyId = "SmallRefillableDummy";
private const string EvaporablePrototypeId = "Water";
private const string NonEvaporablePrototypeId = "Cola";
[TestPrototypes]
private const string Prototypes = $@"
- type: entity
name: {UserDummyId}
id: {UserDummyId}
- type: entity
name: {AbsorbentDummyId}
id: {AbsorbentDummyId}
components:
- type: Absorbent
useAbsorberSolution: true
- type: SolutionContainerManager
solutions:
absorbed:
maxVol: 100
- type: entity
name: {RefillableDummyId}
id: {RefillableDummyId}
components:
- type: SolutionContainerManager
solutions:
refillable:
maxVol: 200
- type: RefillableSolution
solution: refillable
- type: entity
name: {SmallRefillableDummyId}
id: {SmallRefillableDummyId}
components:
- type: SolutionContainerManager
solutions:
refillable:
maxVol: 20
- type: RefillableSolution
solution: refillable
";
public sealed record TestSolutionReagents(FixedPoint2 VolumeOfEvaporable, FixedPoint2 VolumeOfNonEvaporable);
public record TestSolutionCase(
string Case, // Only for clarity purposes
TestSolutionReagents InitialAbsorbentSolution,
TestSolutionReagents InitialRefillableSolution,
TestSolutionReagents ExpectedAbsorbentSolution,
TestSolutionReagents ExpectedRefillableSolution);
[TestCaseSource(nameof(TestCasesToRun))]
public async Task AbsorbentOnRefillableTest(TestSolutionCase testCase)
{
var pair = Pair;
var server = pair.Server;
var testMap = await pair.CreateTestMap();
var coordinates = testMap.GridCoords;
var entityManager = server.ResolveDependency<IEntityManager>();
var absorbentSystem = entityManager.System<AbsorbentSystem>();
var solutionContainerSystem = entityManager.System<SharedSolutionContainerSystem>();
var prototypeManager = server.ResolveDependency<IPrototypeManager>();
EntityUid user = default;
EntityUid absorbent = default;
EntityUid refillable = default;
AbsorbentComponent component = null;
await server.WaitAssertion(() =>
{
user = entityManager.SpawnEntity(UserDummyId, coordinates);
absorbent = entityManager.SpawnEntity(AbsorbentDummyId, coordinates);
refillable = entityManager.SpawnEntity(RefillableDummyId, coordinates);
entityManager.TryGetComponent(absorbent, out component);
solutionContainerSystem.TryGetSolution(absorbent, component.SolutionName, out var absorbentSoln, out var absorbentSolution);
solutionContainerSystem.TryGetRefillableSolution(refillable, out var refillableSoln, out var refillableSolution);
// Arrange
if (testCase.InitialAbsorbentSolution.VolumeOfEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(absorbentSoln.Value, new Solution(EvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfEvaporable));
if (testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(absorbentSoln.Value, new Solution(NonEvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable));
if (testCase.InitialRefillableSolution.VolumeOfEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(refillableSoln.Value, new Solution(EvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfEvaporable));
if (testCase.InitialRefillableSolution.VolumeOfNonEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(refillableSoln.Value, new Solution(NonEvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfNonEvaporable));
// Act
absorbentSystem.Mop((absorbent, component), user, refillable);
// Assert
var absorbentComposition = absorbentSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value);
var refillableComposition = refillableSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value);
Assert.Multiple(() =>
{
Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfEvaporable));
Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfNonEvaporable));
Assert.That(VolumeOfPrototypeInComposition(refillableComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfEvaporable));
Assert.That(VolumeOfPrototypeInComposition(refillableComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfNonEvaporable));
});
});
}
[TestCaseSource(nameof(TestCasesToRunOnSmallRefillable))]
public async Task AbsorbentOnSmallRefillableTest(TestSolutionCase testCase)
{
var pair = Pair;
var server = pair.Server;
var testMap = await pair.CreateTestMap();
var coordinates = testMap.GridCoords;
var entityManager = server.ResolveDependency<IEntityManager>();
var absorbentSystem = entityManager.System<AbsorbentSystem>();
var solutionContainerSystem = entityManager.System<SharedSolutionContainerSystem>();
var prototypeManager = server.ResolveDependency<IPrototypeManager>();
EntityUid user = default;
EntityUid absorbent = default;
EntityUid refillable = default;
AbsorbentComponent component = null;
await server.WaitAssertion(() =>
{
user = entityManager.SpawnEntity(UserDummyId, coordinates);
absorbent = entityManager.SpawnEntity(AbsorbentDummyId, coordinates);
refillable = entityManager.SpawnEntity(SmallRefillableDummyId, coordinates);
entityManager.TryGetComponent(absorbent, out component);
solutionContainerSystem.TryGetSolution(absorbent, component.SolutionName, out var absorbentSoln, out var absorbentSolution);
solutionContainerSystem.TryGetRefillableSolution(refillable, out var refillableSoln, out var refillableSolution);
// Arrange
solutionContainerSystem.AddSolution(absorbentSoln.Value, new Solution(EvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfEvaporable));
if (testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(absorbentSoln.Value, new Solution(NonEvaporablePrototypeId, testCase.InitialAbsorbentSolution.VolumeOfNonEvaporable));
if (testCase.InitialRefillableSolution.VolumeOfEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(refillableSoln.Value, new Solution(EvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfEvaporable));
if (testCase.InitialRefillableSolution.VolumeOfNonEvaporable > FixedPoint2.Zero)
solutionContainerSystem.AddSolution(refillableSoln.Value, new Solution(NonEvaporablePrototypeId, testCase.InitialRefillableSolution.VolumeOfNonEvaporable));
// Act
absorbentSystem.Mop((absorbent, component), user, refillable);
// Assert
var absorbentComposition = absorbentSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value);
var refillableComposition = refillableSolution.GetReagentPrototypes(prototypeManager).ToDictionary(r => r.Key.ID, r => r.Value);
Assert.Multiple(() =>
{
Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfEvaporable));
Assert.That(VolumeOfPrototypeInComposition(absorbentComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedAbsorbentSolution.VolumeOfNonEvaporable));
Assert.That(VolumeOfPrototypeInComposition(refillableComposition, EvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfEvaporable));
Assert.That(VolumeOfPrototypeInComposition(refillableComposition, NonEvaporablePrototypeId), Is.EqualTo(testCase.ExpectedRefillableSolution.VolumeOfNonEvaporable));
});
});
}
private static FixedPoint2 VolumeOfPrototypeInComposition(Dictionary<string, FixedPoint2> composition, string prototypeId)
{
return composition.TryGetValue(prototypeId, out var value) ? value : FixedPoint2.Zero;
}
public static readonly TestSolutionCase[] TestCasesToRun = new TestSolutionCase[]
{
// Both empty case
new(
"Both empty - no transfer",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero)
),
// Just water cases
new(
"Transfer water to empty refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero)
),
new(
"Transfer water to empty absorbent",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero)
),
new(
"Both partially filled with water while everything fits in absorbent",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(40), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(90), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero)
),
new(
"Both partially filled with water while not everything fits in absorbent",
new TestSolutionReagents(FixedPoint2.New(70), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.Zero)
),
// Just contaminants cases
new(
"Transfer contaminants to empty refillable",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50))
),
new(
"Do not transfer contaminants back to empty absorbent",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50))
),
new(
"Add contaminants to preexisting while everything fits in refillable",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(130)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(180))
),
new(
"Add contaminants to preexisting while not everything fits in refillable",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(90)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(130)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(20)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(200))
),
// Mixed: water and contaminants cases
new(
"Transfer just contaminants into empty refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50))
),
new(
"Transfer just contaminants into non-empty refillable while everything fits",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(60)),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(110))
),
new(
"Transfer just contaminants into non-empty refillable while not everything fits",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(170)),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(20)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(200))
),
new(
"Transfer just contaminants and absorb water from water refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.New(70), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.New(50))
),
new(
"Transfer just contaminants and absorb water from a full water refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.New(200), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(150), FixedPoint2.New(50))
),
new(
"Transfer just contaminants and absorb water from a full mixed refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.New(100)),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(150))
),
new(
"Transfer just contaminants and absorb water from a low-water mixed refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.New(10), FixedPoint2.New(100)),
new TestSolutionReagents(FixedPoint2.New(60), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(150))
),
new(
"Contaminants for water exchange",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(100)),
new TestSolutionReagents(FixedPoint2.New(200), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(100), FixedPoint2.New(100))
)
};
public static readonly TestSolutionCase[] TestCasesToRunOnSmallRefillable = new TestSolutionCase[]
{
// Only testing cases where small refillable AvailableVolume makes a difference
new(
"Transfer water to empty refillable",
new TestSolutionReagents(FixedPoint2.New(50), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(30), FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.Zero)
),
new(
"Transfer contaminants to empty refillable",
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(50)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.Zero),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(30)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(20))
),
new(
"Mixed transfer in limited space",
new TestSolutionReagents(FixedPoint2.New(20), FixedPoint2.New(25)),
new TestSolutionReagents(FixedPoint2.New(10), FixedPoint2.New(5)),
new TestSolutionReagents(FixedPoint2.New(30), FixedPoint2.New(10)),
new TestSolutionReagents(FixedPoint2.Zero, FixedPoint2.New(20))
)
};
}