-
Notifications
You must be signed in to change notification settings - Fork 69
Introducing Persisters #347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module Persister | ||
class MemberPersister | ||
attr_accessor :member | ||
|
||
def initialize(member) | ||
@member = member | ||
end | ||
|
||
def save | ||
member.save | ||
end | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module Persister | ||
class PostPersister | ||
attr_accessor :post | ||
|
||
def initialize(post) | ||
@post = post | ||
end | ||
|
||
def save | ||
post.save | ||
end | ||
|
||
def update_attributes(params) | ||
post.update_attributes(params) | ||
end | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module Persister | ||
class TransferPersister | ||
attr_accessor :transfer | ||
|
||
def initialize(transfer) | ||
@transfer = transfer | ||
end | ||
|
||
def save | ||
transfer.save | ||
end | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
require 'spec_helper' | ||
|
||
describe Persister::MemberPersister do | ||
let(:organization) { Fabricate(:organization) } | ||
let(:user) { Fabricate(:user) } | ||
|
||
describe '#save' do | ||
it 'saves the member' do | ||
member = Member.new(user: user, organization: organization) | ||
|
||
persister = ::Persister::MemberPersister.new(member) | ||
persister.save | ||
|
||
expect(member).to be_persisted | ||
end | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
require 'spec_helper' | ||
|
||
describe Persister::PostPersister do | ||
let(:organization) { Fabricate(:organization) } | ||
let(:user) { Fabricate(:user) } | ||
let(:category) { Fabricate(:category) } | ||
let(:post) { Fabricate(:post, organization: organization) } | ||
|
||
describe '#save' do | ||
it 'saves the post' do | ||
post = Offer.new(organization: organization, user: user, category: category, title: 'Title') | ||
persister = ::Persister::PostPersister.new(post) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move both to |
||
|
||
persister.save | ||
|
||
expect(post).to be_persisted | ||
end | ||
end | ||
|
||
describe '#update_attributes' do | ||
it 'updates the attributes' do | ||
persister = ::Persister::PostPersister.new(post) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same |
||
persister.update_attributes(title: 'New title') | ||
|
||
expect(post.title).to eq('New title') | ||
end | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
require 'spec_helper' | ||
|
||
describe Persister::TransferPersister do | ||
let(:source_account) { Fabricate(:account) } | ||
let(:destination_account) { Fabricate(:account) } | ||
let(:organization) { Fabricate(:organization) } | ||
let(:post) { Fabricate(:post, organization: organization) } | ||
|
||
describe '#save' do | ||
it 'saves the transfer' do | ||
transfer = Transfer.new(post: post, source: source_account, destination: destination_account) | ||
|
||
persister = ::Persister::TransferPersister.new(transfer) | ||
persister.save | ||
|
||
expect(transfer).to be_persisted | ||
end | ||
end | ||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
members
orMember
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
members
would be the same as doingMember.where(user: self, ...