Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Савенко Дмитрий #226

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

Asrom11
Copy link

@Asrom11 Asrom11 commented Dec 11, 2024

config.For<double>()
.SetCulture(germanCulture));

result.Should().Contain("Height = 180,5");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Для этого теста как будто кейсов не хватает, чтобы точно проверить, что он работает.
Предлагаю сделать два TestCase, где будут разные ожидаемые поведения (например, 180.5 и 180,5).

[Test]
public void PrintToString_WithCollection_ShouldPrintCollectionElements()
{
testPerson.PrintToString()
Copy link

@SlavikGh0st SlavikGh0st Dec 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

В этом тесте действие перемешалось с проверкой - давай всё-таки разделим.

}

[Test]
public void PrintToString_CustomSerializer_ShouldUseCustomFormat()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Чутка порядка наведём: у тебя есть тест PrintToString_CustomPropertySerializer_ShouldUseCustomFormat, давай этот тест переименуем, чтобы точно обозначить, что в нём сериализация для типа устанавливается.

}

[Test]
public void PrintToString_ExcludeDictionary_ShouldNotPrintDictionary()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Этот тест лишний - по сути он дублирует исключение сериализации свойства.


parsedObjects[obj] = nestingLevel;

switch (obj)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Можно на более красивый switch переделать:
image

: Serialize(propertyValue, nestingLevel, parsedObjects);
}

private PropertyInfo GetProperty<TProperty>(Expression<Func<TOwner, TProperty>> memberSelector)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

статический метод

return Serialize(obj, 0, new Dictionary<object, int>());
}

private string Serialize(object obj, int nestingLevel, Dictionary<object, int> parsedObjects)
Copy link

@SlavikGh0st SlavikGh0st Dec 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут надо пометить, что obj может быть null:

private string Serialize(object? obj, ...)

Отсюда же вытекает, что коллекции TypeSerializers и PropertySerializers могут содержать nullable типы:

public Dictionary<Type, Func<object?, string>> TypeSerializers { get; } = new();
public Dictionary<PropertyInfo, Func<object?, string>> PropertySerializers { get; } = new();

Если это всё проделать, то останется одно неочевидное место поведения в методе SerializeProperty:
image

Convert.ToString может вернуть null, а не строку - непонятно, как это в итоге отразиться на всей логике.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Добавил
Convert.ToString(propertyValue, culture) ?? "null"

private readonly PrintingConfig<TOwner> _config;
private readonly PropertyInfo _propertyInfo;

public PropertyPrintingConfig(PrintingConfig<TOwner> config, PropertyInfo propertyInfo)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Можно использовать PrimaryConstructor:

public class PropertyPrintingConfig<TOwner, TProperty>(PrintingConfig<TOwner> config, PropertyInfo propertyInfo)
{
   ...
}

config.For(p => p.Scores)
.UseSerializer(dict =>
{
var scores = (Dictionary<string, int>)dict;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Зачем тут этот каст? Вроде и без него работает...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants