Sha256: 64ede0f3ecaa6c5dfbd6dd7854e37ae839f2a47b75e449cdea11d7c2ce46b035

Contents?: true

Size: 1.31 KB

Versions: 9

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

require "spec_helper"

module Decidim
  module Admin
    describe UpdateStaticPage, :db do
      describe "call" do
        let(:organization) { create(:organization) }
        let(:page) { create(:static_page, organization: organization) }
        let(:form) do
          StaticPageForm.from_params(
            static_page: page.attributes.merge(slug: "new-slug")
          ).with_context(
            current_organization: page.organization
          )
        end
        let(:command) { described_class.new(page, form) }

        describe "when the form is not valid" do
          before do
            expect(form).to receive(:invalid?).and_return(true)
          end

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

          it "doesn't update the page" do
            command.call
            page.reload

            expect(page.slug).not_to eq("new_slug")
          end
        end

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

          it "updates the page in the organization" do
            command.call
            page.reload

            expect(page.slug).to eq("new-slug")
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
decidim-0.4.4 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.4.3 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.4.2 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.4.1 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.4.0 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.3.2 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.3.1 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.3.0 decidim-admin/spec/commands/update_static_page_spec.rb
decidim-0.2.0 decidim-admin/spec/commands/update_static_page_spec.rb