mirror of
https://github.com/mastodon/mastodon.git
synced 2026-06-18 05:29:36 -05:00
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
54 lines
1.9 KiB
Ruby
54 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe REST::NotificationGroupSerializer do
|
|
subject do
|
|
serialized_record_json(
|
|
notification_group,
|
|
described_class,
|
|
options: {
|
|
scope: current_user,
|
|
scope_name: :current_user,
|
|
supported_notification_types: [],
|
|
}
|
|
)
|
|
end
|
|
|
|
let(:current_user) { Fabricate(:user) }
|
|
let(:notification_group) { NotificationGroup.new pagination_data: { latest_notification_at: 3.days.ago }, notification: Fabricate(:notification), sample_accounts: [] }
|
|
|
|
context 'when latest_page_notification_at is populated' do
|
|
it 'parses as RFC 3339 datetime' do
|
|
expect(subject)
|
|
.to include(
|
|
'latest_page_notification_at' => match_api_datetime_format
|
|
)
|
|
end
|
|
end
|
|
|
|
shared_examples 'with fallback notifications' do |type, fabricators|
|
|
let(:activities) { fabricators.map { |fabricator| Fabricate(fabricator) } }
|
|
let(:notifications) { activities.map { |activity| Fabricate(:notification, type:, activity:, account: current_user.account) } }
|
|
let(:notification_group) { NotificationGroup.new(notification: notifications.last, sample_accounts: notifications.map(&:from_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', 'admin.report', [:report, :report]
|
|
it_behaves_like 'with fallback notifications', 'added_to_collection', [:collection_item]
|
|
it_behaves_like 'with fallback notifications', 'collection_update', [:collection]
|
|
end
|