first pass and feature add ons

This commit is contained in:
Jacob Dubin
2026-04-11 21:19:35 -05:00
parent b1fa225d1d
commit d7ea8eebab
13 changed files with 918 additions and 45 deletions

View File

@@ -61,4 +61,82 @@ public sealed class JiboCloudProtocolServiceTests
Assert.Equal("robot", payload.RootElement.GetProperty("subsystem").GetString());
Assert.True(payload.RootElement.TryGetProperty("url", out _));
}
[Fact]
public async Task PutEventsAsync_ReturnsUploadUrl()
{
var result = await _service.DispatchAsync(new ProtocolEnvelope
{
HostName = "api.jibo.com",
Method = "POST",
ServicePrefix = "Log_20160715",
Operation = "PutEventsAsync",
BodyText = "{}"
});
using var payload = JsonDocument.Parse(result.BodyText);
Assert.Equal("gzip", payload.RootElement.GetProperty("contentEncoding").GetString());
Assert.Contains("/upload/log-events", payload.RootElement.GetProperty("uploadUrl").GetString());
}
[Fact]
public async Task MediaCreateAndGet_ReturnsCreatedItem()
{
var created = await _service.DispatchAsync(new ProtocolEnvelope
{
HostName = "api.jibo.com",
Method = "POST",
ServicePrefix = "Media_20160725",
Operation = "Create",
BodyText = """{"path":"/media/test-item","type":"image","reference":"demo"}"""
});
using var createdPayload = JsonDocument.Parse(created.BodyText);
Assert.Equal("/media/test-item", createdPayload.RootElement.GetProperty("path").GetString());
var fetched = await _service.DispatchAsync(new ProtocolEnvelope
{
HostName = "api.jibo.com",
Method = "POST",
ServicePrefix = "Media_20160725",
Operation = "Get",
BodyText = """{"paths":["/media/test-item"]}"""
});
using var fetchedPayload = JsonDocument.Parse(fetched.BodyText);
Assert.Single(fetchedPayload.RootElement.EnumerateArray());
}
[Fact]
public async Task KeyCreateSymmetricKey_ReturnsKeyPayload()
{
var result = await _service.DispatchAsync(new ProtocolEnvelope
{
HostName = "api.jibo.com",
Method = "POST",
ServicePrefix = "Key_20160715",
Operation = "CreateSymmetricKey",
BodyText = """{"loopId":"openjibo-default-loop"}"""
});
using var payload = JsonDocument.Parse(result.BodyText);
Assert.Equal("openjibo-default-loop", payload.RootElement.GetProperty("loopId").GetString());
Assert.False(string.IsNullOrWhiteSpace(payload.RootElement.GetProperty("key").GetString()));
}
[Fact]
public async Task PersonListHolidays_ReturnsHoliday()
{
var result = await _service.DispatchAsync(new ProtocolEnvelope
{
HostName = "api.jibo.com",
Method = "POST",
ServicePrefix = "Person_20160715",
Operation = "ListHolidays",
BodyText = "{}"
});
using var payload = JsonDocument.Parse(result.BodyText);
Assert.Single(payload.RootElement.EnumerateArray());
}
}