From 18cc105c1e5072b288dde31867e884173af869a1 Mon Sep 17 00:00:00 2001 From: wvengen Date: Wed, 1 Apr 2015 21:42:54 +0200 Subject: [PATCH] Add tests for upload --- spec/fixtures/foodsoft_file_02.csv | 2 + spec/integration/articles_spec.rb | 85 ++++++++++++++++++++++++++++++ spec/integration/supplier_spec.rb | 57 +------------------- 3 files changed, 88 insertions(+), 56 deletions(-) create mode 100644 spec/fixtures/foodsoft_file_02.csv create mode 100644 spec/integration/articles_spec.rb diff --git a/spec/fixtures/foodsoft_file_02.csv b/spec/fixtures/foodsoft_file_02.csv new file mode 100644 index 00000000..658f725f --- /dev/null +++ b/spec/fixtures/foodsoft_file_02.csv @@ -0,0 +1,2 @@ +state;art. nummer;name;note;producer;origin;unit;net price;vat (%);deposit;unit quantity;(reserved);(reserved);category +;1;Tomatoes;organic;Tommy farm;Somewhere, UK;500 g;1.2;6;0;20;;;Vegetables diff --git a/spec/integration/articles_spec.rb b/spec/integration/articles_spec.rb new file mode 100644 index 00000000..0128fd75 --- /dev/null +++ b/spec/integration/articles_spec.rb @@ -0,0 +1,85 @@ +# encoding: utf-8 +require_relative '../spec_helper' + +describe ArticlesController, :type => :feature do + let(:user) { create :user, groups:[create(:workgroup, role_article_meta: true)] } + let (:supplier) { create :supplier } + let!(:article_category) { create :article_category } + before { login user } + + describe ":index", :type => :feature, :js => true do + before { visit supplier_articles_path(supplier) } + + it 'can visit supplier articles path' do + expect(page).to have_content(supplier.name) + expect(page).to have_content(I18n.t('articles.index.edit_all')) + end + + it 'can create a new article' do + click_on I18n.t('articles.index.new') + expect(page).to have_selector('form#new_article') + article = FactoryGirl.build :article, supplier: supplier, article_category: article_category + within('#new_article') do + fill_in 'article_name', :with => article.name + fill_in 'article_unit', :with => article.unit + select article.article_category.name, :from => 'article_article_category_id' + fill_in 'article_price', :with => article.price + fill_in 'article_unit_quantity', :with => article.unit_quantity + fill_in 'article_tax', :with => article.tax + fill_in 'article_deposit', :with => article.deposit + # "Element cannot be scrolled into view" error, js as workaround + #find('input[type="submit"]').click + page.execute_script('$("form#new_article").submit();') + end + expect(page).to have_content(article.name) + end + end + + describe ":upload", :type => :feature, :js => true do + let(:filename) { 'foodsoft_file_02.csv' } + let(:file) { Rails.root.join("spec/fixtures/#{filename}") } + before do + visit upload_supplier_articles_path(supplier) + attach_file 'articles_file', file + end + + Dir.glob('spec/fixtures/foodsoft_file_01.*') do |test_file| + describe "can import articles from #{test_file}" do + let(:file) { Rails.root.join(test_file) } + it do + find('input[type="submit"]').click + expect(find("tr:nth-child(1) #new_articles__note").value).to eq "bio ◎" + expect(find("tr:nth-child(2) #new_articles__name").value).to eq "Pijnboompitten" + + 4.times do |i| + all("tr:nth-child(#{i+1}) select > option")[1].select_option + end + find('input[type="submit"]').click + expect(page).to have_content("Pijnboompitten") + + expect(supplier.articles.count).to eq 4 + end + end + end + + describe "can update existing article" do + let!(:article) { create :article, supplier: supplier, name: 'Foobar', order_number: 1 } + it do + find('input[type="submit"]').click + expect(find("#articles_#{article.id}_name").value).to eq 'Tomatoes' + find('input[type="submit"]').click + expect(article.reload.name).to eq 'Tomatoes' + end + end + + #describe "can remove an existing article" do + # let!(:article) { create :article, supplier: supplier, name: 'Foobar', order_number: 99999 } + # it do + # find('input[type="submit"]').click + # expect(find("#outlisted_articles_#{article.id}")).to be_present + # find('input[type="submit"]').click + # expect(Article.where(id: article.id)).to be_empty + # end + #end + end +end diff --git a/spec/integration/supplier_spec.rb b/spec/integration/supplier_spec.rb index e9be4894..94252521 100644 --- a/spec/integration/supplier_spec.rb +++ b/spec/integration/supplier_spec.rb @@ -1,7 +1,7 @@ # encoding: utf-8 require_relative '../spec_helper' -describe 'supplier', :type => :feature do +describe SuppliersController, :type => :feature do let(:supplier) { create :supplier } describe :type => :feature, :js => true do @@ -27,59 +27,4 @@ describe 'supplier', :type => :feature do expect(page).to have_content(supplier.name) end end - - describe :type => :feature, :js => true do - let(:article_category) { create :article_category } - let(:user) { create :user, groups:[create(:workgroup, role_article_meta: true)] } - before { login user } - - it 'can visit supplier articles path' do - visit supplier_articles_path(supplier) - expect(page).to have_content(supplier.name) - expect(page).to have_content(I18n.t('articles.index.edit_all')) - end - - it 'can create a new article' do - article_category.save! - visit supplier_articles_path(supplier) - click_on I18n.t('articles.index.new') - expect(page).to have_selector('form#new_article') - article = FactoryGirl.build :article, supplier: supplier, article_category: article_category - within('#new_article') do - fill_in 'article_name', :with => article.name - fill_in 'article_unit', :with => article.unit - select article.article_category.name, :from => 'article_article_category_id' - fill_in 'article_price', :with => article.price - fill_in 'article_unit_quantity', :with => article.unit_quantity - fill_in 'article_tax', :with => article.tax - fill_in 'article_deposit', :with => article.deposit - # "Element cannot be scrolled into view" error, js as workaround - #find('input[type="submit"]').click - page.execute_script('$("form#new_article").submit();') - end - expect(page).to have_content(article.name) - end - - - Dir.glob('spec/fixtures/foodsoft_file_01.*') do |file| - it "can import articles from #{file}" do - article_category.save! - visit upload_supplier_articles_path(supplier) - attach_file 'articles_file', Rails.root.join(file) - find('input[type="submit"]').click - - expect(find("tr:nth-child(1) #new_articles__note").value).to eq "bio ◎" - expect(find("tr:nth-child(2) #new_articles__name").value).to eq "Pijnboompitten" - - 4.times do |i| - all("tr:nth-child(#{i+1}) select > option")[1].select_option - end - find('input[type="submit"]').click - expect(page).to have_content("Pijnboompitten") - - expect(supplier.articles.count).to eq 4 - end - end - end - end