summaryrefslogtreecommitdiff
path: root/spec/requests/products_controller/create_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/products_controller/create_spec.rb')
-rw-r--r--spec/requests/products_controller/create_spec.rb48
1 files changed, 48 insertions, 0 deletions
diff --git a/spec/requests/products_controller/create_spec.rb b/spec/requests/products_controller/create_spec.rb
new file mode 100644
index 0000000..400fd18
--- /dev/null
+++ b/spec/requests/products_controller/create_spec.rb
@@ -0,0 +1,48 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+RSpec.describe 'POST /api/products', type: :request do
+ let(:product) { build(:product) }
+ let(:picture) { fixture_file_upload('800px-Stray_cat_on_wall.jpg', 'image/jpeg') }
+ let(:categories) do
+ c = ''
+ product.categories.each { |category| c += "#{category}," }
+ c
+ end
+
+ it_behaves_like 'a POST request' do
+ let(:user) { create(:user_account, role: 'master') }
+ let(:token) { jwt(user) }
+ let(:headers) { { 'CONTENT_TYPE' => 'application/json', 'Authorization' => "Bearer #{token['token']}" } }
+ let(:route) { '/api/products' }
+ let(:expected_error_messages) do
+ ["Name can't be blank", 'Unitary price must be greater than 0', 'Bulk price must be greater than 0',
+ 'Available quantity must be greater than 0', 'Company must exist']
+ end
+ let(:desired_error_status) { 422 }
+ let(:expected_text) do
+ product.categories.concat([product.name, product.unitary_price.to_i.to_s, product.bulk_price.to_i.to_s,
+ product.available_quantity.to_s, product.company.short_name, 'picture', 'http'])
+ end
+ let(:params) do
+ { name: product.name, unitary_price: product.unitary_price, bulk_price: product.bulk_price, picture:,
+ available_quantity: product.available_quantity, categories:, company_id: product.company_id }
+ end
+ let(:wrong_params) do
+ JSON.generate({ name: '', unitary_price: -10, bulk_price: -10, available_quantity: -10, categories: '',
+ company_id: nil })
+ end
+ end
+
+ it_behaves_like 'a POST request that requires a master user' do
+ let(:user) { create(:user_account, role: 'regular') }
+ let(:token) { jwt(user) }
+ let(:headers) { { 'CONTENT_TYPE' => 'application/json', 'Authorization' => "Bearer #{token['token']}" } }
+ let(:route) { '/api/products' }
+ let(:params) do
+ { name: product.name, unitary_price: product.unitary_price, bulk_price: product.bulk_price, picture:,
+ available_quantity: product.available_quantity, categories:, company_id: product.company_id }
+ end
+ end
+end \ No newline at end of file