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

Шевелев Георгий #201

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

Conversation

Crazy1beatch
Copy link

No description provided.

Comment on lines 14 to 19
private readonly HashSet<Type> finalTypes = new HashSet<Type>
{
return PrintToString(obj, 0);
typeof(int), typeof(double), typeof(float),
typeof(bool), typeof(long), typeof(string),
typeof(DateTime), typeof(TimeSpan), typeof(Guid)
};

Choose a reason for hiding this comment

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

А как же остальные простые типы? Например, uint, decimal и тд?

На самом деле есть более простой способ узнать, является ли тип простым, не перечисляя все числовые вариации. Небольшая подсказка: посмотри в сторону Type

var identation = new string('\t', nestingLevel + 1);
return obj switch
{
IList collection => SerializeCollection(collection, nestingLevel),

Choose a reason for hiding this comment

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

Кажется, что проверять на список по интерфейсу IList не очень хорошая идея, так как есть ещё более базовые коллекции, которые не будут сериализованы, так как не наследуют IList

};
}

private string SerializeCollection(IList collection, int nestingLevel)

Choose a reason for hiding this comment

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

Давай вытащим конкретные кейсы сериализации в отдельный класс-утилиту для сериализации

[Test]
public void Print_WhenArray()
{
const string excepted = "Person\r\n\tParents = Person[] {\r\n\t\tPerson" +

Choose a reason for hiding this comment

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

Нам с тобой повезло оказаться на одной операционной системе и переварить \r\n на ней. Однако если твой сокомандник окажется на Linux или Mac, то этот тест развалится, так как на них для переноса используется другой символ \n, и строки не будут совпадать. Где-то ты уже используешь Environment.NewLine, давай и тут так же сделаем


namespace ObjectPrintingTests
{
public class ObjectPrinting_Should

Choose a reason for hiding this comment

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

Сейчас если добавить в Person вложенный объект Person с именем Child (условно), то такой тест проходить не будет, так как настройка сериализации задела не только дочерний объект, но ещё и родительский

     var result = ObjectPrinter.For<Person>()
                .ChangeSerializationFor(e => e.Child.Age)
                .To(s => "ВОЗРАСТ")
                .PrintToString(person);

    result.Should().Contain("ВОЗРАСТ", LessThan.Twice());

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