web_host = ENV.fetch('WEB_DOMAIN') { host }
https = ENV['LOCAL_HTTPS'] == 'true'
-alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { "" }
+alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { '' }
Rails.application.configure do
config.x.local_domain = host
config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
config.x.streaming_api_base_url = 'ws://localhost:4000'
+ config.x.use_ostatus_privacy = true
if Rails.env.production?
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') { "ws#{https ? 's' : ''}://#{web_host}" }
end
end
- describe 'with private status' do
- let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :private) }
+ context 'when OStatus privacy is used' do
+ around do |example|
+ before_val = Rails.configuration.x.use_ostatus_privacy
+ Rails.configuration.x.use_ostatus_privacy = true
+ example.run
+ Rails.configuration.x.use_ostatus_privacy = before_val
+ end
- it 'delivers payload only to subscriptions with followers' do
- allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
- subject.perform(status.stream_entry.id)
- expect(Pubsubhubbub::DeliveryWorker).to have_received(:push_bulk).with([subscription_with_follower])
- expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk).with([anonymous_subscription])
+ describe 'with private status' do
+ let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :private) }
+
+ it 'delivers payload only to subscriptions with followers' do
+ allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
+ subject.perform(status.stream_entry.id)
+ expect(Pubsubhubbub::DeliveryWorker).to have_received(:push_bulk).with([subscription_with_follower])
+ expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk).with([anonymous_subscription])
+ end
+ end
+
+ describe 'with direct status' do
+ let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :direct) }
+
+ it 'does not deliver payload' do
+ allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
+ subject.perform(status.stream_entry.id)
+ expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk)
+ end
end
end
- describe 'with direct status' do
- let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :direct) }
+ context 'when OStatus privacy is not used' do
+ around do |example|
+ before_val = Rails.configuration.x.use_ostatus_privacy
+ Rails.configuration.x.use_ostatus_privacy = false
+ example.run
+ Rails.configuration.x.use_ostatus_privacy = before_val
+ end
- it 'does not deliver payload' do
- allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
- subject.perform(status.stream_entry.id)
- expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk)
+ describe 'with private status' do
+ let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :private) }
+
+ it 'does not deliver anything' do
+ allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
+ subject.perform(status.stream_entry.id)
+ expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk)
+ end
+ end
+
+ describe 'with direct status' do
+ let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :direct) }
+
+ it 'does not deliver payload' do
+ allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
+ subject.perform(status.stream_entry.id)
+ expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk)
+ end
end
end
end