mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
e1f8014acd
If the feature is enabled, staff members can construct a URL and publish a topic for others to browse without the regular Discourse chrome. This is useful if you want to use Discourse like a CMS and publish topics as articles, which can then be embedded into other systems.
28 lines
980 B
Ruby
28 lines
980 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe PublishedPage, type: :model do
|
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
|
|
|
it "has path and url helpers" do
|
|
pp = PublishedPage.create!(topic: topic, slug: 'hello-world')
|
|
expect(pp.path).to eq("/pub/hello-world")
|
|
expect(pp.url).to eq(Discourse.base_url + "/pub/hello-world")
|
|
end
|
|
|
|
it "validates the slug" do
|
|
expect(PublishedPage.new(topic: topic, slug: "this-is-valid")).to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "10_things_i_hate_about_slugs")).to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "YELLING")).to be_valid
|
|
|
|
expect(PublishedPage.new(topic: topic, slug: "how about some space")).not_to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "slugs are %%%%")).not_to be_valid
|
|
|
|
expect(PublishedPage.new(topic: topic, slug: "check-slug")).not_to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "by-topic")).not_to be_valid
|
|
end
|
|
|
|
end
|