This commit is contained in:
parent
118761ebc2
commit
bcc833852b
@ -3,11 +3,16 @@ namespace RhSolutions.Api.Tests;
|
||||
|
||||
public class RautitanFittingsTests : ProductQueryModifierTests
|
||||
{
|
||||
[TestCase("Гильза 16", "Монтажная гильза 16")]
|
||||
[TestCase("Гильза 16", "Монтажная гильза 16")]
|
||||
[TestCase("Пресс-втулка 20", "Монтажная гильза 20")]
|
||||
[TestCase("UPONOR Q&E EVOLUTION КОЛЬЦО БЕЛОЕ 16 '900Ф", "Монтажная гильза 16")]
|
||||
public void SleeveTest(string query, string modified)
|
||||
=> Invoke(productType: "Монтажная гильза", query, modified);
|
||||
|
||||
[TestCase("Гофра 16", "Гофротруба защитн.для ПЭ-трубы 16/17")]
|
||||
[TestCase("Гофра 20", "Гофротруба защитн.для ПЭ-трубы 20")]
|
||||
public void ProtectivePipeTest(string query, string modified)
|
||||
=> Invoke(productType: "Гофротруба RAUTITAN", query, modified);
|
||||
|
||||
[TestCase("Фиксирующий желоб для ПЭ-трубы 16", "Фиксирующий желоб для ПЭ-трубы 16/17")]
|
||||
[TestCase("Фиксирующий желоб для ПЭ-трубы 20", "Фиксирующий желоб для ПЭ-трубы 20")]
|
||||
|
@ -0,0 +1,24 @@
|
||||
namespace RhSolutions.MLModifiers.DrinkingWaterHeatingFittings;
|
||||
|
||||
[MLModifierKey("Гофротруба RAUTITAN")]
|
||||
public class ProtectivePipe : DrinkingWaterHeatingFitting
|
||||
{
|
||||
protected override string _title => "Гофротруба защитн.для ПЭ-трубы";
|
||||
|
||||
public override bool TryQueryModify(string input, out string output)
|
||||
{
|
||||
output = string.Empty;
|
||||
var diameterMatch = _diameter.Match(input);
|
||||
if (diameterMatch.Success)
|
||||
{
|
||||
string diameter = diameterMatch.Groups["Diameter"].Value;
|
||||
if (diameter == "16")
|
||||
{
|
||||
diameter += "/17";
|
||||
}
|
||||
output = $"{_title} {diameter}";
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user