0
0

Add G1 manifolds
All checks were successful
Test API / test (push) Successful in 1m22s

This commit is contained in:
Serghei Cebotari 2024-01-27 15:09:26 +03:00
parent bcc833852b
commit 2ca3dd6a3f
2 changed files with 32 additions and 0 deletions

View File

@ -132,4 +132,9 @@ public class RautitanFittingsTests : ProductQueryModifierTests
[TestCase("Ниппель", "К-т двух резьбозажим. нипелей с нар.резьбой 1/2х3/4")]
public void NippelTest(string query, string modified)
=> Invoke(productType: "Ниппель", query, modified);
[TestCase("Распределительный коллектор G1 2 отвода G 3/4", "Распределительный коллектор G1 2")]
[TestCase("Коллектор Квартирный с отсекающими кранами, латунь ДУ20, НР-ВР 3/4\", 3 контура НР 1/2", "Распределительный коллектор G1 3")]
public void ManifoldG1Test(string query, string modified)
=> Invoke(productType: "Коллектор G1", query, modified);
}

View File

@ -0,0 +1,27 @@
using System.Text.RegularExpressions;
namespace RhSolutions.MLModifiers.DrinkingWaterHeatingFittings;
[MLModifierKey("Коллектор G1")]
public class ManifoldG1 : DrinkingWaterHeatingFitting
{
private static readonly Regex _portsCount =
new(@"([\b\D]|^)?(?<Ports>2|3|4)([\b\D]|$)");
protected override string _title => "Распределительный коллектор G1";
public override bool TryQueryModify(string input, out string output)
{
var match = _portsCount.Match(input);
if (match.Success)
{
output = $"{_title} {match.Groups["Ports"]}";
return true;
}
else
{
output = string.Empty;
return false;
}
}
}