Sha256: 07d46bffb4b69d89be14c8e242a1b3801ae16e15c704efbd0d07d37213b20144

Contents?: true

Size: 1.76 KB

Versions: 66

Compression:

Stored size: 1.76 KB

Contents

# frozen_string_literal: true

shared_examples "promote amendment" do
  describe "when the form is valid" do
    it "broadcasts ok" do
      expect { command.call }.to broadcast(:ok)
    end

    it "creates an amendable type resource" do
      expect { command.call }.to change(amendable.class, :count).by(1)
    end

    it "traces the action", versioning: true do
      expect(Decidim.traceability)
        .to receive(:perform_action!)
        .with(
          "promote",
          emendation.resource_manifest.model_class_name.constantize,
          emendation.creator_author,
          visibility: "public-only",
          promoted_from: emendation.id
        ).and_call_original

      expect { command.call }.to change(Decidim::ActionLog, :count).by(1)
    end

    it "notifies the change" do
      expect(Decidim::EventsManager)
        .to receive(:publish)
        .with(
          event: "decidim.events.amendments.amendment_promoted",
          event_class: Decidim::Amendable::EmendationPromotedEvent,
          resource: emendation,
          affected_users: kind_of(Array),
          followers: kind_of(Array)
        )

      command.call
    end
  end

  context "when the form is not valid" do
    let(:form) { Decidim::Amendable::PromoteForm.from_params(id: nil) }

    it "broadcasts invalid" do
      expect { command.call }.to broadcast(:invalid)
    end
  end

  context "when current user is not the author of the amendment" do
    let(:current_user) { other_user }

    it "broadcasts invalid" do
      expect { command.call }.to broadcast(:invalid)
    end
  end

  context "when amendment is not rejected" do
    before do
      amendment.update(state: "evaluating")
    end

    it "broadcasts invalid" do
      expect { command.call }.to broadcast(:invalid)
    end
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
decidim-core-0.29.2 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.28.5 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.29.1 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.28.4 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.27.9 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.29.0 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.28.3 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.27.8 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.29.0.rc4 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.29.0.rc3 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.29.0.rc2 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.29.0.rc1 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.28.2 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.27.7 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.28.1 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.27.6 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.26.10 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.26.9 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.28.0 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb
decidim-core-0.27.5 lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb