|
|
|
@ -91,7 +91,7 @@ public class FilterSpecs
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task I_can_filter_the_export_to_only_include_messages_that_contain_guild_invites()
|
|
|
|
|
public async Task I_can_filter_the_export_to_only_include_messages_that_have_been_pinned()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
using var file = TempFile.Create();
|
|
|
|
@ -103,7 +103,7 @@ public class FilterSpecs
|
|
|
|
|
ChannelIds = [ChannelIds.FilterTestCases],
|
|
|
|
|
ExportFormat = ExportFormat.Json,
|
|
|
|
|
OutputPath = file.Path,
|
|
|
|
|
MessageFilter = MessageFilter.Parse("has:invite")
|
|
|
|
|
MessageFilter = MessageFilter.Parse("has:pin")
|
|
|
|
|
}.ExecuteAsync(new FakeConsole());
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
@ -112,11 +112,11 @@ public class FilterSpecs
|
|
|
|
|
.EnumerateArray()
|
|
|
|
|
.Select(j => j.GetProperty("content").GetString())
|
|
|
|
|
.Should()
|
|
|
|
|
.AllBe("This has invite");
|
|
|
|
|
.AllBe("This is pinned");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task I_can_filter_the_export_to_only_include_messages_that_have_been_pinned()
|
|
|
|
|
public async Task I_can_filter_the_export_to_only_include_messages_that_contain_guild_invites()
|
|
|
|
|
{
|
|
|
|
|
// Arrange
|
|
|
|
|
using var file = TempFile.Create();
|
|
|
|
@ -128,7 +128,7 @@ public class FilterSpecs
|
|
|
|
|
ChannelIds = [ChannelIds.FilterTestCases],
|
|
|
|
|
ExportFormat = ExportFormat.Json,
|
|
|
|
|
OutputPath = file.Path,
|
|
|
|
|
MessageFilter = MessageFilter.Parse("has:pin")
|
|
|
|
|
MessageFilter = MessageFilter.Parse("has:invite")
|
|
|
|
|
}.ExecuteAsync(new FakeConsole());
|
|
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
@ -137,7 +137,7 @@ public class FilterSpecs
|
|
|
|
|
.EnumerateArray()
|
|
|
|
|
.Select(j => j.GetProperty("content").GetString())
|
|
|
|
|
.Should()
|
|
|
|
|
.AllBe("This is pinned");
|
|
|
|
|
.AllBe("This has invite");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|