Compare commits
No commits in common. "d4a9149daaff62cf3d991ee166e23a22574f5a6f" and "c13f4ddda1ec917c8957db2bcc397c5bc80c39fe" have entirely different histories.
d4a9149daa
...
c13f4ddda1
@ -3,17 +3,17 @@ namespace RhSolutions.Api.Tests;
|
||||
|
||||
public class RautitanPipesTests : ProductParsersTests
|
||||
{
|
||||
[TestCase("Унив.труба RAUTITAN flex 16x2,2, бухта 100м", "Труба РЕХАУ FLEX 16x2,2 бухта")]
|
||||
[TestCase("Труба flex 16", "Труба РЕХАУ FLEX 16x2,2 бухта")]
|
||||
[TestCase("Унив.труба RAUTITAN flex 32x4,4, прям.отрезки 6м", "Труба РЕХАУ FLEX 32x4,4 прям.отрезки")]
|
||||
[TestCase("Труба flex 32", "Труба РЕХАУ FLEX 32x4,4 прям.отрезки")]
|
||||
[TestCase("Унив.труба RAUTITAN flex 16x2,2, бухта 100м", "Труба Flex 16x2,2 бухта")]
|
||||
[TestCase("Труба flex 16", "Труба Flex 16x2,2 бухта")]
|
||||
[TestCase("Унив.труба RAUTITAN flex 32x4,4, прям.отрезки 6м", "Труба Flex 32x4,4 прям.отрезки")]
|
||||
[TestCase("Труба flex 32", "Труба Flex 32x4,4 прям.отрезки")]
|
||||
public void FlexPipeTest(string query, string modified)
|
||||
=> Invoke(productType: "Flex", query, modified);
|
||||
|
||||
[TestCase("Унив. труба RAUTITAN pink+ 16х2,2 мм, бухта 120 м", "Труба РЕХАУ PINK 16х2,2 бухта")]
|
||||
[TestCase("труба pink 16", "Труба РЕХАУ PINK 16х2,2 бухта")]
|
||||
[TestCase("Унив. труба RAUTITAN pink+ 32х4,4 мм, бухта 50 м", "Труба РЕХАУ PINK 32х4,4 бухта")]
|
||||
[TestCase("труба pink 32", "Труба РЕХАУ PINK 32х4,4 прямые отрезки")]
|
||||
[TestCase("Унив. труба RAUTITAN pink+ 16х2,2 мм, бухта 120 м", "Труба Pink+ 16х2,2 бухта")]
|
||||
[TestCase("труба pink 16", "Труба Pink+ 16х2,2 бухта")]
|
||||
[TestCase("Унив. труба RAUTITAN pink+ 32х4,4 мм, бухта 50 м", "Труба Pink+ 32х4,4 бухта")]
|
||||
[TestCase("труба pink 32", "Труба Pink+ 32х4,4 прямые отрезки")]
|
||||
public void PinkPipeTest(string query, string modified)
|
||||
=> Invoke(productType: "Pink", query, modified);
|
||||
|
||||
@ -21,12 +21,11 @@ public class RautitanPipesTests : ProductParsersTests
|
||||
[TestCase("труба stabil 16", "Труба Stabil -PLATINUM 16,2х2,6 бухта")]
|
||||
[TestCase("Универсальн.труба RAUTITAN stabil 32х4,7 мм, прям.отрезки 5м", "Труба Stabil -PLATINUM 32х4,7 прям.отрезки")]
|
||||
[TestCase("труба stabil 32", "Труба Stabil -PLATINUM 32х4,7 прям.отрезки")]
|
||||
[TestCase("труба 50", "Труба РЕХАУ FLEX 50x6,9 прям.отрезки")]
|
||||
public void StabilPipeTest(string query, string modified)
|
||||
=> Invoke(productType: "Stabil", query, modified);
|
||||
|
||||
[TestCase("Отоп.труба РЕХАУ BLACK 16х2,2 мм, бухта 200 м", "Труба РЕХАУ BLACK 16х2,2 бухта")]
|
||||
[TestCase("труба BLACK 16", "Труба РЕХАУ BLACK 16х2,2 бухта")]
|
||||
[TestCase("Отоп.труба РЕХАУ BLACK 16х2,2 мм, бухта 200 м", "Труба Black 16х2,2 бухта")]
|
||||
[TestCase("труба BLACK 16", "Труба Black 16х2,2 бухта")]
|
||||
public void BlackPipeTest(string query, string modified)
|
||||
=> Invoke(productType: "Black", query, modified);
|
||||
}
|
@ -3,7 +3,7 @@ namespace RhSolutions.Parsers.Pipes;
|
||||
[ParserKey("Black")]
|
||||
public class BlackPipe : DrinkingWaterHeatingPipe
|
||||
{
|
||||
protected override string _title => "РЕХАУ BLACK";
|
||||
protected override string _title => "Black";
|
||||
protected override Dictionary<int, string> _diameterNames => new()
|
||||
{
|
||||
[16] = "16х2,2",
|
||||
|
@ -28,7 +28,7 @@ public abstract class DrinkingWaterHeatingPipe : IProductParser
|
||||
["отр"] = "прям.отрезки"
|
||||
};
|
||||
|
||||
public virtual bool TryParse(string input, out string output)
|
||||
public bool TryParse(string input, out string output)
|
||||
{
|
||||
output = string.Empty;
|
||||
var diameterMatch = _diameter.Match(input);
|
||||
|
@ -3,5 +3,5 @@ namespace RhSolutions.Parsers.Pipes;
|
||||
[ParserKey("Flex")]
|
||||
public class FlexPipe : DrinkingWaterHeatingPipe
|
||||
{
|
||||
protected override string _title => "РЕХАУ FLEX";
|
||||
protected override string _title => "Flex";
|
||||
}
|
@ -3,7 +3,7 @@ namespace RhSolutions.Parsers.Pipes;
|
||||
[ParserKey("Pink")]
|
||||
public class PinkPipe : DrinkingWaterHeatingPipe
|
||||
{
|
||||
protected override string _title => "РЕХАУ PINK";
|
||||
protected override string _title => "Pink+";
|
||||
|
||||
protected override Dictionary<string, string> _makeUp => new()
|
||||
{
|
||||
|
@ -14,34 +14,4 @@ public class StabilPipe : DrinkingWaterHeatingPipe
|
||||
[50] = "50x6,9",
|
||||
[63] = "63x8,6"
|
||||
};
|
||||
public override bool TryParse(string input, out string output)
|
||||
{
|
||||
output = string.Empty;
|
||||
var diameterMatch = _diameter.Match(input);
|
||||
if (!diameterMatch.Success)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
var diameter = int.Parse(diameterMatch.Groups["Diameter"].Value);
|
||||
var typeMatch = _type.Match(input);
|
||||
if (diameter > 40)
|
||||
{
|
||||
var flexParser = new FlexPipe();
|
||||
return flexParser.TryParse(input, out output);
|
||||
}
|
||||
if (typeMatch.Success)
|
||||
{
|
||||
var type = typeMatch.Groups["Type"].Value;
|
||||
output = $"Труба {_title} {_diameterNames[diameter]} {_makeUp[type]}";
|
||||
}
|
||||
else if (diameter < 32)
|
||||
{
|
||||
output = $"Труба {_title} {_diameterNames[diameter]} {_makeUp["бухт"]}";
|
||||
}
|
||||
else
|
||||
{
|
||||
output = $"Труба {_title} {_diameterNames[diameter]} {_makeUp["отр"]}";
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user