mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-09 18:11:26 +00:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// ImageMessageTests.cs
|
|||
|
|
|||
|
using System;
|
|||
|
using System.IO;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using FluentAssertions;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace AutoGen.Tests;
|
|||
|
|
|||
|
public class ImageMessageTests
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public async Task ItCreateFromLocalImage()
|
|||
|
{
|
|||
|
var image = Path.Combine("testData", "images", "background.png");
|
|||
|
var binary = File.ReadAllBytes(image);
|
|||
|
var base64 = Convert.ToBase64String(binary);
|
|||
|
var imageMessage = new ImageMessage(Role.User, BinaryData.FromBytes(binary, "image/png"));
|
|||
|
|
|||
|
imageMessage.MimeType.Should().Be("image/png");
|
|||
|
imageMessage.BuildDataUri().Should().Be($"data:image/png;base64,{base64}");
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public async Task ItCreateFromUrl()
|
|||
|
{
|
|||
|
var image = Path.Combine("testData", "images", "background.png");
|
|||
|
var fullPath = Path.GetFullPath(image);
|
|||
|
var localUrl = new Uri(fullPath).AbsoluteUri;
|
|||
|
var imageMessage = new ImageMessage(Role.User, localUrl);
|
|||
|
|
|||
|
imageMessage.Url.Should().Be(localUrl);
|
|||
|
imageMessage.MimeType.Should().Be("image/png");
|
|||
|
imageMessage.Data.Should().BeNull();
|
|||
|
}
|
|||
|
}
|