forked from ClosureTree/closure_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Raise error when advisory lock cannot be acquired #1
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 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c06a110
Raise error when advisory lock cannot be acquired
farjaad-opslevel 8ae7dd1
address comments
farjaad-opslevel cad9d07
tests
farjaad-opslevel 606c157
move lock options to support_attributes so it's alongside lock name
farjaad-opslevel 0e6fbf5
set default to 5 seconds
farjaad-opslevel ae7b44f
try higher timeout
farjaad-opslevel 43f6834
set default to 15 seconds
farjaad-opslevel 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
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 |
|---|---|---|
| @@ -1,14 +1,38 @@ | ||
| require 'spec_helper' | ||
|
|
||
| RSpec.describe ClosureTree::Support do | ||
| let(:sut) { Tag._ct } | ||
| let(:model) { Tag } | ||
| let(:options) { {} } | ||
| let(:sut) { described_class.new(model, options) } | ||
|
|
||
| it 'passes through table names without prefix and suffix' do | ||
| expected = 'some_random_table_name' | ||
| expect(sut.remove_prefix_and_suffix(expected)).to eq(expected) | ||
| end | ||
|
|
||
| it 'extracts through table name with prefix and suffix' do | ||
| expected = 'some_random_table_name' | ||
| tn = ActiveRecord::Base.table_name_prefix + expected + ActiveRecord::Base.table_name_suffix | ||
| expect(sut.remove_prefix_and_suffix(tn)).to eq(expected) | ||
| end | ||
| end | ||
|
|
||
| [ | ||
| [true, 10, { timeout_seconds: 10 }], | ||
| [true, nil, {}], | ||
| [false, nil, {}] | ||
| ].each do |with_lock, timeout, expected_options| | ||
| context "when with_advisory_lock is #{with_lock} and timeout is #{timeout}" do | ||
| let(:options) { { with_advisory_lock: with_lock, advisory_lock_timeout_seconds: timeout } } | ||
|
|
||
| it "uses advisory lock with timeout options: #{expected_options}" do | ||
| if with_lock | ||
| expect(model).to receive(:with_advisory_lock!).with(anything, expected_options).and_yield | ||
| else | ||
| expect(model).not_to receive(:with_advisory_lock!) | ||
| end | ||
|
|
||
| expect { |b| sut.with_advisory_lock!(&b) }.to yield_control | ||
| end | ||
| end | ||
| end | ||
| end |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.