From b0019fd9acdf04292ff402e1b9d8528517ea7a63 Mon Sep 17 00:00:00 2001 From: Brice Sanchez Date: Mon, 30 May 2016 00:37:53 -0400 Subject: Fix specs --- .../refinery/blog/admin/categories_spec.rb | 210 +++++++++++---------- 1 file changed, 106 insertions(+), 104 deletions(-) (limited to 'spec/features/refinery/blog/admin/categories_spec.rb') diff --git a/spec/features/refinery/blog/admin/categories_spec.rb b/spec/features/refinery/blog/admin/categories_spec.rb index 7a8df8c..b1c8fd5 100644 --- a/spec/features/refinery/blog/admin/categories_spec.rb +++ b/spec/features/refinery/blog/admin/categories_spec.rb @@ -1,119 +1,121 @@ # encoding: utf-8 require 'spec_helper' -describe "Categories admin", type: :feature do - refinery_login_with :refinery_user +module Refinery + module Blog + module Admin + describe Category, type: :feature do + refinery_login_with_devise :authentication_devise_refinery_superuser - let(:title) { "lol" } + let(:title) { "lol" } - it "can create categories" do - visit refinery.admin_root_path + it "can create categories" do + visit refinery.admin_root_path - within("nav#menu") { click_link "Blog" } - within("nav.multilist") { click_link "Create new category" } + within("nav#menu") { click_link "Blog" } + within("nav.multilist") { click_link "Create new category" } - fill_in "Title", :with => title - click_button "Save" + fill_in "Title", :with => title + click_button "Save" - category = Refinery::Blog::Category.first - expect(category.title).to eq(title) - end - - context "with translations" do - before do - allow(Refinery::I18n).to receive(:frontend_locales).and_return([:en, :ru]) - blog_page = Globalize.with_locale(:en) { FactoryGirl.create(:page, :link_url => "/blog", :title => "Blog") } - Globalize.with_locale(:ru) do - blog_page.title = 'блог' - blog_page.save - end - end - - describe "add a category with title for default locale" do - before do - Globalize.locale = :en - visit refinery.blog_admin_posts_path - click_link "Create new category" - fill_in "Title", :with => "Testing Category" - expect { click_button "Save" }.to change(Refinery::Blog::Category, :count).by(1) - @c = Refinery::Blog::Category.by_title("Testing Category") - end - - it "suceeds" do - expect(page).to have_content("'#{@c.title}' was successfully added.") - expect(Refinery::Blog::Category.count).to eq(1) - end - - it "shows locale for category" do - click_link "Manage" - within "#category_#{@c.id}" do - expect(page).to have_css(".locale_icon.en") - end - end - - it "shows up in blog page for default locale" do - visit refinery.blog_root_path - within "#categories" do - expect(page).to have_selector('li') - end - end - - it "does not show up in blog page for secondary locale" do - visit refinery.blog_root_path(:locale => :ru) - expect(page).not_to have_selector('#categories') - end - - end - - describe "add a category with title for secondary locale" do - - let(:ru_category_title) { 'категория' } - - before do - visit refinery.blog_admin_posts_path - click_link "Create new category" - within "#switch_locale_picker" do - click_link "RU" - end - fill_in "Title", :with => ru_category_title - expect { click_button "Save" }.to change(Refinery::Blog::Category, :count).by(1) - @c = Refinery::Blog::Category.by_title(ru_category_title) - end - - it "suceeds" do - expect(page).to have_content("'#{@c.title}' was successfully added.") - expect(Refinery::Blog::Category.count).to eq(1) - end - - it "shows locale for category" do - click_link "Manage" - within "#category_#{@c.id}" do - expect(page).to have_css(".locale_icon.ru") - end - end - - it "does not show locale for primary locale" do - click_link "Manage" - within "#category_#{@c.id}" do - expect(page).not_to have_css(".locale_icon.en") + category = Refinery::Blog::Category.first + expect(category.title).to eq(title) end - end - - it "does not shows up in blog page for default locale" do - visit refinery.blog_root_path - expect(page).not_to have_selector('#categories') - end - it "shows up in blog page for secondary locale" do - visit refinery.blog_root_path(:locale => :ru) - within "#categories" do - expect(page).to have_selector('li') + context "with translations" do + before do + allow(Refinery::I18n).to receive(:frontend_locales).and_return([:en, :ru]) + blog_page = Globalize.with_locale(:en) { FactoryGirl.create(:page, :link_url => "/blog", :title => "Blog") } + Globalize.with_locale(:ru) do + blog_page.title = 'блог' + blog_page.save + end + end + + describe "add a category with title for default locale" do + before do + Globalize.locale = :en + visit refinery.blog_admin_posts_path + click_link "Create new category" + fill_in "Title", :with => "Testing Category" + expect { click_button "Save" }.to change(Refinery::Blog::Category, :count).by(1) + @c = Refinery::Blog::Category.by_title("Testing Category") + end + + it "suceeds" do + expect(page).to have_content("'#{@c.title}' was successfully added.") + expect(Refinery::Blog::Category.count).to eq(1) + end + + it "shows locale for category" do + click_link "Manage" + within "#category_#{@c.id}" do + expect(page).to have_css(".locale_icon.en") + end + end + + it "shows up in blog page for default locale" do + visit refinery.blog_root_path + within "#categories" do + expect(page).to have_selector('li') + end + end + + it "does not show up in blog page for secondary locale" do + visit refinery.blog_root_path(:locale => :ru) + expect(page).not_to have_selector('#categories') + end + + end + + describe "add a category with title for secondary locale" do + + let(:ru_category_title) { 'категория' } + + before do + visit refinery.blog_admin_posts_path + click_link "Create new category" + within "#switch_locale_picker" do + click_link "RU" + end + fill_in "Title", :with => ru_category_title + expect { click_button "Save" }.to change(Refinery::Blog::Category, :count).by(1) + @c = Refinery::Blog::Category.by_title(ru_category_title) + end + + it "suceeds" do + expect(page).to have_content("'#{@c.title}' was successfully added.") + expect(Refinery::Blog::Category.count).to eq(1) + end + + it "shows locale for category" do + click_link "Manage" + within "#category_#{@c.id}" do + expect(page).to have_css(".locale_icon.ru") + end + end + + it "does not show locale for primary locale" do + click_link "Manage" + within "#category_#{@c.id}" do + expect(page).not_to have_css(".locale_icon.en") + end + end + + it "does not shows up in blog page for default locale" do + visit refinery.blog_root_path + expect(page).not_to have_selector('#categories') + end + + it "shows up in blog page for secondary locale" do + visit refinery.blog_root_path(:locale => :ru) + within "#categories" do + expect(page).to have_selector('li') + end + end + end end end - - end - - end end -- cgit v1.2.3