diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-11-06 14:38:28 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-11-06 14:38:28 +0100 |
commit | 0ae7d8427394d5f98fb2bd78eaae9bf848831186 (patch) | |
tree | e15a6321eedcbf9a2ae55ce24e7d8960f233b5ef /spec/lib | |
parent | 00793a86bc52e4cb37318e42ea4ceb37a896c727 (diff) | |
parent | 42d9ca21de298e1d51b87723745f2b17e4169894 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - `package.json`
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 412609de4..b709954a3 100644 --- a/spec/lib/activitypub/activity/create_spec.rb +++ b/spec/lib/activitypub/activity/create_spec.rb @@ -261,6 +261,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 { |