diff options
author | ThibG <thib@sitedethib.com> | 2019-11-04 13:00:16 +0100 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-21 03:34:42 -0600 |
commit | e19765e0f2e0b7e99e8c7c5b4285b8ca83892c99 (patch) | |
tree | c27d6a6d02c3f243fb80d0f3ee7d01ca458f0123 /spec/lib | |
parent | e6bb4bd747a0120dd0207aecbb7c5c67b7caa165 (diff) |
port tootsuite#12262 to monsterfork: Fix remote media descriptions being cut off at 420 chars
* Fix remote media descriptions being cut off at 420 chars Fixes #12258 * Fix tests
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/activitypub/activity/create_spec.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/lib/activitypub/activity/create_spec.rb b/spec/lib/activitypub/activity/create_spec.rb index d539a97ea..43ea691a4 100644 --- a/spec/lib/activitypub/activity/create_spec.rb +++ b/spec/lib/activitypub/activity/create_spec.rb @@ -262,6 +262,32 @@ RSpec.describe ActivityPub::Activity::Create do end end + + context 'with media attachments with long description' do + let(:object_json) do + { + id: [ActivityPub::TagManager.instance.uri_for(sender), '#bar'].join, + type: 'Note', + content: 'Lorem ipsum', + attachment: [ + { + type: 'Document', + mediaType: 'image/png', + url: 'http://example.com/attachment.png', + name: '*' * 1500, + }, + ], + } + end + + it 'creates status' do + status = sender.statuses.first + + expect(status).to_not be_nil + expect(status.media_attachments.map(&:description)).to include('*' * 1500) + end + end + context 'with media attachments with focal points' do let(:object_json) do { |