2013-07-16 13:44:07 +08:00
|
|
|
require "spec_helper"
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
describe CategoriesController do
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "create" do
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "requires the user to be logged in" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :post, :create }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "logged in" do
|
2013-02-06 03:16:51 +08:00
|
|
|
before do
|
2014-02-07 11:11:52 +08:00
|
|
|
@user = log_in(:admin)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an exception when they don't have permission to create it" do
|
|
|
|
Guardian.any_instance.expects(:can_create?).with(Category, nil).returns(false)
|
2013-03-14 21:16:57 +08:00
|
|
|
xhr :post, :create, name: 'hello', color: 'ff0', text_color: 'fff'
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_forbidden
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "raises an exception when the name is missing" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :post, :create, color: "ff0", text_color: "fff" }.to raise_error(ActionController::ParameterMissing)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "raises an exception when the color is missing" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :post, :create, name: "hello", text_color: "fff" }.to raise_error(ActionController::ParameterMissing)
|
2013-03-14 21:16:57 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "raises an exception when the text color is missing" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :post, :create, name: "hello", color: "ff0" }.to raise_error(ActionController::ParameterMissing)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "failure" do
|
2013-02-06 03:16:51 +08:00
|
|
|
before do
|
|
|
|
@category = Fabricate(:category, user: @user)
|
2013-07-16 13:44:07 +08:00
|
|
|
xhr :post, :create, name: @category.name, color: "ff0", text_color: "fff"
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2015-01-10 01:04:02 +08:00
|
|
|
it { is_expected.not_to respond_with(:success) }
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "returns errors on a duplicate category name" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(422)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "success" do
|
|
|
|
it "works" do
|
|
|
|
readonly = CategoryGroup.permission_types[:readonly]
|
|
|
|
create_post = CategoryGroup.permission_types[:create_post]
|
|
|
|
|
2014-12-04 08:23:59 +08:00
|
|
|
xhr :post, :create, name: "hello", color: "ff0", text_color: "fff", slug: "hello-cat",
|
2013-12-07 05:39:35 +08:00
|
|
|
auto_close_hours: 72,
|
2013-07-16 13:44:07 +08:00
|
|
|
permissions: {
|
|
|
|
"everyone" => readonly,
|
|
|
|
"staff" => create_post
|
|
|
|
}
|
|
|
|
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(200)
|
2014-05-06 21:41:59 +08:00
|
|
|
category = Category.find_by(name: "hello")
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(category.category_groups.map{|g| [g.group_id, g.permission_type]}.sort).to eq([
|
2013-07-16 13:44:07 +08:00
|
|
|
[Group[:everyone].id, readonly],[Group[:staff].id,create_post]
|
2015-01-10 01:04:02 +08:00
|
|
|
])
|
|
|
|
expect(category.name).to eq("hello")
|
|
|
|
expect(category.slug).to eq("hello-cat")
|
|
|
|
expect(category.color).to eq("ff0")
|
|
|
|
expect(category.auto_close_hours).to eq(72)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "destroy" do
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "requires the user to be logged in" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :delete, :destroy, id: "category"}.to raise_error(Discourse::NotLoggedIn)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "logged in" do
|
2013-02-06 03:16:51 +08:00
|
|
|
before do
|
|
|
|
@user = log_in
|
2013-02-26 00:42:20 +08:00
|
|
|
@category = Fabricate(:category, user: @user)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an exception if they don't have permission to delete it" do
|
|
|
|
Guardian.any_instance.expects(:can_delete_category?).returns(false)
|
|
|
|
xhr :delete, :destroy, id: @category.slug
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_forbidden
|
2013-02-26 00:42:20 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
it "deletes the record" do
|
|
|
|
Guardian.any_instance.expects(:can_delete_category?).returns(true)
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :delete, :destroy, id: @category.slug}.to change(Category, :count).by(-1)
|
2013-02-26 00:42:20 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "update" do
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "requires the user to be logged in" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :put, :update, id: 'category'}.to raise_error(Discourse::NotLoggedIn)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "logged in" do
|
2013-12-17 04:13:43 +08:00
|
|
|
let(:valid_attrs) { {id: @category.id, name: "hello", color: "ff0", text_color: "fff"} }
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
before do
|
2014-02-07 11:11:52 +08:00
|
|
|
@user = log_in(:admin)
|
2013-02-06 03:16:51 +08:00
|
|
|
@category = Fabricate(:category, user: @user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an exception if they don't have permission to edit it" do
|
|
|
|
Guardian.any_instance.expects(:can_edit?).returns(false)
|
2013-03-14 21:16:57 +08:00
|
|
|
xhr :put, :update, id: @category.slug, name: 'hello', color: 'ff0', text_color: 'fff'
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_forbidden
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
it "requires a name" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :put, :update, id: @category.slug, color: 'fff', text_color: '0ff' }.to raise_error(ActionController::ParameterMissing)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
it "requires a color" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :put, :update, id: @category.slug, name: 'asdf', text_color: '0ff' }.to raise_error(ActionController::ParameterMissing)
|
2013-03-14 21:16:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "requires a text color" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :put, :update, id: @category.slug, name: 'asdf', color: 'fff' }.to raise_error(ActionController::ParameterMissing)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "failure" do
|
2013-02-06 03:16:51 +08:00
|
|
|
before do
|
2013-07-16 13:44:07 +08:00
|
|
|
@other_category = Fabricate(:category, name: "Other", user: @user )
|
|
|
|
xhr :put, :update, id: @category.id, name: @other_category.name, color: "ff0", text_color: "fff"
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "returns errors on a duplicate category name" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).not_to be_success
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
it "returns errors on a duplicate category name" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.code.to_i).to eq(422)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-16 18:39:48 +08:00
|
|
|
it "returns 422 if email_in address is already in use for other category" do
|
|
|
|
@other_category = Fabricate(:category, name: "Other", email_in: "mail@examle.com" )
|
|
|
|
xhr :put, :update, id: @category.id, name: "Email", email_in: "mail@examle.com", color: "ff0", text_color: "fff"
|
|
|
|
|
|
|
|
expect(response).not_to be_success
|
|
|
|
expect(response.code.to_i).to eq(422)
|
|
|
|
end
|
|
|
|
|
2013-07-16 13:44:07 +08:00
|
|
|
describe "success" do
|
|
|
|
|
|
|
|
it "updates the group correctly" do
|
|
|
|
readonly = CategoryGroup.permission_types[:readonly]
|
|
|
|
create_post = CategoryGroup.permission_types[:create_post]
|
|
|
|
|
2014-12-04 08:23:59 +08:00
|
|
|
xhr :put, :update, id: @category.id, name: "hello", color: "ff0", text_color: "fff", slug: "hello-category",
|
2013-12-07 05:39:35 +08:00
|
|
|
auto_close_hours: 72,
|
2013-07-16 13:44:07 +08:00
|
|
|
permissions: {
|
|
|
|
"everyone" => readonly,
|
|
|
|
"staff" => create_post
|
2015-06-10 04:07:37 +08:00
|
|
|
},
|
|
|
|
custom_fields: {
|
|
|
|
"dancing" => "frogs"
|
2013-07-16 13:44:07 +08:00
|
|
|
}
|
|
|
|
|
2015-06-10 04:07:37 +08:00
|
|
|
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(200)
|
2013-02-06 03:16:51 +08:00
|
|
|
@category.reload
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(@category.category_groups.map{|g| [g.group_id, g.permission_type]}.sort).to eq([
|
2013-07-16 13:44:07 +08:00
|
|
|
[Group[:everyone].id, readonly],[Group[:staff].id,create_post]
|
2015-01-10 01:04:02 +08:00
|
|
|
])
|
|
|
|
expect(@category.name).to eq("hello")
|
|
|
|
expect(@category.slug).to eq("hello-category")
|
|
|
|
expect(@category.color).to eq("ff0")
|
|
|
|
expect(@category.auto_close_hours).to eq(72)
|
2015-06-10 04:07:37 +08:00
|
|
|
expect(@category.custom_fields).to eq({"dancing" => "frogs"})
|
2013-12-17 04:13:43 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-12-20 22:07:29 +08:00
|
|
|
describe 'update_slug' do
|
|
|
|
it 'requires the user to be logged in' do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect { xhr :put, :update_slug, category_id: 'category'}.to raise_error(Discourse::NotLoggedIn)
|
2014-12-20 22:07:29 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'logged in' do
|
|
|
|
let(:valid_attrs) { {id: @category.id, slug: 'fff'} }
|
|
|
|
|
|
|
|
before do
|
|
|
|
@user = log_in(:admin)
|
|
|
|
@category = Fabricate(:happy_category, user: @user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects blank' do
|
|
|
|
xhr :put, :update_slug, category_id: @category.id, slug: nil
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(422)
|
2014-12-20 22:07:29 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts valid custom slug' do
|
|
|
|
xhr :put, :update_slug, category_id: @category.id, slug: 'valid-slug'
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2015-05-13 16:52:48 +08:00
|
|
|
expect(@category.reload.slug).to eq('valid-slug')
|
2014-12-20 22:07:29 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts not well formed custom slug' do
|
|
|
|
xhr :put, :update_slug, category_id: @category.id, slug: ' valid slug'
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2015-05-13 16:52:48 +08:00
|
|
|
expect(@category.reload.slug).to eq('valid-slug')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts and sanitize custom slug when the slug generation method is not english' do
|
|
|
|
SiteSetting.slug_generation_method = 'none'
|
|
|
|
xhr :put, :update_slug, category_id: @category.id, slug: ' another !_ slug @'
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(@category.reload.slug).to eq('another-slug')
|
|
|
|
SiteSetting.slug_generation_method = 'ascii'
|
2014-12-20 22:07:29 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects invalid custom slug' do
|
|
|
|
xhr :put, :update_slug, category_id: @category.id, slug: ' '
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(422)
|
2014-12-20 22:07:29 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|