From 59a77923b368d48c590cd9f4a0c6b73ce972d33f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Cie=C5=9Blak?= Date: Wed, 19 Apr 2017 23:47:50 +0200 Subject: [PATCH] Add static gif for upload testing (#2168) --- .../api/v1/media_controller_spec.rb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/spec/controllers/api/v1/media_controller_spec.rb b/spec/controllers/api/v1/media_controller_spec.rb index 1b91354d4..c2d333282 100644 --- a/spec/controllers/api/v1/media_controller_spec.rb +++ b/spec/controllers/api/v1/media_controller_spec.rb @@ -33,6 +33,29 @@ RSpec.describe Api::V1::MediaController, type: :controller do end end + context 'image/gif' do + before do + post :create, params: { file: fixture_file_upload('files/attachment.gif', 'image/gif') } + end + + it 'returns http success' do + expect(response).to have_http_status(:success) + end + + it 'creates a media attachment' do + expect(MediaAttachment.first).to_not be_nil + end + + it 'uploads a file' do + expect(MediaAttachment.first).to have_attached_file(:file) + end + + it 'returns media ID in JSON' do + expect(body_as_json[:id]).to eq MediaAttachment.first.id + end + end + + context 'video/webm' do before do post :create, params: { file: fixture_file_upload('files/attachment.webm', 'video/webm') }