public async Task AssetDelete_Execute_EndToEnd() { var name1 = $"{GetRandomSchemaName.Substring(0, 10)}.jpg"; await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); var posted1 = await AttachmentClient.CreateAsset("aut", name1, MimeTypeMap.GetMimeType("jpg"), AssetLoader.AsStream(AssetLoader.App1Asset2Name)); await AssetStories.DeleteAsset(AttachmentDeleteSystemUnderTest, "aut", posted1.Id); await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); }
public async Task AssetImport_Execute_EndToEnd() { var name1 = $"{GetRandomSchemaName.Substring(0, 10)}.jpg"; await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); await AssetStories.ImportAsset(AttachmentImportSystemUnderTest, "aut", name1, AssetLoader.AsPath(AssetLoader.App1Asset2Name)); var item1 = await AttachmentClient.GetAssetByNameOrDefault("aut", name1); item1.Should().NotBeNull(); item1.IsImage.Should().BeTrue(); await AttachmentClient.DeleteAsset("aut", item1.Id); await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); }
public async Task AssetTag_Execute_EndToEnd() { var name1 = $"{GetRandomSchemaName.Substring(0, 10)}.jpg"; await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); var posted1 = await AttachmentClient.CreateAsset("aut", name1, MimeTypeMap.GetMimeType("jpg"), AssetLoader.AsStream(AssetLoader.App1Asset2Name)); var updatedTags = posted1.Tags.Append("tag-a").Append("tag-b").ToArray(); await AssetStories.TagAsset(AttachmentTagSystemUnderTest, "aut", posted1.Id, updatedTags); var updated1 = await AttachmentClient.GetAssetByNameOrDefault("aut", name1); updated1.Should().NotBeNull(); updated1.Tags.Should().Contain(updatedTags); await AttachmentClient.DeleteAsset("aut", posted1.Id); await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); }
public async Task AssetList_Execute_EndToEnd() { var name1 = $"{GetRandomSchemaName.Substring(0, 10)}.jpg"; var name2 = $"{GetRandomSchemaName.Substring(0, 10)}.jpg"; await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); var posted1 = await AttachmentClient.CreateAsset("aut", name1, MimeTypeMap.GetMimeType("jpg"), AssetLoader.AsStream(AssetLoader.App1Asset2Name)); var posted2 = await AttachmentClient.CreateAsset("aut", name2, MimeTypeMap.GetMimeType("jpg"), AssetLoader.AsStream(AssetLoader.App1Asset3Name)); await AssetStories.ListAsset(AttachmentListSystemUnderTest, "aut"); // todo : assert expected output to console service await AttachmentClient.DeleteAsset("aut", posted1.Id); await AttachmentClient.DeleteAsset("aut", posted2.Id); await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); }
public async Task AssetUpdate_Execute_EndToEnd() { var name1 = $"{GetRandomSchemaName.Substring(0, 10)}.jpg"; await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); var posted1 = await AttachmentClient.CreateAsset("aut", name1, MimeTypeMap.GetMimeType("jpg"), AssetLoader.AsStream(AssetLoader.App1Asset2Name)); await AssetStories.UpdateAsset(AssetUpdateContentSystemUnderTest, "aut", posted1.Id, AssetLoader.AsPath(AssetLoader.App1Asset3Name)); var updated1 = await AttachmentClient.GetAssetByNameOrDefault("aut", name1); updated1.Should().NotBeNull(); updated1.Id.Should().Be(posted1.Id); updated1.Tags.Should().Contain(posted1.Tags); updated1.FileName.Should().BeEquivalentTo(posted1.FileName); updated1.FileSize.Should().NotBe(posted1.FileSize); await AttachmentClient.DeleteAsset("aut", posted1.Id); await AttachmentClient.AssertNoAttachmentsExist("aut", delay : TimeSpan.FromSeconds(0.5)); }