mastodon/spec/serializers/rest/notification_serializer_spec.rb
Claire 5b395774c0
Some checks are pending
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Crowdin / Upload translations / upload-translations (push) Waiting to run
Check formatting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Add fallback attributes to notifications for new and infrequent notifications (#38832)
2026-04-29 15:53:29 +00:00

51 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe REST::NotificationSerializer do
subject do
serialized_record_json(
notification,
described_class,
options: {
scope: current_user,
scope_name: :current_user,
supported_notification_types: [],
}
)
end
let(:current_user) { Fabricate(:user) }
let(:notification) { Fabricate :notification }
context 'when created_at is populated' do
it 'parses as RFC 3339 datetime' do
expect(subject)
.to include(
'created_at' => match_api_datetime_format
)
end
end
shared_examples 'with fallback notifications' do |type, fabricator|
let(:notification) { Fabricate(:notification, type:, activity: Fabricate(fabricator), account: current_user.account) }
it 'renders correctly' do
expect(subject)
.to include(
'type' => type,
'fallback' => include(
'title' => anything,
'summary' => anything
)
)
end
end
it_behaves_like 'with fallback notifications', 'severed_relationships', :account_relationship_severance_event
it_behaves_like 'with fallback notifications', 'moderation_warning', :account_warning
it_behaves_like 'with fallback notifications', 'admin.report', :report
it_behaves_like 'with fallback notifications', 'added_to_collection', :collection_item
it_behaves_like 'with fallback notifications', 'collection_update', :collection
end