Skip to content

Commit

Permalink
feat: tests fix (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
antomys authored Nov 17, 2024
1 parent e3e78fe commit 48ffa1c
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions TelegramExportProcessor.Tests/TestParsing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ public async Task ParseWrapper()
var content =
"""
{
"name": "Ринда моніторить",
"name": "Назва телеграм каналу",
"type": "public_channel",
"id": 1875486764,
"id": 1234567890,
"messages": []
}
""";
var result = ExportParser.ParseChatExport(content);

await Assert.That(result).IsNotNull().And.HasMember(_ => _.Id).EqualTo(1875486764);
await Assert.That(result).IsNotNull().And.HasMember(_ => _.Id).EqualTo(1234567890);

Check warning on line 19 in TelegramExportProcessor.Tests/TestParsing.cs

View workflow job for this annotation

GitHub Actions / build

Dereference of a possibly null reference.

Check warning on line 19 in TelegramExportProcessor.Tests/TestParsing.cs

View workflow job for this annotation

GitHub Actions / build

Dereference of a possibly null reference.
}

[Test]
Expand All @@ -25,19 +25,19 @@ public async Task ParseSystemMessage()
var content =
"""
{
"name": "Ринда моніторить",
"name": "Назва телеграм каналу",
"type": "public_channel",
"id": 1875486764,
"id": 1234567890,
"messages": [
{
"id": 1,
"type": "service",
"date": "2023-04-04T03:06:29",
"date_unixtime": "1680559589",
"actor": "Ринда моніторить",
"actor_id": "channel1875486764",
"actor": "Назва телеграм каналу",
"actor_id": "channel1234567890",
"action": "create_channel",
"title": "GDZ UA",
"title": "Some Title",
"text": "",
"text_entities": []
}
Expand All @@ -57,9 +57,9 @@ public async Task ParseSimpleMessage()
var content =
"""
{
"name": "Ринда моніторить",
"name": "Назва телеграм каналу",
"type": "public_channel",
"id": 1875486764,
"id": 1234567890,
"messages": [
{
"id": 192,
Expand All @@ -68,13 +68,13 @@ public async Task ParseSimpleMessage()
"date_unixtime": "1685315607",
"edited": "2023-09-12T22:29:00",
"edited_unixtime": "1694539740",
"from": "Ринда моніторить",
"from_id": "channel1875486764",
"text": "✈️БПЛА→Захід через Київщину/Житомирщину",
"from": "Назва телеграм каналу",
"from_id": "channel1234567890",
"text": "✈Текст повідомленння",
"text_entities": [
{
"type": "plain",
"text": "✈️БПЛА→Захід через Київщину/Житомирщину"
"text": "✈Текст повідомленння"
}
],
"reactions": [
Expand Down Expand Up @@ -111,9 +111,9 @@ public async Task ParseComplexTextMessage()
var content =
"""
{
"name": "Ринда моніторить",
"name": "Назва телеграм каналу",
"type": "public_channel",
"id": 1875486764,
"id": 1234567890,
"messages": [
{
"id": 192,
Expand All @@ -122,19 +122,19 @@ public async Task ParseComplexTextMessage()
"date_unixtime": "1685315607",
"edited": "2023-09-12T22:29:00",
"edited_unixtime": "1694539740",
"from": "Ринда моніторить",
"from_id": "channel1875486764",
"from": "Назва телеграм каналу",
"from_id": "channel1234567890",
"text": [
{
"type": "italic",
"text": "❗️Загроза «Шахедів» з південного напрямку."
"text": "❗Текст іншого повідомленння"
},
""
],
"text_entities": [
{
"type": "plain",
"text": "✈️БПЛА→Захід через Київщину/Житомирщину"
"text": "✈Текст повідомленння"
}
],
"reactions": [
Expand Down

0 comments on commit 48ffa1c

Please sign in to comment.