about summary refs log tree commit diff
path: root/spec/services
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2020-09-08 16:01:55 +0200
committerThibaut Girka <thib@sitedethib.com>2020-09-08 16:26:47 +0200
commit9748f074a385fce5ad6913b1a22fb7ea9e7566db (patch)
treeccd775be4b73170fcbf45407b84ad35fc37fb853 /spec/services
parent437d71bddf967573df3912ee5976f7c5a5a7b4c7 (diff)
parent65760f59df46e388919a9f7ccba1958d967b2695 (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts:
- app/controllers/api/v1/timelines/public_controller.rb
- app/lib/feed_manager.rb
- app/models/status.rb
- app/services/precompute_feed_service.rb
- app/workers/feed_insert_worker.rb
- spec/models/status_spec.rb

All conflicts are due to upstream refactoring feed management and us having
local-only toots on top of that. Rewrote local-only toots management for
upstream's changes.
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/fan_out_on_write_service_spec.rb4
-rw-r--r--spec/services/hashtag_query_service_spec.rb60
2 files changed, 2 insertions, 62 deletions
diff --git a/spec/services/fan_out_on_write_service_spec.rb b/spec/services/fan_out_on_write_service_spec.rb
index b7fc7f7ed..538dc2592 100644
--- a/spec/services/fan_out_on_write_service_spec.rb
+++ b/spec/services/fan_out_on_write_service_spec.rb
@@ -28,10 +28,10 @@ RSpec.describe FanOutOnWriteService, type: :service do
   end
 
   it 'delivers status to hashtag' do
-    expect(Tag.find_by!(name: 'test').statuses.pluck(:id)).to include status.id
+    expect(TagFeed.new(Tag.find_by(name: 'test'), alice).get(20).map(&:id)).to include status.id
   end
 
   it 'delivers status to public timeline' do
-    expect(Status.as_public_timeline(alice).map(&:id)).to include status.id
+    expect(PublicFeed.new(alice).get(20).map(&:id)).to include status.id
   end
 end
diff --git a/spec/services/hashtag_query_service_spec.rb b/spec/services/hashtag_query_service_spec.rb
deleted file mode 100644
index 24282d2f0..000000000
--- a/spec/services/hashtag_query_service_spec.rb
+++ /dev/null
@@ -1,60 +0,0 @@
-require 'rails_helper'
-
-describe HashtagQueryService, type: :service do
-  describe '.call' do
-    let(:account) { Fabricate(:account) }
-    let(:tag1) { Fabricate(:tag) }
-    let(:tag2) { Fabricate(:tag) }
-    let!(:status1) { Fabricate(:status, tags: [tag1]) }
-    let!(:status2) { Fabricate(:status, tags: [tag2]) }
-    let!(:both) { Fabricate(:status, tags: [tag1, tag2]) }
-
-    it 'can add tags in "any" mode' do
-      results = subject.call(tag1, { any: [tag2.name] })
-      expect(results).to include status1
-      expect(results).to include status2
-      expect(results).to include both
-    end
-
-    it 'can remove tags in "all" mode' do
-      results = subject.call(tag1, { all: [tag2.name] })
-      expect(results).to_not include status1
-      expect(results).to_not include status2
-      expect(results).to     include both
-    end
-
-    it 'can remove tags in "none" mode' do
-      results = subject.call(tag1, { none: [tag2.name] })
-      expect(results).to     include status1
-      expect(results).to_not include status2
-      expect(results).to_not include both
-    end
-
-    it 'ignores an invalid mode' do
-      results = subject.call(tag1, { wark: [tag2.name] })
-      expect(results).to     include status1
-      expect(results).to_not include status2
-      expect(results).to     include both
-    end
-
-    it 'handles being passed non existant tag names' do
-      results = subject.call(tag1, { any: ['wark'] })
-      expect(results).to     include status1
-      expect(results).to_not include status2
-      expect(results).to     include both
-    end
-
-    it 'can restrict to an account' do
-      BlockService.new.call(account, status1.account)
-      results = subject.call(tag1, { none: [tag2.name] }, account)
-      expect(results).to_not include status1
-    end
-
-    it 'can restrict to local' do
-      status1.account.update(domain: 'example.com')
-      status1.update(local: false, uri: 'example.com/toot')
-      results = subject.call(tag1, { any: [tag2.name] }, nil, true)
-      expect(results).to_not include status1
-    end
-  end
-end