Giter Club home page Giter Club logo

Comments (2)

tfausak avatar tfausak commented on August 26, 2024

We'd have to add a dependency on ActiveRecord to do this. Looks like it'd be pretty straightforward, though:

require 'active_record'
module ActiveInteraction
  class Base
    def self.run(options = {})
      new(options).tap do |interaction|
        if interaction.valid?
          result = nil
          ::ActiveRecord::Base.transaction do
            result = interaction.execute
          end
          interaction.instance_variable_set(:@result, result)
        end
      end
    end
  end
end

Testing it would be a little difficult.

from active_interaction.

tfausak avatar tfausak commented on August 26, 2024

I just want to reiterate that testing this is a pain in the ass. The implementation is a piece of cake:

module ActiveInteraction
  class Base
    begin
      require 'active_record'
      def self.transaction
        ::ActiveRecord::Base.transaction do
          yield
        end
      end
    rescue LoadError
      def self.transaction
        yield
      end
    end
    private_class_method :transaction

    def self.run(options = {})
      new(options).tap do |interaction|
        if interaction.valid?
          result = transaction { interaction.execute }
          interaction.instance_variable_set(:@result, result)
        end
      end
    end
  end
end

It's simple enough that I wouldn't feel bad about shipping it without tests, but that feels dirty. I just can't think of a clean way to set up a test that:

  1. Runs with and without transactions enabled. In other words, with ActiveRecord, then without it.
  2. Sets up a database connection and a model and saves instances of the model to the database. This is probably the least challenging part, but it's still worth mentioning.
  3. Checks nested transactions.

On top of all that, ActiveRecord should be disabled for the rest of the test suite because it'll slow it down somewhat.

from active_interaction.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.