Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update published_at only after page has been published. #2331

Merged
merged 1 commit into from
May 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions app/models/alchemy/page.rb
Original file line number Diff line number Diff line change
Expand Up @@ -457,14 +457,9 @@ def copy_children_to(new_parent)
end
end

# Creates a public version of the page.
#
# Sets the +published_at+ value to current time
#
# The +published_at+ attribute is used as +cache_key+.
# Creates a public version of the page in the background.
#
def publish!(current_time = Time.current)
update(published_at: current_time)
PublishPageJob.perform_later(id, public_on: current_time)
end

Expand Down
5 changes: 4 additions & 1 deletion app/models/alchemy/page/publisher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ def initialize(page)

# Copies all currently visible elements to the public version of page
#
# Creates a new published version if none exists yet.
# Creates a new published version if none exists yet and updates
# the `published_at` timestamp of the page.
# `published_at` is used as a cache key.
#
# Sends a publish notification to all registered publish targets
#
Expand All @@ -32,6 +34,7 @@ def publish!(public_on:)
end
end
end
page.update(published_at: public_on)
end

Alchemy.publish_targets.each { |p| p.perform_later(page) }
Expand Down
9 changes: 7 additions & 2 deletions spec/controllers/alchemy/admin/pages_controller_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

require "rails_helper"
require "timecop"

RSpec.describe Alchemy::Admin::PagesController do
routes { Alchemy::Engine.routes }
Expand Down Expand Up @@ -50,8 +51,12 @@
let(:page) { create(:alchemy_page) }

it "publishes the page" do
expect_any_instance_of(Alchemy::Page).to receive(:publish!)
post :publish, params: { id: page }
current_time = Time.current
Timecop.freeze(current_time) do
expect {
post :publish, params: { id: page }
}.to have_enqueued_job(Alchemy::PublishPageJob).with(page.id, public_on: current_time)
end
end
end
end
8 changes: 8 additions & 0 deletions spec/models/alchemy/page/publisher_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@
expect { publish }.to change { page.versions.published.count }.by(1)
end

it "updates the public_on timestamp" do
expect {
publish
}.to change {
page.reload.public_on
}.to(current_time)
end

context "with elements" do
include_context "with elements"

Expand Down
26 changes: 3 additions & 23 deletions spec/models/alchemy/page_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1561,30 +1561,10 @@ def copy_children_to(new_parent)
end

describe "#publish!" do
let(:current_time) { Time.current.change(usec: 0) }
let(:page) do
create(:alchemy_page,
public_on: public_on,
public_until: public_until,
published_at: published_at)
end
let(:published_at) { nil }
let(:public_on) { nil }
let(:public_until) { nil }

before do
allow(Time).to receive(:current).and_return(current_time)
end

it "enqueues publish page job" do
expect {
page.publish!
}.to have_enqueued_job(Alchemy::PublishPageJob)
end
let(:page) { create(:alchemy_page) }

it "sets published_at" do
page.publish!
expect(page.published_at).to eq(current_time)
it "enqueues a Alchemy::PublishPageJob" do
expect { page.publish! }.to have_enqueued_job(Alchemy::PublishPageJob)
end
end

Expand Down
4 changes: 2 additions & 2 deletions spec/requests/alchemy/admin/pages_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -634,10 +634,10 @@ module Alchemy
describe "#publish" do
let(:page) { create(:alchemy_page, published_at: 3.days.ago) }

it "should publish the page" do
it "published page in the background" do
expect {
post publish_admin_page_path(page)
}.to change { page.reload.published_at }
}.to have_enqueued_job(Alchemy::PublishPageJob)
end
end

Expand Down