Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcmrd Senya <35317-cmrd-senya@users.noreply.gitlab.gnome.org>2022-09-05 23:19:11 +0300
committercmrd Senya <35317-cmrd-senya@users.noreply.gitlab.gnome.org>2022-09-05 23:19:11 +0300
commita6e7c8e2d5c16c6c600a93aeccb87eca2bb1d3fe (patch)
tree6dfc8ba14905c721c1d0bc9639475f66b3c55ed0
parentf3c01d5a46e8a2c96906a0db7b7ab637eadd4242 (diff)
post fetch: update post fetch spec
-rw-r--r--spec/lib/diaspora/fetcher/public_spec.rb58
1 files changed, 46 insertions, 12 deletions
diff --git a/spec/lib/diaspora/fetcher/public_spec.rb b/spec/lib/diaspora/fetcher/public_spec.rb
index 3f914175a..8f8f405fb 100644
--- a/spec/lib/diaspora/fetcher/public_spec.rb
+++ b/spec/lib/diaspora/fetcher/public_spec.rb
@@ -4,13 +4,21 @@
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
+require "integration/federation/federation_helper"
+
# Tests fetching public posts of a person on a remote server
describe Diaspora::Fetcher::Public do
+ let(:fixture) do
+ File.read(Rails.root.join("spec/fixtures/public_posts.json"))
+ end
+ let(:fixture_data) do
+ JSON.parse(fixture)
+ end
+
before do
# the fixture is taken from an actual json request.
# it contains 10 StatusMessages and 5 Reshares, all of them public
# the guid of the person is "7445f9a0a6c28ebb"
- @fixture = File.read(Rails.root.join("spec/fixtures/public_posts.json"))
@fetcher = Diaspora::Fetcher::Public.new
@person = FactoryBot.create(:person, guid: "7445f9a0a6c28ebb",
pod: Pod.find_or_create_by(url: "https://remote-testpod.net"),
@@ -21,7 +29,7 @@ describe Diaspora::Fetcher::Public do
"Accept" => "application/json",
"Accept-Encoding" => "gzip;q=1.0,deflate;q=0.6,identity;q=0.3",
"User-Agent" => "diaspora-fetcher"
- }).to_return(body: @fixture)
+ }).to_return(body: fixture)
end
describe "#queue_for" do
@@ -62,28 +70,54 @@ describe Diaspora::Fetcher::Public do
@data
}
expect(data).not_to be_nil
- expect(data.size).to eql JSON.parse(@fixture).size
+ expect(data.size).to eq(fixture_data.size)
end
end
describe "#process_posts" do
before do
person = @person
- data = JSON.parse(@fixture)
+ data = fixture_data
@fetcher.instance_eval {
@person = person
@data = data
}
+
+ fixture_data.each do |post_data|
+ post = if post_data["post_type"] == "StatusMessage"
+ FactoryBot.build(
+ :status_message,
+ guid: post_data["guid"],
+ text: post_data["text"],
+ created_at: post_data["created_at"],
+ public: true,
+ author: eve.person
+ )
+ else
+ reshare = FactoryBot.build(
+ :reshare,
+ guid: post_data["guid"],
+ created_at: post_data["created_at"],
+ public: true,
+ author: eve.person
+ )
+ reshare.root.save
+ reshare
+ end
+ payload = generate_payload(Diaspora::Federation::Entities.post(post), eve)
+
+ stub_request(:get, "https://remote-testpod.net/fetch/post/#{post_data['guid']}")
+ .to_return(status: 200, body: payload)
+ end
end
- it "creates 10 new posts in the database" do
- before_count = Post.count
- @fetcher.instance_eval {
- process_posts
- }
- after_count = Post.count
- expect(after_count).to eql(before_count + 10)
+ it "creates 15 new posts in the database" do
+ expect {
+ @fetcher.instance_eval {
+ process_posts
+ }
+ }.to change(Post, :count).by(15)
end
it "sets the operation status on the person" do
@@ -100,7 +134,7 @@ describe Diaspora::Fetcher::Public do
before do
Timecop.freeze
@now = DateTime.now.utc
- @data = JSON.parse(@fixture).select {|item| item["post_type"] == "StatusMessage" }
+ @data = fixture_data.select {|item| item["post_type"] == "StatusMessage" }
# save posts to db
@fetcher.instance_eval {