mirror of https://github.com/tootsuite/mastodon
29 lines
1.0 KiB
Ruby
29 lines
1.0 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe 'API V1 Statuses Translations' do
|
||
|
let(:user) { Fabricate(:user) }
|
||
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
||
|
let(:scopes) { 'read:statuses' }
|
||
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
||
|
|
||
|
context 'with an oauth token' do
|
||
|
describe 'POST /api/v1/statuses/:status_id/translate' do
|
||
|
let(:status) { Fabricate(:status, account: user.account, text: 'Hola', language: 'es') }
|
||
|
|
||
|
before do
|
||
|
translation = TranslationService::Translation.new(text: 'Hello')
|
||
|
service = instance_double(TranslationService::DeepL, translate: [translation])
|
||
|
allow(TranslationService).to receive_messages(configured?: true, configured: service)
|
||
|
Rails.cache.write('translation_service/languages', { 'es' => ['en'] })
|
||
|
post "/api/v1/statuses/#{status.id}/translate", headers: headers
|
||
|
end
|
||
|
|
||
|
it 'returns http success' do
|
||
|
expect(response).to have_http_status(200)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|