Skip to content

groupdocs-metadata/GroupDocs.Metadata.Mcp.Tests

Repository files navigation

GroupDocs.Metadata.Mcp.Tests

Integration tests for the GroupDocs.Metadata.Mcp NuGet package — an MCP server that exposes GroupDocs.Metadata as AI-callable tools.

This repository validates the published NuGet artifact end-to-end: it launches the server via dnx, connects as an MCP client, and exercises every advertised tool. It also doubles as a copy-pasteable set of example configs and user-facing how-to guides for every deployment channel.

Documentation

What gets tested

Area Covered by
Package installs and starts via dnx McpServerFixture
MCP handshake, server info, version ToolDiscoveryTests
ReadMetadata — PDF + JPEG, schema + values ReadMetadataTests
RemoveMetadata — output file + read-back check RemoveMetadataTests
Unknown / corrupted files, password parameter ErrorHandlingTests

Running locally

Requires .NET 10 SDK.

dotnet test

Test a specific published version:

dotnet test -p:McpPackageVersion=26.4.4
# or
MCP_PACKAGE_VERSION=26.4.4 dotnet test

The first run downloads the NuGet package — subsequent runs are cached.

CI

.github/workflows/integration.yml runs on:

  • Every push / PR.
  • Nightly cron — catches regressions in nuget.org, the dnx shim, or the .NET runtime.
  • workflow_dispatch with a package_version input — manual smoke of any version.
  • repository_dispatch (nuget-published) — fires from the main repo's publish pipeline so every release is smoke-tested against live nuget.org. See Release smoke hook.

Matrix: ubuntu-latest, windows-latest, macos-latest.

Release smoke hook

To auto-verify each release, add this step to the main repo's publish workflow after the dotnet nuget push step:

- name: Dispatch smoke tests
  env:
    GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  run: |
    gh api repos/groupdocs-metadata/GroupDocs.Metadata.Mcp.Tests/dispatches \
      -f event_type=nuget-published \
      -f 'client_payload[package_version]=${{ steps.version.outputs.version }}'

Evaluation vs licensed mode

GroupDocs.Metadata refuses to Save() any file in evaluation mode — so RemoveMetadata always returns an error unless a license is configured. Tests branch on GROUPDOCS_LICENSE_PATH:

  • Unset (default): RemoveMetadata_InEvaluationMode_ReturnsErrorResponse runs and verifies the tool fails gracefully. Licensed-mode tests no-op.
  • Set: Licensed tests run — they assert the cleaned file is produced and is re-readable by ReadMetadata.

For CI, store a base64-encoded .lic file as repo secret GROUPDOCS_LICENSE — the workflow decodes it into $RUNNER_TEMP and exports GROUPDOCS_LICENSE_PATH automatically.

Fixture documents

Sample documents are built from byte-arrays in SampleDocuments.cs at test startup — no binary files are checked into this repo.

To add a real-world fixture, drop it into sample-docs/ and write a test that references it by filename. The project auto-copies everything in sample-docs/ to the test output.

Using this repo as a starter

Copy configs from examples/:

License

MIT — see LICENSE.

About

GroupDocs.Metadata for .NET MCP server integration tests

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors