DEV Community

Richard
Richard

Posted on

E2E Test: Oxide CMS to Dev.to Integration

Testing Oxide CMS Dev.to Plugin

This article tests the Dev.to plugin export workflow from Oxide CMS.

What We're Testing

  • Content creation in Oxide CMS
  • Export to Dev.to via plugin system
  • Full CRUD support (create, read, update, delete)
  • Bidirectional synchronization

Plugin Architecture

The Dev.to adapter is implemented as a dynamic plugin using Rust's FFI system:

pub struct DevToAdapterPlugin {
    http_client: Option<Client>,
}
Enter fullscreen mode Exit fullscreen mode

API Integration

  • Platform: Dev.to (Forem)
  • API: REST API with API key authentication
  • Operations: Full CRUD support
  • Format: Markdown with frontmatter

Test Metadata

  • Date: October 13, 2025
  • Purpose: End-to-end integration testing
  • CMS: Oxide CMS MVP
  • Tags: testing, cms, devto, rust

This article was automatically generated for E2E testing purposes.

Top comments (0)