opencode-rails — production-grade Rails integration for OpenCode. Rails companion to opencode-ruby. ActiveRecord-aware session lifecycle (idempotent ensure!/recreate!/abort! with row-level locks), a Turn orchestrator driving the Reply state machine and recovering from session-not-found, an artifact pipeline backed by ActiveStorage, sandbox seeding, and tool-display value objects for Turbo Stream broadcasts. Drop into any Rails 7.1+ app that wants production-grade OpenCode streaming without rolling boilerplate. What this version ships: - Opencode::Session (AR-coupled lifecycle, row-level locks) - Opencode::Turn (Reply state machine, session-not-found recovery) - Opencode::Exchange (one turn = one request/response unit) - Opencode::Impostor (deterministic mock for tests) - Opencode::Sandbox / SandboxFile (per-session FS scratch space) - Opencode::Transform (host-rendered artifact pipeline) - Opencode::Artifact / MessageArtifacts (ActiveStorage-backed) - Opencode::UploadedFilesPrompt (system-prompt builder) - Opencode::ToolDisplay (Turbo Stream value objects) - Opencode::ErrorReporter (pluggable adapter — Honeybadger/Sentry/etc.) - examples/rails_integration.rb — canonical wiring blueprint 53 smoke tests. CI on Ruby 3.2/3.3/3.4. Ruby >= 3.2. Runtime deps: opencode-ruby = 0.0.1.alpha2, activerecord/activestorage/activesupport >= 7.1, < 9.0. See CHANGELOG.md for the alpha1 -> alpha2 delta.
27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
# Contract smoke for Opencode::MessageArtifacts (the idempotent
|
|
# ActiveStorage-backed artifact attachment pipeline). Behavioral
|
|
# coverage — including ActiveStorage attachment, Transform application,
|
|
# error reporting via Opencode::ErrorReporter — lives in the host app.
|
|
class Opencode::MessageArtifactsTest < Minitest::Test
|
|
def test_initialize_takes_message_feature_and_optional_transforms
|
|
params = Opencode::MessageArtifacts.instance_method(:initialize).parameters
|
|
by_kind = params.group_by(&:first).transform_values { |list| list.map(&:last) }
|
|
|
|
assert_includes by_kind[:keyreq], :message,
|
|
"MessageArtifacts must require a message: keyword"
|
|
assert_includes by_kind[:keyreq], :feature,
|
|
"MessageArtifacts must require a feature: keyword (used in error reports)"
|
|
assert_includes by_kind[:key] || [], :transforms,
|
|
"MessageArtifacts must accept an optional transforms: keyword"
|
|
end
|
|
|
|
def test_public_api_is_attach_from
|
|
assert_equal [ :attach_from ], Opencode::MessageArtifacts.instance_methods(false),
|
|
"MessageArtifacts's only public verb is #attach_from"
|
|
end
|
|
end
|