-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dont show see all udpdates links for pending stats pages
- Loading branch information
1 parent
7e3e1fc
commit 547d3da
Showing
6 changed files
with
91 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
require "test_helper" | ||
|
||
class ContentItemMetadataTest < ActiveSupport::TestCase | ||
class DummyContentItem | ||
include ContentItem::Metadata | ||
attr_reader :content_item, :view_context, :base_path, :public_updated_at, :title, :schema_name | ||
|
||
def initialize(schema_name = "manual") | ||
@view_context = ApplicationController.new.view_context | ||
@content_item = { | ||
"title" => "Super title", | ||
"base_path" => "/a/base/path", | ||
"public_updated_at" => "2022-03-23T08:30:20.000+00:00", | ||
"schema_name" => schema_name, | ||
"details" => { | ||
"body" => "body", | ||
"child_section_groups" => [{ "title" => "thing" }], | ||
"display_date" => "23 March 2000", | ||
}, | ||
"links" => { | ||
"organisations" => [ | ||
{ "content_id" => SecureRandom.uuid, "title" => "blah", "base_path" => "/blah" }, | ||
], | ||
}, | ||
} | ||
@base_path = content_item["base_path"] | ||
@public_updated_at = content_item["public_updated_at"] | ||
@title = content_item["title"] | ||
@schema_name = content_item["schema_name"] | ||
end | ||
end | ||
|
||
test "returns see_updates_link true if published" do | ||
item = DummyContentItem.new | ||
item.stubs(:display_date).returns("23 March 2000") | ||
|
||
expected_publisher_metadata = { | ||
from: ["<a class=\"govuk-link\" href=\"/blah\">blah</a>"], | ||
first_published: "23 March 2000", | ||
last_updated: nil, | ||
see_updates_link: true, | ||
} | ||
|
||
assert_equal expected_publisher_metadata, item.publisher_metadata | ||
end | ||
|
||
test "does not return see_updates_link if pending" do | ||
item = DummyContentItem.new | ||
item.stubs(:display_date).returns("23 March 3000") | ||
|
||
item.content_item["details"]["display_date"] = "23 March 3000" | ||
|
||
expected_publisher_metadata = { | ||
from: ["<a class=\"govuk-link\" href=\"/blah\">blah</a>"], | ||
first_published: "23 March 3000", | ||
last_updated: nil, | ||
} | ||
|
||
assert_equal expected_publisher_metadata, item.publisher_metadata | ||
end | ||
end |