Skip to main content

Microsoft Agents Testing

PyPI version

Testing utilities for the Microsoft 365 Agents SDK for Python. This package provides an in-memory channel adapter, fluent conversation assertions, and a mock user-token client so agent behavior can be tested without a live channel or token service.

Release Notes

Version Date Release Notes
1.7.0 2026-09-17 1.7.0 Release Notes
1.5.0 2026-08-26 1.5.0 Release Notes

Features

  • TestAdapter runs activities through the normal middleware and agent pipeline while capturing outgoing activities in memory.
  • TestFlow provides fluent helpers for sending activities and asserting replies in order.
  • MockUserTokenClient supports stored tokens, magic codes, sign-out, token status, and token-exchange scenarios.
  • Async-first APIs work with the SDK's standard TurnContext and ChannelAdapter abstractions.

Installation

pip install microsoft-agents-testing

Quick Start

import pytest

from microsoft_agents.hosting.core import TurnContext
from microsoft_agents.testing import TestAdapter, TestFlow


@pytest.mark.asyncio
async def test_echo_agent():
    adapter = TestAdapter()

    async def on_turn(context: TurnContext):
        await context.send_activity(f"Echo: {context.activity.text}")

    await (
        TestFlow(adapter, on_turn)
        .send("hello")
        .assert_reply("Echo: hello")
        .assert_no_more_replies()
        .start_test()
    )

Reply Assertions

Replies can be matched by exact text, partial text, activity properties, or a custom synchronous or asynchronous validator:

from microsoft_agents.activity import Activity, ActivityTypes


def validate_reply(reply: Activity):
    assert reply.type == ActivityTypes.message
    assert reply.text is not None
    assert reply.text.startswith("Hello")


await (
    TestFlow(adapter, on_turn)
    .send("hi")
    .assert_reply_contains("Hello")
    .send("details")
    .assert_reply(validate_reply)
    .start_test()
)

TestFlow also supports conversation updates, typing indicators, delays, mixed activity transcripts, and configurable reply timeouts.

Testing OAuth Flows

TestAdapter uses MockUserTokenClient by default. Add a token to test an already-authenticated user:

adapter = TestAdapter(channel_id="msteams")

adapter.add_user_token(
    connection_name="my-connection",
    channel_id="msteams",
    user_id="user1",
    token="test-token",
)

Token exchange can be configured in the same way:

adapter.add_exchangeable_token(
    connection_name="my-connection",
    channel_id="msteams",
    user_id="user1",
    exchangeable_item="exchange-token",
    token="exchanged-token",
)

These tokens are stored only in memory and are intended exclusively for tests.

Scope

The adapter models the turn-processing boundary needed by unit tests. It does not contact Connector Service, create real proactive conversations, or emulate channel-specific delivery behavior.

Release files for microsoft-agents-testing 1.7.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for microsoft-agents-testing 1.7.0
File Size Uploaded
microsoft_agents_testing-1.7.0.tar.gz 16.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for microsoft-agents-testing 1.7.0
File Interpreter ABI Platform
microsoft_agents_testing-1.7.0-py3-none-any.whl Python 3 none any Details

Total release size: 34.0 kB

Release files / microsoft_agents_testing-1.7.0.tar.gz

Download URL microsoft_agents_testing-1.7.0.tar.gz
Size 16.2 kB
Tags Source
SHA-256 checksum
How to use checksums
6c24b751dc6e242fef6951429649410cd845eeeae77a9527ccc3925129c6cb22
BLAKE2b-256 checksum
How to use checksums
b085857de1b7e6640b53b5368ab1d117bf9c09fed0b0aee82faf7b298b749be6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via RestSharp/106.13.0.0

Release files / microsoft_agents_testing-1.7.0-py3-none-any.whl

Download URL microsoft_agents_testing-1.7.0-py3-none-any.whl
Size 17.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ff3af8b98290b05fb8ec4a461bb040a9d05b1a96ff5b8baad358c79c0ee6983d
BLAKE2b-256 checksum
How to use checksums
be858173573ce768b76ad47a53fe3ab5d8aecb70d5a6cfbb225b2f7b157f0e74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via RestSharp/106.13.0.0
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page